lkml.org 
[lkml]   [2006]   [Jan]   [29]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH 2/3] Trivial optimization of ll_rw_block()
From
Date


The ll_rw_block() needs to get ref-count only if it submits a buffer().
This patch avoids the needless get/put of ref-count.

Signed-off-by: OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
---

fs/buffer.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff -puN fs/buffer.c~ll_rw_block-optimize fs/buffer.c
--- linux-2.6/fs/buffer.c~ll_rw_block-optimize 2006-01-12 21:53:00.000000000 +0900
+++ linux-2.6-hirofumi/fs/buffer.c 2006-01-12 21:53:00.000000000 +0900
@@ -2866,22 +2866,22 @@ void ll_rw_block(int rw, int nr, struct
else if (test_set_buffer_locked(bh))
continue;

- get_bh(bh);
if (rw == WRITE || rw == SWRITE) {
if (test_clear_buffer_dirty(bh)) {
bh->b_end_io = end_buffer_write_sync;
+ get_bh(bh);
submit_bh(WRITE, bh);
continue;
}
} else {
if (!buffer_uptodate(bh)) {
bh->b_end_io = end_buffer_read_sync;
+ get_bh(bh);
submit_bh(rw, bh);
continue;
}
}
unlock_buffer(bh);
- put_bh(bh);
}
}

_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2006-01-29 16:51    [W:0.023 / U:0.584 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site