diff options
author | Mel Gorman <mgorman@suse.de> | 2014-06-04 19:10:29 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-06-04 19:54:10 -0400 |
commit | e7470ee89f003634a88e7b5e5a7b65b3025987de (patch) | |
tree | 8e435d23f1cf1fcd9aca0b8edff647481b30d2e6 /fs | |
parent | 6fb81a17d21f2a138b8f424af4cf379f2b694060 (diff) |
fs: buffer: do not use unnecessary atomic operations when discarding buffers
Discarding buffers uses a bunch of atomic operations when discarding
buffers because ...... I can't think of a reason. Use a cmpxchg loop to
clear all the necessary flags. In most (all?) cases this will be a single
atomic operations.
[akpm@linux-foundation.org: move BUFFER_FLAGS_DISCARD into the .c file]
Signed-off-by: Mel Gorman <mgorman@suse.de>
Cc: Johannes Weiner <hannes@cmpxchg.org>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Jan Kara <jack@suse.cz>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Hugh Dickins <hughd@google.com>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: "Paul E. McKenney" <paulmck@linux.vnet.ibm.com>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Rik van Riel <riel@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/buffer.c | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index e33f8d5452ad..0d3e8d5a2299 100644 --- a/fs/buffer.c +++ b/fs/buffer.c | |||
@@ -1483,16 +1483,27 @@ EXPORT_SYMBOL(set_bh_page); | |||
1483 | /* | 1483 | /* |
1484 | * Called when truncating a buffer on a page completely. | 1484 | * Called when truncating a buffer on a page completely. |
1485 | */ | 1485 | */ |
1486 | |||
1487 | /* Bits that are cleared during an invalidate */ | ||
1488 | #define BUFFER_FLAGS_DISCARD \ | ||
1489 | (1 << BH_Mapped | 1 << BH_New | 1 << BH_Req | \ | ||
1490 | 1 << BH_Delay | 1 << BH_Unwritten) | ||
1491 | |||
1486 | static void discard_buffer(struct buffer_head * bh) | 1492 | static void discard_buffer(struct buffer_head * bh) |
1487 | { | 1493 | { |
1494 | unsigned long b_state, b_state_old; | ||
1495 | |||
1488 | lock_buffer(bh); | 1496 | lock_buffer(bh); |
1489 | clear_buffer_dirty(bh); | 1497 | clear_buffer_dirty(bh); |
1490 | bh->b_bdev = NULL; | 1498 | bh->b_bdev = NULL; |
1491 | clear_buffer_mapped(bh); | 1499 | b_state = bh->b_state; |
1492 | clear_buffer_req(bh); | 1500 | for (;;) { |
1493 | clear_buffer_new(bh); | 1501 | b_state_old = cmpxchg(&bh->b_state, b_state, |
1494 | clear_buffer_delay(bh); | 1502 | (b_state & ~BUFFER_FLAGS_DISCARD)); |
1495 | clear_buffer_unwritten(bh); | 1503 | if (b_state_old == b_state) |
1504 | break; | ||
1505 | b_state = b_state_old; | ||
1506 | } | ||
1496 | unlock_buffer(bh); | 1507 | unlock_buffer(bh); |
1497 | } | 1508 | } |
1498 | 1509 | ||