All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3] mac80211: correct size the argument to kzalloc in minstrel_ht
@ 2012-06-30 19:55 Thomas Huehn
  2012-06-30 20:03 ` Johannes Berg
  0 siblings, 1 reply; 2+ messages in thread
From: Thomas Huehn @ 2012-06-30 19:55 UTC (permalink / raw)
  To: linville
  Cc: wfg, linux-wireless, franzschrober, julian.calaby, johannes, thomas, nbd

msp has type struct minstrel_ht_sta_priv not struct minstrel_ht_sta.

Signed-off-by: Thomas Huehn <thomas@net.t-labs.tu-berlin.de>
---
Use suggested coding style. Thx to Schrober.
Correct an error reported in sane. Thx to Fengguang Wu.
---
 net/mac80211/rc80211_minstrel_ht.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/mac80211/rc80211_minstrel_ht.c b/net/mac80211/rc80211_minstrel_ht.c
index 2d1acc6..f9e51ef 100644
--- a/net/mac80211/rc80211_minstrel_ht.c
+++ b/net/mac80211/rc80211_minstrel_ht.c
@@ -809,7 +809,7 @@ minstrel_ht_alloc_sta(void *priv, struct ieee80211_sta *sta, gfp_t gfp)
 			max_rates = sband->n_bitrates;
 	}
 
-	msp = kzalloc(sizeof(struct minstrel_ht_sta), gfp);
+	msp = kzalloc(sizeof(*msp), gfp);
 	if (!msp)
 		return NULL;
 
-- 
1.7.10.4


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

* Re: [PATCH v3] mac80211: correct size the argument to kzalloc in minstrel_ht
  2012-06-30 19:55 [PATCH v3] mac80211: correct size the argument to kzalloc in minstrel_ht Thomas Huehn
@ 2012-06-30 20:03 ` Johannes Berg
  0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2012-06-30 20:03 UTC (permalink / raw)
  To: Thomas Huehn
  Cc: linville, wfg, linux-wireless, franzschrober, julian.calaby, nbd

On Sat, 2012-06-30 at 21:55 +0200, Thomas Huehn wrote:
> msp has type struct minstrel_ht_sta_priv not struct minstrel_ht_sta.
> 
> Signed-off-by: Thomas Huehn <thomas@net.t-labs.tu-berlin.de>
> ---
> Use suggested coding style. Thx to Schrober.
> Correct an error reported in sane. Thx to Fengguang Wu.

Your other patch was already applied ....

johannes


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

end of thread, other threads:[~2012-06-30 20:03 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-30 19:55 [PATCH v3] mac80211: correct size the argument to kzalloc in minstrel_ht Thomas Huehn
2012-06-30 20:03 ` Johannes Berg

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.