From: Muthu Kumar <muthu.lkml@gmail.com>
To: Dave Chinner <david@fromorbit.com>
Cc: axboe <axboe@kernel.dk>, shaggy <shaggy@kernel.org>,
"chris.mason" <chris.mason@fusionio.com>,
elder <elder@kernel.org>, tytso <tytso@mit.edu>,
"konrad.wilk" <konrad.wilk@oracle.com>,
Neil Brown <neilb@suse.de>, mfasheh <mfasheh@suse.com>,
linux-btrfs <linux-btrfs@vger.kernel.org>,
jfs-discussion <jfs-discussion@lists.sourceforge.net>,
majianpeng <majianpeng@gmail.com>,
linux-raid <linux-raid@vger.kernel.org>, bpm <bpm@sgi.com>,
"adilger.kernel" <adilger.kernel@dilger.ca>,
viro <viro@zeniv.linux.org.uk>,
linux-ext4 <linux-ext4@vger.kernel.org>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
xfs <xfs@oss.sgi.com>,
linux-kernel <linux-kernel@vger.kernel.org>,
jlbec <jlbec@evilplan.org>
Subject: Re: [PATCH 0/8] Set bi_rw when alloc bio before call bio_add_page.
Date: Fri, 10 Aug 2012 08:23:41 -0700 [thread overview]
Message-ID: <CAFR8uef=7BxCv3obxq8vHFKXGYMJe3F3Qw2C8JAp4_qENmC0xg@mail.gmail.com> (raw)
In-Reply-To: <20120731011457.GO2877@dastard>
[-- Attachment #1.1: Type: text/plain, Size: 3595 bytes --]
Hi,
On Mon, Jul 30, 2012 at 6:14 PM, Dave Chinner <david@fromorbit.com> wrote:
> On Tue, Jul 31, 2012 at 08:55:59AM +0800, majianpeng wrote:
>> On 2012-07-31 05:42 Dave Chinner <david@fromorbit.com> Wrote:
>> >On Mon, Jul 30, 2012 at 03:14:28PM +0800, majianpeng wrote:
>> >> When exec bio_alloc, the bi_rw is zero.But after calling bio_add_page,
>> >> it will use bi_rw.
>> >> Fox example, in functiion __bio_add_page,it will call merge_bvec_fn().
>> >> The merge_bvec_fn of raid456 will use the bi_rw to judge the merge.
>> >> >> if ((bvm->bi_rw & 1) == WRITE)
>> >> >> return biovec->bv_len; /* always allow writes to be mergeable */
>> >
>> >So if bio_add_page() requires bi_rw to be set, then shouldn't it be
>> >set up for every caller? I noticed there are about 50 call sites for
>> >bio_add_page(), and you've only touched about 10 of them. Indeed, I
>> >notice that the RAID0/1 code uses bio_add_page, and as that can be
>> >stacked on top of RAID456, it also needs to set bi_rw correctly.
>> >As a result, your patch set is nowhere near complete, not does it
>> >document that bio_add_page requires that bi_rw be set before calling
>> >(which is the new API requirement, AFAICT).
>> There are many place call bio_add_page and I send some of those. Because
my abilty, so I only send
>> some patchs which i understand clearly.
>
> Sure, but my point is that there is no point changing only a few and
> ignoring the great majority of callers. Either fix them all, fix it
> some other way (e.g. API change), or remove the code from the RAID5
> function that requires it.
>
A while back, we tried to address this by changing the alloc functions to
take rw argument and set it (as per Jens suggestion). I guess the patch did
not make it in. Please check:
https://lkml.org/lkml/2011/7/11/275
And the follow ups. If needed, I can dust up that patch and resend it.
>> In __bio_add_page:
>> >>if (q->merge_bvec_fn) {
>> >> struct bvec_merge_data bvm = {
>> >> /* prev_bvec is already charged in
>> >> bi_size, discharge it in order
to
>> >> simulate merging updated
prev_bvec
>> >> as new bvec. */
>> >> .bi_bdev = bio->bi_bdev,
>> >> .bi_sector = bio->bi_sector,
>> >> .bi_size = bio->bi_size -
prev_bv_len,
>> >> .bi_rw = bio->bi_rw,
>> >> };
>> it used bio->bi_rw.
>> Before raid5_mergeable_bvec appearing, in kernel 'merge_bvec_fn' did not
use bio->bi_rw.
>
<snip>
> It's entirely possible that when bi_rw was added to struct
> bvec_merge_data, the person who added it was mistaken that bi_rw was
> set at this point in time when in fact it never has been. Hence it's
> presence and reliance on it would be a bug.
>
> That's what I'm asking - is this actually beneificial, or should it
> simply be removed from struct bvec_merge_data? Data is needed to
> answer that question....
There are cases where we found it really beneficial to know the rw field to
decide if the can be really merged or not.
Regards,
Muthu
>
> Cheers,
>
> Dave.
> --
> Dave Chinner
> david@fromorbit.com
> --
> 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/
[-- Attachment #1.2: Type: text/html, Size: 4725 bytes --]
[-- Attachment #2: Type: text/plain, Size: 395 bytes --]
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
[-- Attachment #3: Type: text/plain, Size: 173 bytes --]
_______________________________________________
Jfs-discussion mailing list
Jfs-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jfs-discussion
next prev parent reply other threads:[~2012-08-10 15:23 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-30 7:14 [PATCH 0/8] Set bi_rw when alloc bio before call bio_add_page majianpeng
2012-07-30 15:39 ` Konrad Rzeszutek Wilk
2012-07-31 0:42 ` majianpeng
2012-07-30 21:42 ` Dave Chinner
2012-07-31 0:55 ` majianpeng
2012-07-31 1:14 ` Dave Chinner
2012-08-10 15:23 ` Muthu Kumar [this message]
2012-08-10 15:29 ` Muthu Kumar
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='CAFR8uef=7BxCv3obxq8vHFKXGYMJe3F3Qw2C8JAp4_qENmC0xg@mail.gmail.com' \
--to=muthu.lkml@gmail.com \
--cc=adilger.kernel@dilger.ca \
--cc=axboe@kernel.dk \
--cc=bpm@sgi.com \
--cc=chris.mason@fusionio.com \
--cc=david@fromorbit.com \
--cc=elder@kernel.org \
--cc=jfs-discussion@lists.sourceforge.net \
--cc=jlbec@evilplan.org \
--cc=konrad.wilk@oracle.com \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-ext4@vger.kernel.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-raid@vger.kernel.org \
--cc=majianpeng@gmail.com \
--cc=mfasheh@suse.com \
--cc=neilb@suse.de \
--cc=shaggy@kernel.org \
--cc=tytso@mit.edu \
--cc=viro@zeniv.linux.org.uk \
--cc=xfs@oss.sgi.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).