mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
fs/buffer.c: remove redundant initialization in alloc_page_buffers()
buffer_head comes from kmem_cache_zalloc(), no need to zero its fields. Signed-off-by: Yan Hong <clouds.yan@gmail.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
a3f3c29cb2
commit
02c0ab684f
@ -849,13 +849,10 @@ try_again:
|
||||
if (!bh)
|
||||
goto no_grow;
|
||||
|
||||
bh->b_bdev = NULL;
|
||||
bh->b_this_page = head;
|
||||
bh->b_blocknr = -1;
|
||||
head = bh;
|
||||
|
||||
bh->b_state = 0;
|
||||
atomic_set(&bh->b_count, 0);
|
||||
bh->b_size = size;
|
||||
|
||||
/* Link the buffer to its page */
|
||||
|
Loading…
Reference in New Issue
Block a user