> -----Original Message----- > From: Grumbach, Emmanuel > Sent: Tuesday, September 17, 2013 3:24 PM > To: linux-wireless@xxxxxxxxxxxxxxx > Cc: Grumbach, Emmanuel > Subject: [PATCH] cfg80211: don't start p2p device while in RFKILL > > Signed-off-by: Emmanuel Grumbach <emmanuel.grumbach@xxxxxxxxx> > --- > net/wireless/nl80211.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c index > 316503f..6bb03b5 100644 > --- a/net/wireless/nl80211.c > +++ b/net/wireless/nl80211.c > @@ -8666,6 +8666,9 @@ static int nl80211_start_p2p_device(struct sk_buff > *skb, struct genl_info *info) > if (err) > return err; > > + if (rfkill_blocked(rdev->rfkill)) > + return -ERFKILL; > + > err = rdev_start_p2p_device(rdev, wdev); > if (err) > return err; This is bad... obviously I need to test that before I add the interface... v2 on the way -- To unsubscribe from this list: send the line "unsubscribe linux-wireless" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html