All of lore.kernel.org
 help / color / mirror / Atom feed
From: James Cameron <quozl@laptop.org>
To: yintang@qti.qualcomm.com
Cc: ath10k@lists.infradead.org, linux-wireless@vger.kernel.org
Subject: Re: [TDLS PATCH V2 1/5] mac80211: Enable TDLS peer buffer STA feature
Date: Tue, 19 Sep 2017 13:01:13 +1000	[thread overview]
Message-ID: <20170919030113.GO26927@us.netrek.org> (raw)
In-Reply-To: <1505789468-25330-2-git-send-email-yintang@qti.qualcomm.com>

On Tue, Sep 19, 2017 at 10:51:04AM +0800, yintang@qti.qualcomm.com wrote:
> From: Yingying Tang <yintang@qti.qualcomm.com>
> 
> Enable TDLS peer buffer STA feature.
> Set extended capability bit to enable buffer STA when driver
> support it.
> 
> Signed-off-by: Yingying Tang <yintang@qti.qualcomm.com>
> ---
>  include/net/cfg80211.h |    3 +++
>  net/mac80211/tdls.c    |    5 ++++-
>  2 files changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
> index f12fa52..edefc25 100644
> --- a/include/net/cfg80211.h
> +++ b/include/net/cfg80211.h
> @@ -3249,6 +3249,8 @@ struct cfg80211_ops {
>   *	beaconing mode (AP, IBSS, Mesh, ...).
>   * @WIPHY_FLAG_HAS_STATIC_WEP: The device supports static WEP key installation
>   *	before connection.
> + * @WIPHY_FLAG_SUPPORT_TDLS_BUFFER_ST: Device support buffer STA when TDLS is

"_ST:" should be "_STA:"

> + *	established.
>   */
>  enum wiphy_flags {
>  	/* use hole at 0 */
> @@ -3275,6 +3277,7 @@ enum wiphy_flags {
>  	WIPHY_FLAG_SUPPORTS_5_10_MHZ		= BIT(22),
>  	WIPHY_FLAG_HAS_CHANNEL_SWITCH		= BIT(23),
>  	WIPHY_FLAG_HAS_STATIC_WEP		= BIT(24),
> +	WIPHY_FLAG_SUPPORT_TDLS_BUFFER_STA      = BIT(25),
>  };
>  
>  /**
> [...]

-- 
James Cameron
http://quozl.netrek.org/

WARNING: multiple messages have this Message-ID (diff)
From: James Cameron <quozl@laptop.org>
To: yintang@qti.qualcomm.com
Cc: linux-wireless@vger.kernel.org, ath10k@lists.infradead.org
Subject: Re: [TDLS PATCH V2 1/5] mac80211: Enable TDLS peer buffer STA feature
Date: Tue, 19 Sep 2017 13:01:13 +1000	[thread overview]
Message-ID: <20170919030113.GO26927@us.netrek.org> (raw)
In-Reply-To: <1505789468-25330-2-git-send-email-yintang@qti.qualcomm.com>

On Tue, Sep 19, 2017 at 10:51:04AM +0800, yintang@qti.qualcomm.com wrote:
> From: Yingying Tang <yintang@qti.qualcomm.com>
> 
> Enable TDLS peer buffer STA feature.
> Set extended capability bit to enable buffer STA when driver
> support it.
> 
> Signed-off-by: Yingying Tang <yintang@qti.qualcomm.com>
> ---
>  include/net/cfg80211.h |    3 +++
>  net/mac80211/tdls.c    |    5 ++++-
>  2 files changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
> index f12fa52..edefc25 100644
> --- a/include/net/cfg80211.h
> +++ b/include/net/cfg80211.h
> @@ -3249,6 +3249,8 @@ struct cfg80211_ops {
>   *	beaconing mode (AP, IBSS, Mesh, ...).
>   * @WIPHY_FLAG_HAS_STATIC_WEP: The device supports static WEP key installation
>   *	before connection.
> + * @WIPHY_FLAG_SUPPORT_TDLS_BUFFER_ST: Device support buffer STA when TDLS is

"_ST:" should be "_STA:"

> + *	established.
>   */
>  enum wiphy_flags {
>  	/* use hole at 0 */
> @@ -3275,6 +3277,7 @@ enum wiphy_flags {
>  	WIPHY_FLAG_SUPPORTS_5_10_MHZ		= BIT(22),
>  	WIPHY_FLAG_HAS_CHANNEL_SWITCH		= BIT(23),
>  	WIPHY_FLAG_HAS_STATIC_WEP		= BIT(24),
> +	WIPHY_FLAG_SUPPORT_TDLS_BUFFER_STA      = BIT(25),
>  };
>  
>  /**
> [...]

-- 
James Cameron
http://quozl.netrek.org/

_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k

  reply	other threads:[~2017-09-19  3:01 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <TDLS for ath10k patchset v2>
2017-09-19  2:51 ` [TDLS PATCH V2 0/5] Add TDLS feature for ath10k yintang
2017-09-19  2:51   ` yintang
2017-09-19  2:51   ` [TDLS PATCH V2 1/5] mac80211: Enable TDLS peer buffer STA feature yintang
2017-09-19  2:51     ` yintang
2017-09-19  3:01     ` James Cameron [this message]
2017-09-19  3:01       ` James Cameron
2017-09-19  2:51   ` [TDLS PATCH V2 2/5] ath10k: " yintang
2017-09-19  2:51     ` yintang
2017-09-19  2:51   ` [TDLS PATCH V2 3/5] ath10k: Enable TDLS peer inactivity detection yintang
2017-09-19  2:51     ` yintang
2017-09-19  2:51   ` [TDLS PATCH V2 4/5] ath10k: Avoid to set WEP key for TDLS peer yintang
2017-09-19  2:51     ` yintang
2017-09-19  2:52 ` [TDLS PATCH V2 5/5] " yintang
2017-09-19  2:52   ` yintang

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=20170919030113.GO26927@us.netrek.org \
    --to=quozl@laptop.org \
    --cc=ath10k@lists.infradead.org \
    --cc=linux-wireless@vger.kernel.org \
    --cc=yintang@qti.qualcomm.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.