mac80211_hwsim: Replace bogus hrtimer clockid
authorThomas Gleixner <tglx@linutronix.de>
Sat, 25 Feb 2017 10:27:37 +0000 (10:27 +0000)
committerJohannes Berg <johannes.berg@intel.com>
Mon, 27 Feb 2017 13:04:39 +0000 (14:04 +0100)
mac80211_hwsim initializes a hrtimer with clockid
CLOCK_MONOTONIC_RAW. That's not supported.

Use CLOCK_MONOTONIC instead.

Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
drivers/net/wireless/mac80211_hwsim.c

index 1620a5d..0889fc8 100644 (file)
@@ -2671,7 +2671,7 @@ static int mac80211_hwsim_new_radio(struct genl_info *info,
 
        tasklet_hrtimer_init(&data->beacon_timer,
                             mac80211_hwsim_beacon,
-                            CLOCK_MONOTONIC_RAW, HRTIMER_MODE_ABS);
+                            CLOCK_MONOTONIC, HRTIMER_MODE_ABS);
 
        spin_lock_bh(&hwsim_radio_lock);
        list_add_tail(&data->list, &hwsim_radios);