From: Kent Overstreet <kmo@daterainc.com>
To: Gu Zheng <guz.fnst@cn.fujitsu.com>
Cc: axboe@kernel.dk, akpm@linux-foundation.org, dm-devel@redhat.com,
linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org,
drbd-user@lists.linbit.com
Subject: Re: [PATCH 3/6] md/bcache: use generic io stats accounting functions to simplify io stat accounting
Date: Sun, 23 Nov 2014 20:48:06 -0800 [thread overview]
Message-ID: <20141124044806.GA22025@kmo-pixel> (raw)
In-Reply-To: <1416798327-12817-4-git-send-email-guz.fnst@cn.fujitsu.com>
On Mon, Nov 24, 2014 at 11:05:24AM +0800, Gu Zheng wrote:
> Use generic io stats accounting help functions (generic_{start,end}_io_acct)
> to simplify io stat accounting.
>
> Signed-off-by: Gu Zheng <guz.fnst@cn.fujitsu.com>
Cool!
Acked-by: Kent Overstreet <kmo@datera.io>
> ---
> drivers/md/bcache/request.c | 23 ++++++-----------------
> 1 files changed, 6 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c
> index 62e6e98..ab43fad 100644
> --- a/drivers/md/bcache/request.c
> +++ b/drivers/md/bcache/request.c
> @@ -601,13 +601,8 @@ static void request_endio(struct bio *bio, int error)
> static void bio_complete(struct search *s)
> {
> if (s->orig_bio) {
> - int cpu, rw = bio_data_dir(s->orig_bio);
> - unsigned long duration = jiffies - s->start_time;
> -
> - cpu = part_stat_lock();
> - part_round_stats(cpu, &s->d->disk->part0);
> - part_stat_add(cpu, &s->d->disk->part0, ticks[rw], duration);
> - part_stat_unlock();
> + generic_end_io_acct(bio_data_dir(s->orig_bio),
> + &s->d->disk->part0, s->start_time);
>
> trace_bcache_request_end(s->d, s->orig_bio);
> bio_endio(s->orig_bio, s->iop.error);
> @@ -959,12 +954,9 @@ static void cached_dev_make_request(struct request_queue *q, struct bio *bio)
> struct search *s;
> struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
> struct cached_dev *dc = container_of(d, struct cached_dev, disk);
> - int cpu, rw = bio_data_dir(bio);
> + int rw = bio_data_dir(bio);
>
> - cpu = part_stat_lock();
> - part_stat_inc(cpu, &d->disk->part0, ios[rw]);
> - part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
> - part_stat_unlock();
> + generic_start_io_acct(rw, bio_sectors(bio), &d->disk->part0);
>
> bio->bi_bdev = dc->bdev;
> bio->bi_iter.bi_sector += dc->sb.data_offset;
> @@ -1074,12 +1066,9 @@ static void flash_dev_make_request(struct request_queue *q, struct bio *bio)
> struct search *s;
> struct closure *cl;
> struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
> - int cpu, rw = bio_data_dir(bio);
> + int rw = bio_data_dir(bio);
>
> - cpu = part_stat_lock();
> - part_stat_inc(cpu, &d->disk->part0, ios[rw]);
> - part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
> - part_stat_unlock();
> + generic_start_io_acct(rw, bio_sectors(bio), &d->disk->part0);
>
> s = search_alloc(bio, d);
> cl = &s->cl;
> --
> 1.7.7
>
WARNING: multiple messages have this Message-ID (diff)
From: kmo@daterainc.com (Kent Overstreet)
Subject: [PATCH 3/6] md/bcache: use generic io stats accounting functions to simplify io stat accounting
Date: Sun, 23 Nov 2014 20:48:06 -0800 [thread overview]
Message-ID: <20141124044806.GA22025@kmo-pixel> (raw)
In-Reply-To: <1416798327-12817-4-git-send-email-guz.fnst@cn.fujitsu.com>
On Mon, Nov 24, 2014@11:05:24AM +0800, Gu Zheng wrote:
> Use generic io stats accounting help functions (generic_{start,end}_io_acct)
> to simplify io stat accounting.
>
> Signed-off-by: Gu Zheng <guz.fnst at cn.fujitsu.com>
Cool!
Acked-by: Kent Overstreet <kmo at datera.io>
> ---
> drivers/md/bcache/request.c | 23 ++++++-----------------
> 1 files changed, 6 insertions(+), 17 deletions(-)
>
> diff --git a/drivers/md/bcache/request.c b/drivers/md/bcache/request.c
> index 62e6e98..ab43fad 100644
> --- a/drivers/md/bcache/request.c
> +++ b/drivers/md/bcache/request.c
> @@ -601,13 +601,8 @@ static void request_endio(struct bio *bio, int error)
> static void bio_complete(struct search *s)
> {
> if (s->orig_bio) {
> - int cpu, rw = bio_data_dir(s->orig_bio);
> - unsigned long duration = jiffies - s->start_time;
> -
> - cpu = part_stat_lock();
> - part_round_stats(cpu, &s->d->disk->part0);
> - part_stat_add(cpu, &s->d->disk->part0, ticks[rw], duration);
> - part_stat_unlock();
> + generic_end_io_acct(bio_data_dir(s->orig_bio),
> + &s->d->disk->part0, s->start_time);
>
> trace_bcache_request_end(s->d, s->orig_bio);
> bio_endio(s->orig_bio, s->iop.error);
> @@ -959,12 +954,9 @@ static void cached_dev_make_request(struct request_queue *q, struct bio *bio)
> struct search *s;
> struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
> struct cached_dev *dc = container_of(d, struct cached_dev, disk);
> - int cpu, rw = bio_data_dir(bio);
> + int rw = bio_data_dir(bio);
>
> - cpu = part_stat_lock();
> - part_stat_inc(cpu, &d->disk->part0, ios[rw]);
> - part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
> - part_stat_unlock();
> + generic_start_io_acct(rw, bio_sectors(bio), &d->disk->part0);
>
> bio->bi_bdev = dc->bdev;
> bio->bi_iter.bi_sector += dc->sb.data_offset;
> @@ -1074,12 +1066,9 @@ static void flash_dev_make_request(struct request_queue *q, struct bio *bio)
> struct search *s;
> struct closure *cl;
> struct bcache_device *d = bio->bi_bdev->bd_disk->private_data;
> - int cpu, rw = bio_data_dir(bio);
> + int rw = bio_data_dir(bio);
>
> - cpu = part_stat_lock();
> - part_stat_inc(cpu, &d->disk->part0, ios[rw]);
> - part_stat_add(cpu, &d->disk->part0, sectors[rw], bio_sectors(bio));
> - part_stat_unlock();
> + generic_start_io_acct(rw, bio_sectors(bio), &d->disk->part0);
>
> s = search_alloc(bio, d);
> cl = &s->cl;
> --
> 1.7.7
>
next parent reply other threads:[~2014-11-24 4:48 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <1416798327-12817-1-git-send-email-guz.fnst@cn.fujitsu.com>
[not found] ` <1416798327-12817-4-git-send-email-guz.fnst@cn.fujitsu.com>
2014-11-24 4:48 ` Kent Overstreet [this message]
2014-11-24 4:48 ` [PATCH 3/6] md/bcache: use generic io stats accounting functions to simplify io stat accounting Kent Overstreet
2014-11-24 15:03 ` [PATCH 0/6] blk: introduce generic io stat accounting help function Jens Axboe
2014-11-24 15:03 ` Jens Axboe
2014-11-25 4:48 ` Gu Zheng
2014-11-25 4:48 ` Gu Zheng
2014-11-25 4:48 ` Gu Zheng
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=20141124044806.GA22025@kmo-pixel \
--to=kmo@daterainc.com \
--cc=akpm@linux-foundation.org \
--cc=axboe@kernel.dk \
--cc=dm-devel@redhat.com \
--cc=drbd-user@lists.linbit.com \
--cc=guz.fnst@cn.fujitsu.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvme@lists.infradead.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.