projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
49db041
)
writeback: remove smp_mb(), it's not needed with list_add_tail_rcu()
author
Nick Piggin
<
[email protected]
>
Tue, 15 Sep 2009 19:32:58 +0000
(21:32 +0200)
committer
Jens Axboe
<
[email protected]
>
Wed, 16 Sep 2009 13:18:52 +0000
(15:18 +0200)
list_add_tail_rcu contains required barriers.
Signed-off-by: Nick Piggin <
[email protected]
>
Signed-off-by: Jens Axboe <
[email protected]
>
fs/fs-writeback.c
patch
|
blob
|
history
diff --git
a/fs/fs-writeback.c
b/fs/fs-writeback.c
index 34757758511a7f073a019b67a61c7884ecf3fed0..59c99e7291874cb33315aa4873e8dd0c35c91483 100644
(file)
--- a/
fs/fs-writeback.c
+++ b/
fs/fs-writeback.c
@@
-151,10
+151,10
@@
static void bdi_queue_work(struct backing_dev_info *bdi, struct bdi_work *work)
BUG_ON(!bdi->wb_cnt);
/*
- * Make sure stores are seen before it appears on the list
+ * list_add_tail_rcu() contains the necessary barriers to
+ * make sure the above stores are seen before the item is
+ * noticed on the list
*/
- smp_mb();
-
spin_lock(&bdi->wb_lock);
list_add_tail_rcu(&work->list, &bdi->work_list);
spin_unlock(&bdi->wb_lock);