diff options
author | Nathan Scott <nathans@bruce> | 2006-01-17 09:02:07 +1100 |
---|---|---|
committer | Nathan Scott <nathans@bruce> | 2006-01-17 09:02:07 +1100 |
commit | 01ffe339e3a0ba5ecbeb2b3b5abac7b3ef90f374 (patch) | |
tree | 7586fb091466772a31d9e46d807b8709d4166ef8 /fs/buffer.c | |
parent | 4a8e4a270b89030bdeb09d2f8cef7cfe9a50e54d (diff) |
Make alloc_page_buffers() initialise buffer_heads using init_buffer(),
like other routines here, to ensure buffers are correctly initialised
with respect to b_private/b_end_io. Fixes an odd interaction between
XFS and reiserfs.
Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to 'fs/buffer.c')
-rw-r--r-- | fs/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/buffer.c b/fs/buffer.c index 7cdf48a9a501..3dc712f29d2d 100644 --- a/fs/buffer.c +++ b/fs/buffer.c @@ -1027,7 +1027,7 @@ try_again: /* Link the buffer to its page */ set_bh_page(bh, page, offset); - bh->b_end_io = NULL; + init_buffer(bh, NULL, NULL); } return head; /* |