linux-wireless.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mac80211: add missing kernel-doc
@ 2008-07-31 20:16 Randy.Dunlap
  0 siblings, 0 replies; 6+ messages in thread
From: Randy.Dunlap @ 2008-07-31 20:16 UTC (permalink / raw)
  To: linux-wireless; +Cc: linville, johannes

From: Randy Dunlap <randy.dunlap@oracle.com>

Fix mac80211 kernel-doc missing struct field:

Warning(linux-2.6.27-rc1-git2//net/mac80211/sta_info.h:329): No description found for parameter 'tid_seq[IEEE80211_QOS_CTL_TID_MASK + 1]'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 net/mac80211/sta_info.h |    1 +
 1 file changed, 1 insertion(+)

--- linux-2.6.27-rc1-git2.orig/net/mac80211/sta_info.h
+++ linux-2.6.27-rc1-git2/net/mac80211/sta_info.h
@@ -204,6 +204,7 @@ struct sta_ampdu_mlme {
  * @tx_fragments: number of transmitted MPDUs
  * @txrate_idx: TBD
  * @last_txrate_idx: TBD
+ * @tdi_seq: TBD
  * @wme_tx_queue: TBD
  * @ampdu_mlme: TBD
  * @timer_to_tid: identity mapping to ID timers

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] mac80211: add missing kernel-doc
@ 2008-09-04 16:24 Randy Dunlap
  0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2008-09-04 16:24 UTC (permalink / raw)
  To: linux-wireless; +Cc: johannes, linville

From: Randy Dunlap <randy.dunlap@oracle.com>

Fix mac80211 kernel-doc missing struct field:

Warning(linux-2.6.27-rc1-git2//net/mac80211/sta_info.h:329): No description found for parameter 'tid_seq[IEEE80211_QOS_CTL_TID_MASK + 1]'

Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
---
 net/mac80211/sta_info.h |    1 +
 1 file changed, 1 insertion(+)

--- linux-2.6.27-rc5-git6.orig/net/mac80211/sta_info.h
+++ linux-2.6.27-rc5-git6/net/mac80211/sta_info.h
@@ -204,6 +204,7 @@ struct sta_ampdu_mlme {
  * @tx_fragments: number of transmitted MPDUs
  * @txrate_idx: TBD
  * @last_txrate_idx: TBD
+ * @tid_seq: TBD
  * @wme_tx_queue: TBD
  * @ampdu_mlme: TBD
  * @timer_to_tid: identity mapping to ID timers

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] mac80211: add missing kernel-doc
@ 2009-02-18  8:56 Johannes Berg
  0 siblings, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2009-02-18  8:56 UTC (permalink / raw)
  To: John Linville; +Cc: linux-wireless, Randy Dunlap

Document the new shutdown member.

Signed-off-by: Johannes Berg <johannes@sipsolutions.net>
---
Randy, just so you know I've found it already.

 net/mac80211/sta_info.h |    1 +
 1 file changed, 1 insertion(+)

--- wireless-testing.orig/net/mac80211/sta_info.h	2009-02-18 09:53:44.000000000 +0100
+++ wireless-testing/net/mac80211/sta_info.h	2009-02-18 09:55:00.000000000 +0100
@@ -90,6 +90,7 @@ struct tid_ampdu_tx {
  * @buf_size: buffer size for incoming A-MPDUs
  * @timeout: reset timer value (in TUs).
  * @dialog_token: dialog token for aggregation session
+ * @shutdown: this session is being shut down due to STA removal
  */
 struct tid_ampdu_rx {
 	struct sk_buff **reorder_buf;



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH] mac80211: add missing kernel-doc
@ 2012-06-11 17:23 Ashok Nagarajan
  2012-06-11 17:33 ` Randy Dunlap
  2012-06-12 11:56 ` Johannes Berg
  0 siblings, 2 replies; 6+ messages in thread
From: Ashok Nagarajan @ 2012-06-11 17:23 UTC (permalink / raw)
  To: linux-wireless; +Cc: johannes, javier, rdunlap, devel, Ashok Nagarajan

Add a few kernel-doc descriptions that were missed
during mesh development.

Reported-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Ashok Nagarajan <ashok@cozybit.com>
---
 net/mac80211/sta_info.h |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)

diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
index 3bb24a1..672d9c6 100644
--- a/net/mac80211/sta_info.h
+++ b/net/mac80211/sta_info.h
@@ -271,6 +271,9 @@ struct sta_ampdu_mlme {
  * @plink_timer: peer link watch timer
  * @plink_timer_was_running: used by suspend/resume to restore timers
  * @t_offset: timing offset relative to this host
+ * @t_offset_setpoint: reference timing offset of this sta to be used when
+ * 	calculating clockdrift
+ * @ch_type: peer's channel type
  * @debugfs: debug filesystem info
  * @dead: set to true when sta is unlinked
  * @uploaded: set to true when sta is uploaded to the driver
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] mac80211: add missing kernel-doc
  2012-06-11 17:23 Ashok Nagarajan
@ 2012-06-11 17:33 ` Randy Dunlap
  2012-06-12 11:56 ` Johannes Berg
  1 sibling, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2012-06-11 17:33 UTC (permalink / raw)
  To: Ashok Nagarajan; +Cc: linux-wireless, johannes, javier, devel

On 06/11/2012 10:23 AM, Ashok Nagarajan wrote:

> Add a few kernel-doc descriptions that were missed
> during mesh development.
> 
> Reported-by: Randy Dunlap <rdunlap@xenotime.net>
> Signed-off-by: Ashok Nagarajan <ashok@cozybit.com>


Acked-by: Randy Dunlap <rdunlap@xenotime.net>

Thanks.

> ---
>  net/mac80211/sta_info.h |    3 +++
>  1 files changed, 3 insertions(+), 0 deletions(-)
> 
> diff --git a/net/mac80211/sta_info.h b/net/mac80211/sta_info.h
> index 3bb24a1..672d9c6 100644
> --- a/net/mac80211/sta_info.h
> +++ b/net/mac80211/sta_info.h
> @@ -271,6 +271,9 @@ struct sta_ampdu_mlme {
>   * @plink_timer: peer link watch timer
>   * @plink_timer_was_running: used by suspend/resume to restore timers
>   * @t_offset: timing offset relative to this host
> + * @t_offset_setpoint: reference timing offset of this sta to be used when
> + * 	calculating clockdrift
> + * @ch_type: peer's channel type
>   * @debugfs: debug filesystem info
>   * @dead: set to true when sta is unlinked
>   * @uploaded: set to true when sta is uploaded to the driver



-- 
~Randy

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] mac80211: add missing kernel-doc
  2012-06-11 17:23 Ashok Nagarajan
  2012-06-11 17:33 ` Randy Dunlap
@ 2012-06-12 11:56 ` Johannes Berg
  1 sibling, 0 replies; 6+ messages in thread
From: Johannes Berg @ 2012-06-12 11:56 UTC (permalink / raw)
  To: Ashok Nagarajan; +Cc: linux-wireless, javier, rdunlap, devel

On Mon, 2012-06-11 at 10:23 -0700, Ashok Nagarajan wrote:
> Add a few kernel-doc descriptions that were missed
> during mesh development.

Applied, thanks.

johannes


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2012-06-12 11:56 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-09-04 16:24 [PATCH] mac80211: add missing kernel-doc Randy Dunlap
  -- strict thread matches above, loose matches on Subject: below --
2012-06-11 17:23 Ashok Nagarajan
2012-06-11 17:33 ` Randy Dunlap
2012-06-12 11:56 ` Johannes Berg
2009-02-18  8:56 Johannes Berg
2008-07-31 20:16 Randy.Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).