From: Mike Snitzer <snitzer@redhat.com>
To: Mikulas Patocka <mpatocka@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>,
linux-block@vger.kernel.org, dm-devel@redhat.com,
"Alasdair G. Kergon" <agk@redhat.com>,
Christoph Hellwig <hch@infradead.org>
Subject: Re: [PATCH 2/3] block: switch to per-cpu in-flight counters
Date: Thu, 29 Nov 2018 19:21:48 -0500 [thread overview]
Message-ID: <20181130002148.GA10015@redhat.com> (raw)
In-Reply-To: <alpine.LRH.2.02.1811291701430.9428@file01.intranet.prod.int.rdu2.redhat.com>
On Thu, Nov 29 2018 at 5:05pm -0500,
Mikulas Patocka <mpatocka@redhat.com> wrote:
>
>
> On Thu, 29 Nov 2018, Mike Snitzer wrote:
>
> > On Tue, Nov 27 2018 at 7:42pm -0500,
> > Mikulas Patocka <mpatocka@redhat.com> wrote:
> >
> > > Now when part_round_stats is gone, we can switch to per-cpu in-flight
> > > counters.
> > >
> > > We use the local-atomic type local_t, so that if part_inc_in_flight or
> > > part_dec_in_flight is reentrantly called from an interrupt, the value will
> > > be correct.
> > >
> > > The other counters could be corrupted due to reentrant interrupt, but the
> > > corruption only results in slight counter skew - the in_flight counter
> > > must be exact, so it needs local_t.
> > >
> > > Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
> > >
> > > ---
> > > block/bio.c | 4 ++--
> > > block/blk-core.c | 4 ++--
> > > block/blk-merge.c | 2 +-
> > > block/genhd.c | 47 +++++++++++++++++++++++++++++++++++------------
> > > drivers/md/dm.c | 4 +---
> > > include/linux/genhd.h | 7 ++++---
> > > 6 files changed, 45 insertions(+), 23 deletions(-)
> > >
> > ...
> > > Index: linux-block/drivers/md/dm.c
> > > ===================================================================
> > > --- linux-block.orig/drivers/md/dm.c 2018-11-28 00:09:59.000000000 +0100
> > > +++ linux-block/drivers/md/dm.c 2018-11-28 00:09:59.000000000 +0100
> > > @@ -663,8 +663,7 @@ static void start_io_acct(struct dm_io *
> > > generic_start_io_acct(md->queue, bio_op(bio), bio_sectors(bio),
> > > &dm_disk(md)->part0);
> > >
> > > - atomic_set(&dm_disk(md)->part0.in_flight[rw],
> > > - atomic_inc_return(&md->pending[rw]));
> > > + atomic_inc(&md->pending[rw]);
> > >
> > > if (unlikely(dm_stats_used(&md->stats)))
> > > dm_stats_account_io(&md->stats, bio_data_dir(bio),
> > > @@ -693,7 +692,6 @@ static void end_io_acct(struct dm_io *io
> > > * a flush.
> > > */
> > > pending = atomic_dec_return(&md->pending[rw]);
> > > - atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
> > > pending += atomic_read(&md->pending[rw^0x1]);
> > >
> > > /* nudge anyone waiting on suspend queue */
> > >
> >
> >
> > These dm.c hunks conflict with changes from you that I already staged in
> > dm-4.21, see:
> >
> > https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git/commit/?h=dm-4.21&id=b5616f7a11592cc74860f4ec3e3c4fba6688eefa
> > https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git/commit/?h=dm-4.21&id=78f95b53c203c969bbe6b86e405f7a891a43b6be
> >
> > I'd really like to get away from DM maintaining its own ->pending
> > counters.
> >
> > Mike
>
> I know.
>
> It depends on whether Jens takes these patches or not. If he doesn't take
> them, dm will use percpu counters on its own and it will return zero in
> the "/sys/block/dm-*/inflight" file.
I see, yeah, I could easily rebase the changes I referenced.
I had a quick look at your proposed changes, they seem pretty clean to
me. The fact that disk_stats is already percpu for other counters makes
this change straight forward.
But I'll review closer.
Mike
WARNING: multiple messages have this Message-ID (diff)
From: Mike Snitzer <snitzer@redhat.com>
To: Mikulas Patocka <mpatocka@redhat.com>
Cc: Jens Axboe <axboe@kernel.dk>,
dm-devel@redhat.com, linux-block@vger.kernel.org,
"Alasdair G. Kergon" <agk@redhat.com>,
Christoph Hellwig <hch@infradead.org>
Subject: Re: [PATCH 2/3] block: switch to per-cpu in-flight counters
Date: Thu, 29 Nov 2018 19:21:48 -0500 [thread overview]
Message-ID: <20181130002148.GA10015@redhat.com> (raw)
In-Reply-To: <alpine.LRH.2.02.1811291701430.9428@file01.intranet.prod.int.rdu2.redhat.com>
On Thu, Nov 29 2018 at 5:05pm -0500,
Mikulas Patocka <mpatocka@redhat.com> wrote:
>
>
> On Thu, 29 Nov 2018, Mike Snitzer wrote:
>
> > On Tue, Nov 27 2018 at 7:42pm -0500,
> > Mikulas Patocka <mpatocka@redhat.com> wrote:
> >
> > > Now when part_round_stats is gone, we can switch to per-cpu in-flight
> > > counters.
> > >
> > > We use the local-atomic type local_t, so that if part_inc_in_flight or
> > > part_dec_in_flight is reentrantly called from an interrupt, the value will
> > > be correct.
> > >
> > > The other counters could be corrupted due to reentrant interrupt, but the
> > > corruption only results in slight counter skew - the in_flight counter
> > > must be exact, so it needs local_t.
> > >
> > > Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
> > >
> > > ---
> > > block/bio.c | 4 ++--
> > > block/blk-core.c | 4 ++--
> > > block/blk-merge.c | 2 +-
> > > block/genhd.c | 47 +++++++++++++++++++++++++++++++++++------------
> > > drivers/md/dm.c | 4 +---
> > > include/linux/genhd.h | 7 ++++---
> > > 6 files changed, 45 insertions(+), 23 deletions(-)
> > >
> > ...
> > > Index: linux-block/drivers/md/dm.c
> > > ===================================================================
> > > --- linux-block.orig/drivers/md/dm.c 2018-11-28 00:09:59.000000000 +0100
> > > +++ linux-block/drivers/md/dm.c 2018-11-28 00:09:59.000000000 +0100
> > > @@ -663,8 +663,7 @@ static void start_io_acct(struct dm_io *
> > > generic_start_io_acct(md->queue, bio_op(bio), bio_sectors(bio),
> > > &dm_disk(md)->part0);
> > >
> > > - atomic_set(&dm_disk(md)->part0.in_flight[rw],
> > > - atomic_inc_return(&md->pending[rw]));
> > > + atomic_inc(&md->pending[rw]);
> > >
> > > if (unlikely(dm_stats_used(&md->stats)))
> > > dm_stats_account_io(&md->stats, bio_data_dir(bio),
> > > @@ -693,7 +692,6 @@ static void end_io_acct(struct dm_io *io
> > > * a flush.
> > > */
> > > pending = atomic_dec_return(&md->pending[rw]);
> > > - atomic_set(&dm_disk(md)->part0.in_flight[rw], pending);
> > > pending += atomic_read(&md->pending[rw^0x1]);
> > >
> > > /* nudge anyone waiting on suspend queue */
> > >
> >
> >
> > These dm.c hunks conflict with changes from you that I already staged in
> > dm-4.21, see:
> >
> > https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git/commit/?h=dm-4.21&id=b5616f7a11592cc74860f4ec3e3c4fba6688eefa
> > https://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git/commit/?h=dm-4.21&id=78f95b53c203c969bbe6b86e405f7a891a43b6be
> >
> > I'd really like to get away from DM maintaining its own ->pending
> > counters.
> >
> > Mike
>
> I know.
>
> It depends on whether Jens takes these patches or not. If he doesn't take
> them, dm will use percpu counters on its own and it will return zero in
> the "/sys/block/dm-*/inflight" file.
I see, yeah, I could easily rebase the changes I referenced.
I had a quick look at your proposed changes, they seem pretty clean to
me. The fact that disk_stats is already percpu for other counters makes
this change straight forward.
But I'll review closer.
Mike
next prev parent reply other threads:[~2018-11-30 0:21 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-28 0:42 [PATCH 2/3] block: switch to per-cpu in-flight counters Mikulas Patocka
2018-11-28 0:42 ` Mikulas Patocka
2018-11-29 21:57 ` Mike Snitzer
2018-11-29 21:57 ` Mike Snitzer
2018-11-29 22:05 ` Mikulas Patocka
2018-11-29 22:05 ` Mikulas Patocka
2018-11-29 22:22 ` Jens Axboe
2018-11-29 22:22 ` Jens Axboe
2018-11-30 0:21 ` Mike Snitzer [this message]
2018-11-30 0:21 ` Mike Snitzer
2018-11-30 21:44 ` Mike Snitzer
2018-11-30 21:44 ` Mike Snitzer
2018-11-30 21:52 ` Jens Axboe
2018-11-30 21:52 ` Jens Axboe
2018-11-30 22:04 ` Mike Snitzer
2018-11-30 22:04 ` Mike Snitzer
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=20181130002148.GA10015@redhat.com \
--to=snitzer@redhat.com \
--cc=agk@redhat.com \
--cc=axboe@kernel.dk \
--cc=dm-devel@redhat.com \
--cc=hch@infradead.org \
--cc=linux-block@vger.kernel.org \
--cc=mpatocka@redhat.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.