From: Heinz Mauelshagen <mauelshagen@redhat.com>
To: Jens Axboe <jens.axboe@oracle.com>
Cc: Andrew Morton <akpm@osdl.org>, Heinz Mauelshagen <hjm@redhat.com>,
linux-kernel@vger.kernel.org, dm-devel@redhat.com
Subject: Re: [PATCH 01/11] dm io: fix bi_max_vecs
Date: Thu, 23 Nov 2006 16:26:38 +0100 [thread overview]
Message-ID: <20061123152638.GA3245@redhat.com> (raw)
In-Reply-To: <20061123091957.GM4999@kernel.dk>
On Thu, Nov 23, 2006 at 10:19:57AM +0100, Jens Axboe wrote:
> On Wed, Nov 22 2006, Alasdair G Kergon wrote:
> > From: Heinz Mauelshagen <hjm@redhat.com>
> >
> > The existing code allocates an extra slot in bi_io_vec[] and uses it to
> > store the region number.
> >
> > This patch hides the extra slot from bio_add_page() so the region number
> > can't get overwritten.
> >
> > Also remove a hard-coded SECTOR_SHIFT and fix a typo in a comment.
> >
> > Index: linux-2.6.19-rc6/drivers/md/dm-io.c
> > ===================================================================
> > --- linux-2.6.19-rc6.orig/drivers/md/dm-io.c 2006-11-22 17:26:47.000000000 +0000
> > +++ linux-2.6.19-rc6/drivers/md/dm-io.c 2006-11-22 17:26:53.000000000 +0000
> > @@ -92,12 +92,12 @@ void dm_io_put(unsigned int num_pages)
> > *---------------------------------------------------------------*/
> > static inline void bio_set_region(struct bio *bio, unsigned region)
> > {
> > - bio->bi_io_vec[bio->bi_max_vecs - 1].bv_len = region;
> > + bio->bi_io_vec[bio->bi_max_vecs].bv_len = region;
> > }
> >
>
> Ehm eww, that is really ugly code imo.
Got an idea to squirrel the region more beautiful ?
Heinz
>
> --
> Jens Axboe
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Heinz Mauelshagen Red Hat GmbH
Consulting Development Engineer Am Sonnenhang 11
Storage Development 56242 Marienrachdorf
Germany
Mauelshagen@RedHat.com PHONE +49 171 7803392
FAX +49 2626 924446
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
prev parent reply other threads:[~2006-11-23 15:26 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-11-22 18:59 [PATCH 01/11] dm io: fix bi_max_vecs Alasdair G Kergon
2006-11-22 18:59 ` Alasdair G Kergon
2006-11-23 9:19 ` Jens Axboe
2006-11-23 15:26 ` Heinz Mauelshagen [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20061123152638.GA3245@redhat.com \
--to=mauelshagen@redhat.com \
--cc=akpm@osdl.org \
--cc=dm-devel@redhat.com \
--cc=hjm@redhat.com \
--cc=jens.axboe@oracle.com \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.