From: Michal Kubiak <michal.kubiak@intel.com>
To: Jaewan Kim <jaewan@google.com>
Cc: <gregkh@linuxfoundation.org>, <johannes@sipsolutions.net>,
<linux-wireless@vger.kernel.org>, <netdev@vger.kernel.org>,
<kernel-team@android.com>, <adelva@google.com>
Subject: Re: [PATCH v9 2/5] wifi: nl80211: make nl80211_send_chandef non-static
Date: Mon, 13 Mar 2023 17:58:02 +0100 [thread overview]
Message-ID: <ZA9WGhHRqdZKBI7U@localhost.localdomain> (raw)
In-Reply-To: <20230313075326.3594869-3-jaewan@google.com>
On Mon, Mar 13, 2023 at 07:53:23AM +0000, Jaewan Kim wrote:
> Expose nl80211_send_chandef functionality for mac80211_hwsim or vendor
> netlink can use it where needed.
>
> Signed-off-by: Jaewan Kim <jaewan@google.com>
> ---
> V8: Initial commit (split from other change)
> ---
> include/net/cfg80211.h | 9 +++++++++
> net/wireless/nl80211.c | 4 ++--
> 2 files changed, 11 insertions(+), 2 deletions(-)
>
> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
> index f115b2550309..bcce8e9e2aba 100644
> --- a/include/net/cfg80211.h
> +++ b/include/net/cfg80211.h
Reviewed-by: Michal Kubiak <michal.kubiak@intel.com>
> @@ -938,6 +938,15 @@ int cfg80211_chandef_dfs_required(struct wiphy *wiphy,
> const struct cfg80211_chan_def *chandef,
> enum nl80211_iftype iftype);
>
> +/**
> + * nl80211_send_chandef - sends the channel definition.
> + * @msg: the msg to send channel definition
> + * @chandef: the channel definition to check
> + *
> + * Returns: 0 if sent the channel definition to msg, < 0 on error
> + **/
> +int nl80211_send_chandef(struct sk_buff *msg, const struct cfg80211_chan_def *chandef);
> +
> /**
> * ieee80211_chanwidth_rate_flags - return rate flags for channel width
> * @width: the channel width of the channel
> diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
> index 112b4bb009c8..1fd9e6545225 100644
> --- a/net/wireless/nl80211.c
> +++ b/net/wireless/nl80211.c
> @@ -3756,8 +3756,7 @@ static int nl80211_set_wiphy(struct sk_buff *skb, struct genl_info *info)
> return result;
> }
>
> -static int nl80211_send_chandef(struct sk_buff *msg,
> - const struct cfg80211_chan_def *chandef)
> +int nl80211_send_chandef(struct sk_buff *msg, const struct cfg80211_chan_def *chandef)
> {
> if (WARN_ON(!cfg80211_chandef_valid(chandef)))
> return -EINVAL;
> @@ -3788,6 +3787,7 @@ static int nl80211_send_chandef(struct sk_buff *msg,
> return -ENOBUFS;
> return 0;
> }
> +EXPORT_SYMBOL(nl80211_send_chandef);
>
> static int nl80211_send_iface(struct sk_buff *msg, u32 portid, u32 seq, int flags,
> struct cfg80211_registered_device *rdev,
> --
> 2.40.0.rc1.284.g88254d51c5-goog
>
next prev parent reply other threads:[~2023-03-13 16:59 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-13 7:53 [PATCH v9 0/5] mac80211_hwsim: Add PMSR support Jaewan Kim
2023-03-13 7:53 ` [PATCH v9 1/5] mac80211_hwsim: add PMSR capability support Jaewan Kim
2023-03-13 16:51 ` Michal Kubiak
2023-03-14 16:36 ` Jaewan Kim
2023-03-14 19:01 ` Michal Kubiak
2023-03-22 13:18 ` Jaewan Kim
2023-03-13 7:53 ` [PATCH v9 2/5] wifi: nl80211: make nl80211_send_chandef non-static Jaewan Kim
2023-03-13 16:58 ` Michal Kubiak [this message]
2023-03-13 7:53 ` [PATCH v9 3/5] mac80211_hwsim: add PMSR request support via virtio Jaewan Kim
2023-03-13 19:21 ` Michal Kubiak
2023-03-22 13:18 ` Jaewan Kim
2023-03-13 7:53 ` [PATCH v9 4/5] mac80211_hwsim: add PMSR abort " Jaewan Kim
2023-03-13 19:45 ` Michal Kubiak
2023-03-22 13:19 ` Jaewan Kim
2023-03-13 7:53 ` [PATCH v9 5/5] mac80211_hwsim: add PMSR report " Jaewan Kim
2023-03-13 20:26 ` Michal Kubiak
2023-03-14 16:31 ` Jaewan Kim
2023-03-14 18:48 ` Michal Kubiak
2023-03-22 13:18 ` Jaewan Kim
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ZA9WGhHRqdZKBI7U@localhost.localdomain \
--to=michal.kubiak@intel.com \
--cc=adelva@google.com \
--cc=gregkh@linuxfoundation.org \
--cc=jaewan@google.com \
--cc=johannes@sipsolutions.net \
--cc=kernel-team@android.com \
--cc=linux-wireless@vger.kernel.org \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox