Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933206Ab2EOQZc (ORCPT ); Tue, 15 May 2012 12:25:32 -0400 Received: from mail-pz0-f46.google.com ([209.85.210.46]:34035 "EHLO mail-pz0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933069Ab2EOQZb (ORCPT ); Tue, 15 May 2012 12:25:31 -0400 Date: Tue, 15 May 2012 09:25:25 -0700 From: Tejun Heo To: Kent Overstreet Cc: linux-bcache@vger.kernel.org, linux-kernel@vger.kernel.org, dm-devel@redhat.com, agk@redhat.com Subject: Re: [Bcache v13 02/16] Bio pool freeing Message-ID: <20120515162525.GC17216@google.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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: 1294 Lines: 40 On Wed, May 09, 2012 at 11:08:34PM -0400, Kent Overstreet wrote: > When you allocate a bio from a bio pool, to free it you have to know > where it came from; this adds a flag which, if set, means bi_destructor > is the pointer to the pool and bio_put() can do the right thing. > > This is used in bcache, so we can cleanly use per device bio pools. > > Signed-off-by: Kent Overstreet > --- > fs/bio.c | 9 +++++++-- > include/linux/blk_types.h | 2 ++ > 2 files changed, 9 insertions(+), 2 deletions(-) > > diff --git a/fs/bio.c b/fs/bio.c > index a965b89..6a967fc 100644 > --- a/fs/bio.c > +++ b/fs/bio.c > @@ -417,7 +418,11 @@ void bio_put(struct bio *bio) > */ > if (atomic_dec_and_test(&bio->bi_cnt)) { > bio->bi_next = NULL; > - bio->bi_destructor(bio); > + > + if (bio_flagged(bio, BIO_HAS_POOL)) > + bio_free(bio, (void *) bio->bi_destructor); > + else > + bio->bi_destructor(bio); Ummm... this is way too cryptic. Please just add another field to bio. Thanks. -- tejun -- 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/