![]() | ||||||||||
Messages in this thread Patch in this message |
Hello!
This patch corrects a typo in fs/reiserfs/journal.c:
interruptible_sleep_on_timeout() takes timeout in jiffies, rather
than seconds.
Bye,
Oleg
diff -rup -X dontdiff linux/fs/reiserfs/journal.c linux.patched/fs/reiserfs/journal.c
--- linux/fs/reiserfs/journal.c Mon Nov 19 21:17:03 2001
+++ linux.patched/fs/reiserfs/journal.c Mon Nov 19 21:36:38 2001
@@ -1851,7 +1851,7 @@ static int reiserfs_journal_commit_threa
break ;
}
wake_up(&reiserfs_commit_thread_done) ;
- interruptible_sleep_on_timeout(&reiserfs_commit_thread_wait, 5) ;
+ interruptible_sleep_on_timeout(&reiserfs_commit_thread_wait, 5 * HZ) ;
}
unlock_kernel() ;
wake_up(&reiserfs_commit_thread_done) ; | |||||||||
| Last update: 2005-03-22 11:15 [W:0.508 / U:0.050 seconds] ©2003-2008 Jasper Spaans | ||||||||||