linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] block: Don't count_vm_events for discard bio in submit_bio.
@ 2010-06-23  3:24 Tao Ma
  2010-06-23 19:40 ` Andrew Morton
  0 siblings, 1 reply; 5+ messages in thread
From: Tao Ma @ 2010-06-23  3:24 UTC (permalink / raw)
  To: linux-fsdevel; +Cc: linux-kernel, Tao Ma, Jens Axboe

In submit_bio, we count vm events by check READ/WRITE.
But actually DISCARD_NOBARRIER also has the WRITE flag set.
It looks as if in blkdev_issue_discard, we also add a
page as the payload and the bio_has_data check isn't enough.
So add another check for discard bio.

Cc: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Tao Ma <tao.ma@oracle.com>
---
 block/blk-core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/blk-core.c b/block/blk-core.c
index f84cce4..a725602 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1586,7 +1586,7 @@ void submit_bio(int rw, struct bio *bio)
 	 * If it's a regular read/write or a barrier with data attached,
 	 * go through the normal accounting stuff before submission.
 	 */
-	if (bio_has_data(bio)) {
+	if (bio_has_data(bio) && !(rw & BIO_RW_DISCARD)) {
 		if (rw & WRITE) {
 			count_vm_events(PGPGOUT, count);
 		} else {
-- 
1.5.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Don't count_vm_events for discard bio in submit_bio.
  2010-06-23  3:24 [PATCH] block: Don't count_vm_events for discard bio in submit_bio Tao Ma
@ 2010-06-23 19:40 ` Andrew Morton
  2010-06-23 20:41   ` Mike Snitzer
  2010-06-24  0:28   ` [PATCH v2] " Tao Ma
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Morton @ 2010-06-23 19:40 UTC (permalink / raw)
  To: Tao Ma
  Cc: linux-fsdevel, linux-kernel, Jens Axboe, Christoph Hellwig,
	Mike Snitzer, stable

On Wed, 23 Jun 2010 11:24:51 +0800
Tao Ma <tao.ma@oracle.com> wrote:

