]> Pileus Git - ~andy/linux/commitdiff
mesh: use set_bit() to set MESH_WORK_HOUSEKEEPING.
authorRui Paulo <rpaulo@gmail.com>
Tue, 20 Oct 2009 20:21:48 +0000 (21:21 +0100)
committerJohn W. Linville <linville@tuxdriver.com>
Tue, 27 Oct 2009 20:48:35 +0000 (16:48 -0400)
This makes the mesh housekeeping timer work properly on big endian
systems.

Signed-off-by: Rui Paulo <rpaulo@gmail.com>
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
net/mac80211/mesh.c

index f7364e56f1eef36c8490302a72d413ea52de82b7..9a733890eb4770977fb2b23adea50d17cdc5f485 100644 (file)
@@ -50,7 +50,7 @@ static void ieee80211_mesh_housekeeping_timer(unsigned long data)
        struct ieee80211_local *local = sdata->local;
        struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
 
-       ifmsh->wrkq_flags |= MESH_WORK_HOUSEKEEPING;
+       set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
 
        if (local->quiescing) {
                set_bit(TMR_RUNNING_HK, &ifmsh->timers_running);
@@ -480,7 +480,7 @@ void ieee80211_start_mesh(struct ieee80211_sub_if_data *sdata)
        struct ieee80211_if_mesh *ifmsh = &sdata->u.mesh;
        struct ieee80211_local *local = sdata->local;
 
-       ifmsh->wrkq_flags |= MESH_WORK_HOUSEKEEPING;
+       set_bit(MESH_WORK_HOUSEKEEPING, &ifmsh->wrkq_flags);
        ieee80211_queue_work(&local->hw, &ifmsh->work);
        sdata->vif.bss_conf.beacon_int = MESH_DEFAULT_BEACON_INTERVAL;
        ieee80211_bss_info_change_notify(sdata, BSS_CHANGED_BEACON |