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>
This commit is contained in:
committed by
John W. Linville
parent
239289e446
commit
d15b84590a
@ -229,11 +229,9 @@ static void ieee80211_send_assoc(struct ieee80211_sub_if_data *sdata,
|
||||
wk->ie_len + /* extra IEs */
|
||||
9, /* WMM */
|
||||
GFP_KERNEL);
|
||||
if (!skb) {
|
||||
printk(KERN_DEBUG "%s: failed to allocate buffer for assoc "
|
||||
"frame\n", sdata->name);
|
||||
if (!skb)
|
||||
return;
|
||||
}
|
||||
|
||||
skb_reserve(skb, local->hw.extra_tx_headroom);
|
||||
|
||||
capab = WLAN_CAPABILITY_ESS;
|
||||
|
Reference in New Issue
Block a user