Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756517Ab3DWIy5 (ORCPT ); Tue, 23 Apr 2013 04:54:57 -0400 Received: from cantor2.suse.de ([195.135.220.15]:37335 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756492Ab3DWIyz (ORCPT ); Tue, 23 Apr 2013 04:54:55 -0400 Date: Tue, 23 Apr 2013 10:54:52 +0200 From: Jan Kara To: majianpeng Cc: Al Viro , akpm@linux-foundation.org, tytso@mit.edu, Jan Kara , linux-fsdevel , linux-ext4@vger.kernel.org, linux-kernel Subject: Re: [PATCH V1] fs/buffer.c: Remove unnecessary init operation after, allocating buffer_head. Message-ID: <20130423085452.GC4596@quack.suse.cz> References: <51748E45.8060806@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <51748E45.8060806@gmail.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2022 Lines: 64 On Mon 22-04-13 09:11:33, majianpeng wrote: > Because alloc 'struct buffer_head' using kmem_cache_zalloc,so it doesn't > need to call 'init_buffer(bh, NULL, NULL)' and other set-zero-operation. > > Signed-off-by: Jianpeng Ma Looks good. If noone objects, I'll merge the patch through my tree. Honza > --- > fs/buffer.c | 2 -- > fs/jbd/journal.c | 2 -- > fs/jbd2/journal.c | 2 -- > 3 files changed, 6 deletions(-) > > diff --git a/fs/buffer.c b/fs/buffer.c > index b4dcb34..52b7739 100644 > --- a/fs/buffer.c > +++ b/fs/buffer.c > @@ -865,8 +865,6 @@ try_again: > > /* Link the buffer to its page */ > set_bh_page(bh, page, offset); > - > - init_buffer(bh, NULL, NULL); > } > return head; > /* > diff --git a/fs/jbd/journal.c b/fs/jbd/journal.c > index 81cc7ea..865c430 100644 > --- a/fs/jbd/journal.c > +++ b/fs/jbd/journal.c > @@ -310,8 +310,6 @@ int journal_write_metadata_buffer(transaction_t *transaction, > > new_bh = alloc_buffer_head(GFP_NOFS|__GFP_NOFAIL); > /* keep subsequent assertions sane */ > - new_bh->b_state = 0; > - init_buffer(new_bh, NULL, NULL); > atomic_set(&new_bh->b_count, 1); > new_jh = journal_add_journal_head(new_bh); /* This sleeps */ > > diff --git a/fs/jbd2/journal.c b/fs/jbd2/journal.c > index ed10991..8b220f1 100644 > --- a/fs/jbd2/journal.c > +++ b/fs/jbd2/journal.c > @@ -367,8 +367,6 @@ retry_alloc: > } > > /* keep subsequent assertions sane */ > - new_bh->b_state = 0; > - init_buffer(new_bh, NULL, NULL); > atomic_set(&new_bh->b_count, 1); > new_jh = jbd2_journal_add_journal_head(new_bh); /* This sleeps */ > > -- > 1.8.2.rc2.4.g7799588 > -- Jan Kara SUSE Labs, CR -- 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/