lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [day] [month] [year] [list]
Date:	Sun, 23 Nov 2014 20:48:06 -0800
From:	Kent Overstreet <kmo@...erainc.com>
To:	Gu Zheng <guz.fnst@...fujitsu.com>
Cc:	axboe@...nel.dk, akpm@...ux-foundation.org, dm-devel@...hat.com,
	linux-kernel@...r.kernel.org, linux-nvme@...ts.infradead.org,
	drbd-user@...ts.linbit.com
Subject: Re: [PATCH 3/6] md/bcache: use generic io stats accounting functions
 to simplify io stat accounting

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@...fujitsu.com>

Cool!

Acked-by: Kent Overstreet <kmo@...era.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
> 
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists