aboutsummaryrefslogtreecommitdiffstats
path: root/net/mac80211/util.c
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2011-08-29 17:17:31 -0400
committerJohn W. Linville <linville@tuxdriver.com>2011-09-13 15:45:02 -0400
commitd15b84590a1d2ec021ada00a0e67ee5851a0ea2b (patch)
tree2a05aed04345641fec0647c409779345ef0166f3 /net/mac80211/util.c
parent239289e446d4e86ae94b1ca57e358b106cc4bee6 (diff)
mac80211: Remove unnecessary OOM logging messages
Removing unnecessary messages saves code and text. Site specific OOM messages are duplications of a generic MM out of memory message and aren't really useful, so just delete them. Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/mac80211/util.c')
-rw-r--r--net/mac80211/util.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/net/mac80211/util.c b/net/mac80211/util.c
index ce916ff6ef0..1c108027473 100644
--- a/net/mac80211/util.c
+++ b/net/mac80211/util.c
@@ -707,11 +707,9 @@ void ieee80211_send_auth(struct ieee80211_sub_if_data *sdata,
707 707
708 skb = dev_alloc_skb(local->hw.extra_tx_headroom + 708 skb = dev_alloc_skb(local->hw.extra_tx_headroom +
709 sizeof(*mgmt) + 6 + extra_len); 709 sizeof(*mgmt) + 6 + extra_len);
710 if (!skb) { 710 if (!skb)
711 printk(KERN_DEBUG "%s: failed to allocate buffer for auth "
712 "frame\n", sdata->name);
713 return; 711 return;
714 } 712
715 skb_reserve(skb, local->hw.extra_tx_headroom); 713 skb_reserve(skb, local->hw.extra_tx_headroom);
716 714
717 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6); 715 mgmt = (struct ieee80211_mgmt *) skb_put(skb, 24 + 6);
@@ -864,11 +862,8 @@ struct sk_buff *ieee80211_build_probe_req(struct ieee80211_sub_if_data *sdata,
864 862
865 /* FIXME: come up with a proper value */ 863 /* FIXME: come up with a proper value */
866 buf = kmalloc(200 + ie_len, GFP_KERNEL); 864 buf = kmalloc(200 + ie_len, GFP_KERNEL);
867 if (!buf) { 865 if (!buf)
868 printk(KERN_DEBUG "%s: failed to allocate temporary IE "
869 "buffer\n", sdata->name);
870 return NULL; 866 return NULL;
871 }
872 867
873 /* 868 /*
874 * Do not send DS Channel parameter for directed probe requests 869 * Do not send DS Channel parameter for directed probe requests