nl80211: allow CAC only if no operation is going on
authorSimon Wunderlich <[email protected]>
Tue, 3 Sep 2013 17:43:18 +0000 (19:43 +0200)
committerJohannes Berg <[email protected]>
Tue, 1 Oct 2013 11:05:59 +0000 (13:05 +0200)
A CAC should fail if it is triggered while the interface is already
running.

Signed-off-by: Simon Wunderlich <[email protected]>
Signed-off-by: Mathias Kretschmer <[email protected]>
Signed-off-by: Johannes Berg <[email protected]>
net/wireless/nl80211.c

index ae617112b8f509eae7fb9660bcc9d768d0d9046e..2838206ddad3b5b05ea2eb2a6bfbc281593f9b41 100644 (file)
@@ -5591,6 +5591,9 @@ static int nl80211_start_radar_detection(struct sk_buff *skb,
        if (err)
                return err;
 
+       if (netif_carrier_ok(dev))
+               return -EBUSY;
+
        if (wdev->cac_started)
                return -EBUSY;