> In submit_bio, we count vm events by check READ/WRITE.
> But actually DISCARD_NOBARRIER also has the WRITE flag set.
> It looks as if in blkdev_issue_discard, we also add a
> page as the payload and the bio_has_data check isn't enough.
> So add another check for discard bio.
> 
> Cc: Jens Axboe <axboe@kernel.dk>
> Signed-off-by: Tao Ma <tao.ma@oracle.com>
> ---
>  block/blk-core.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/block/blk-core.c b/block/blk-core.c
> index f84cce4..a725602 100644
> --- a/block/blk-core.c
> +++ b/block/blk-core.c
> @@ -1586,7 +1586,7 @@ void submit_bio(int rw, struct bio *bio)
>  	 * If it's a regular read/write or a barrier with data attached,
>  	 * go through the normal accounting stuff before submission.
>  	 */
> -	if (bio_has_data(bio)) {
> +	if (bio_has_data(bio) && !(rw & BIO_RW_DISCARD)) {
>  		if (rw & WRITE) {
>  			count_vm_events(PGPGOUT, count);
>  		} else {

Yes, that's a buglet.

Note that Christoph's "[PATCH, RFC] block: don't allocate a payload for
discard request" will fix it in a better way.  That patch is in
linux-next now, but I expect it will be taken out again (quickly,
please) because Mike has found a number of problems with it.  

Your patch looks like a decent temporary fix for mainline, and a
permanent one for -stable.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: block: Don't count_vm_events for discard bio in submit_bio.
  2010-06-23 19:40 ` Andrew Morton
@ 2010-06-23 20:41   ` Mike Snitzer
  2010-06-24  0:28   ` [PATCH v2] " Tao Ma
  1 sibling, 0 replies; 5+ messages in thread
From: Mike Snitzer @ 2010-06-23 20:41 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Tao Ma, linux-fsdevel, linux-kernel, Jens Axboe,
	Christoph Hellwig, stable

On Wed, Jun 23 2010 at  3:40pm -0400,
Andrew Morton <akpm@linux-foundation.org> wrote:

> On Wed, 23 Jun 2010 11:24:51 +0800
> Tao Ma <tao.ma@oracle.com> wrote:
> 
> > In submit_bio, we count vm events by check READ/WRITE.
> > But actually DISCARD_NOBARRIER also has the WRITE flag set.
> > It looks as if in blkdev_issue_discard, we also add a
> > page as the payload and the bio_has_data check isn't enough.
> > So add another check for discard bio.
> > 
> > Cc: Jens Axboe <axboe@kernel.dk>
> > Signed-off-by: Tao Ma <tao.ma@oracle.com>
> > ---
> >  block/blk-core.c |    2 +-
> >  1 files changed, 1 insertions(+), 1 deletions(-)
> > 
> > diff --git a/block/blk-core.c b/block/blk-core.c
> > index f84cce4..a725602 100644
> > --- a/block/blk-core.c
> > +++ b/block/blk-core.c
> > @@ -1586,7 +1586,7 @@ void submit_bio(int rw, struct bio *bio)
> >  	 * If it's a regular read/write or a barrier with data attached,
> >  	 * go through the normal accounting stuff before submission.
> >  	 */
> > -	if (bio_has_data(bio)) {
> > +	if (bio_has_data(bio) && !(rw & BIO_RW_DISCARD)) {
> >  		if (rw & WRITE) {
> >  			count_vm_events(PGPGOUT, count);
> >  		} else {
> 
> Yes, that's a buglet.
> 
> Note that Christoph's "[PATCH, RFC] block: don't allocate a payload for
> discard request" will fix it in a better way.

Oddly, even with Christoph's patch, bio_has_data() is still true once
the discard bio gets to DM.

Figuring out why is on my near-term TODO.

Mike

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH v2] block: Don't count_vm_events for discard bio in submit_bio.
  2010-06-23 19:40 ` Andrew Morton
  2010-06-23 20:41   ` Mike Snitzer
@ 2010-06-24  0:28   ` Tao Ma
  2010-06-24  6:14     ` Jens Axboe
  1 sibling, 1 reply; 5+ messages in thread
From: Tao Ma @ 2010-06-24  0:28 UTC (permalink / raw)
  To: akpm; +Cc: linux-kernel, stable, hch, axboe, linux-fsdevel, Tao Ma

Hi Andrew,
> Yes, that's a buglet.
>
> Note that Christoph's "[PATCH, RFC] block: don't allocate a payload for
> discard request" will fix it in a better way.  That patch is in
> linux-next now, but I expect it will be taken out again (quickly,
> please) because Mike has found a number of problems with it.  
ok, I haven't noticed that. thanks for the info.
>
> Your patch looks like a decent temporary fix for mainline, and a
> permanent one for -stable.
I am sorry, but I made a mistake. BIO_RW_DISCARD is a enum for bit offset.
So the right check should be rw & (1 << BIO_RW_DISCARD).
I have regenerated the patch. Sorry for the inconvenience.

Regards,
Tao

>From 060630d842a987a518c648ff65160639100c9a1b Mon Sep 17 00:00:00 2001
From: Tao Ma <tao.ma@oracle.com>
Date: Thu, 24 Jun 2010 07:43:57 +0800
Subject: [PATCH v2] block: Don't count_vm_events for discard bio in submit_bio.

In submit_bio, we count vm events by check READ/WRITE.
But actually DISCARD_NOBARRIER also has the WRITE flag set.
It looks as if in blkdev_issue_discard, we also add a
page as the payload and the bio_has_data check isn't enough.
So add another check for discard bio.

Signed-off-by: Tao Ma <tao.ma@oracle.com>
---
 block/blk-core.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/block/blk-core.c b/block/blk-core.c
index f84cce4..26aa542 100644
--- a/block/blk-core.c
+++ b/block/blk-core.c
@@ -1586,7 +1586,7 @@ void submit_bio(int rw, struct bio *bio)
 	 * If it's a regular read/write or a barrier with data attached,
 	 * go through the normal accounting stuff before submission.
 	 */
-	if (bio_has_data(bio)) {
+	if (bio_has_data(bio) && !(rw & (1 << BIO_RW_DISCARD))) {
 		if (rw & WRITE) {
 			count_vm_events(PGPGOUT, count);
 		} else {
-- 
1.5.5

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH v2] block: Don't count_vm_events for discard bio in submit_bio.
  2010-06-24  0:28   ` [PATCH v2] " Tao Ma
@ 2010-06-24  6:14     ` Jens Axboe
  0 siblings, 0 replies; 5+ messages in thread
From: Jens Axboe @ 2010-06-24  6:14 UTC (permalink / raw)
  To: Tao Ma; +Cc: akpm, linux-kernel, stable, hch, linux-fsdevel

On 2010-06-24 02:28, Tao Ma wrote:
> Hi Andrew,
>> Yes, that's a buglet.
>>
>> Note that Christoph's "[PATCH, RFC] block: don't allocate a payload for
>> discard request" will fix it in a better way.  That patch is in
>> linux-next now, but I expect it will be taken out again (quickly,
>> please) because Mike has found a number of problems with it.  
> ok, I haven't noticed that. thanks for the info.
>>
>> Your patch looks like a decent temporary fix for mainline, and a
>> permanent one for -stable.
> I am sorry, but I made a mistake. BIO_RW_DISCARD is a enum for bit offset.
> So the right check should be rw & (1 << BIO_RW_DISCARD).
> I have regenerated the patch. Sorry for the inconvenience.

Thanks, this one looks good. Applied.

-- 
Jens Axboe

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2010-06-24  6:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-23  3:24 [PATCH] block: Don't count_vm_events for discard bio in submit_bio Tao Ma
2010-06-23 19:40 ` Andrew Morton
2010-06-23 20:41   ` Mike Snitzer
2010-06-24  0:28   ` [PATCH v2] " Tao Ma
2010-06-24  6:14     ` Jens Axboe

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).