aboutsummaryrefslogtreecommitdiffstats
path: root/fs/jfs/jfs_txnmgr.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/jfs/jfs_txnmgr.c')
-rw-r--r--fs/jfs/jfs_txnmgr.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/jfs/jfs_txnmgr.c b/fs/jfs/jfs_txnmgr.c
index 03893acbfda4..9b3de0aaa034 100644
--- a/fs/jfs/jfs_txnmgr.c
+++ b/fs/jfs/jfs_txnmgr.c
@@ -136,7 +136,7 @@ static inline void TXN_SLEEP_DROP_LOCK(wait_queue_head_t * event)
136 set_current_state(TASK_UNINTERRUPTIBLE); 136 set_current_state(TASK_UNINTERRUPTIBLE);
137 TXN_UNLOCK(); 137 TXN_UNLOCK();
138 io_schedule(); 138 io_schedule();
139 current->state = TASK_RUNNING; 139 __set_current_state(TASK_RUNNING);
140 remove_wait_queue(event, &wait); 140 remove_wait_queue(event, &wait);
141} 141}
142 142
@@ -2798,7 +2798,7 @@ int jfs_lazycommit(void *arg)
2798 set_current_state(TASK_INTERRUPTIBLE); 2798 set_current_state(TASK_INTERRUPTIBLE);
2799 LAZY_UNLOCK(flags); 2799 LAZY_UNLOCK(flags);
2800 schedule(); 2800 schedule();
2801 current->state = TASK_RUNNING; 2801 __set_current_state(TASK_RUNNING);
2802 remove_wait_queue(&jfs_commit_thread_wait, &wq); 2802 remove_wait_queue(&jfs_commit_thread_wait, &wq);
2803 } 2803 }
2804 } while (!kthread_should_stop()); 2804 } while (!kthread_should_stop());
@@ -2990,7 +2990,7 @@ int jfs_sync(void *arg)
2990 set_current_state(TASK_INTERRUPTIBLE); 2990 set_current_state(TASK_INTERRUPTIBLE);
2991 TXN_UNLOCK(); 2991 TXN_UNLOCK();
2992 schedule(); 2992 schedule();
2993 current->state = TASK_RUNNING; 2993 __set_current_state(TASK_RUNNING);
2994 } 2994 }
2995 } while (!kthread_should_stop()); 2995 } while (!kthread_should_stop());
2996 2996