Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ba8007ce authored by Michael Wu's avatar Michael Wu Committed by John W. Linville
Browse files

[PATCH] p54: Make filter configuration atomic



p54_set_filter is now called from configure_filter, which is not
allowed to sleep. The filter configuration packet allocation should be
atomic now.

Thanks to Dmitry Torokhov <dtor@insightbb.com> for reporting this bug.

Signed-off-by: default avatarMichael Wu <flamingice@sourmilk.net>
Signed-off-by: default avatarJohn W. Linville <linville@tuxdriver.com>
parent 4771afb5
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -577,7 +577,7 @@ static int p54_set_filter(struct ieee80211_hw *dev, u16 filter_type,
	struct p54_tx_control_filter *filter;
	struct p54_tx_control_filter *filter;


	hdr = kzalloc(sizeof(*hdr) + sizeof(*filter) +
	hdr = kzalloc(sizeof(*hdr) + sizeof(*filter) +
		      priv->tx_hdr_len, GFP_KERNEL);
		      priv->tx_hdr_len, GFP_ATOMIC);
	if (!hdr)
	if (!hdr)
		return -ENOMEM;
		return -ENOMEM;