From: Mike Snitzer <snitzer@redhat.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Tao Ma <tao.ma@oracle.com>,
linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
Jens Axboe <axboe@kernel.dk>, Christoph Hellwig <hch@lst.de>,
stable@kernel.org
Subject: Re: block: Don't count_vm_events for discard bio in submit_bio.
Date: Wed, 23 Jun 2010 16:41:19 -0400 [thread overview]
Message-ID: <20100623204118.GB31560@redhat.com> (raw)
In-Reply-To: <20100623124046.4dec96d1.akpm@linux-foundation.org>
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
next prev parent reply other threads:[~2010-06-23 20:41 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
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 [this message]
2010-06-24 0:28 ` [PATCH v2] " Tao Ma
2010-06-24 6:14 ` Jens Axboe
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=20100623204118.GB31560@redhat.com \
--to=snitzer@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=axboe@kernel.dk \
--cc=hch@lst.de \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=stable@kernel.org \
--cc=tao.ma@oracle.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 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.