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>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 23 Nov 2017 13:08:42 +0000
From:   Ben Hutchings <ben@...adent.org.uk>
To:     Joe Perches <joe@...ches.com>, linux-kernel@...r.kernel.org,
        stable@...r.kernel.org
Cc:     akpm@...ux-foundation.org, Coly Li <colyli@...e.de>,
        Tang Junhui <tang.junhui@....com.cn>,
        Jens Axboe <axboe@...nel.dk>
Subject: Re: [PATCH 3.16 100/133] bcache: correct cache_dirty_target in
 __update_writeback_rate()

On Tue, 2017-11-21 at 19:41 -0800, Joe Perches wrote:
> On Wed, 2017-11-22 at 01:58 +0000, Ben Hutchings wrote:
> > 3.16.51-rc1 review patch.  If anyone has any objections, please let me know.
> 
> []
> > --- a/drivers/md/bcache/writeback.h
> > +++ b/drivers/md/bcache/writeback.h
> > @@ -14,6 +14,25 @@ static inline uint64_t bcache_dev_sector
> >  	return ret;
> >  }
> >  
> > +static inline uint64_t  bcache_flash_devs_sectors_dirty(struct cache_set *c)
> > +{
> > +	uint64_t i, ret = 0;
> 
> There's no reason i should be uint64_t
> as nr_uuids is unsigned int.

But this still works, right?  That's a minor issue to deal with
upstream, not in the backport.

Ben.

> > +
> > +	mutex_lock(&bch_register_lock);
> > +
> > +	for (i = 0; i < c->nr_uuids; i++) {
> > +		struct bcache_device *d = c->devices[i];
> > +
> > +		if (!d || !UUID_FLASH_ONLY(&c->uuids[i]))
> > +			continue;
> > +	   ret += bcache_dev_sectors_dirty(d);
> > +	}
> > +
> > +	mutex_unlock(&bch_register_lock);
> > +
> > +	return ret;
> > +}
> > +
> >  static inline unsigned offset_to_stripe(struct bcache_device *d,
> >  					uint64_t offset)
> >  {
> > 
-- 
Ben Hutchings
When in doubt, use brute force. - Ken Thompson


Download attachment "signature.asc" of type "application/pgp-signature" (834 bytes)

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