diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 05:26:19 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-17 05:26:19 +0100 |
commit | 9bd5674c4aa3d430d61a578eaecd85104176f150 (patch) | |
tree | 814c59b4fa9dc56be0025fda0b0a091218f5d0ec | |
parent | [PATCH] Fix drivers/block/ps2esdi.c compile (diff) | |
parent | Make alloc_page_buffers() initialise buffer_heads using init_buffer(), (diff) | |
download | linux-9bd5674c4aa3d430d61a578eaecd85104176f150.tar.xz linux-9bd5674c4aa3d430d61a578eaecd85104176f150.zip |
Merge git://oss.sgi.com:8090/oss/git/xfs-2.6
-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; /* |