Re: [PATCH v9 3/7] mce: fix set_mce_nospec to always unmap the whole page

2022-05-12 Thread Dan Williams
On Wed, May 11, 2022 at 10:17 AM Luck, Tony wrote: > > > I - just like you - am waiting for Tony to say whether he still needs > > this whole_page() thing. I already suggested removing it so I'm fine > > with this patch. > > IIRC this new patch effectively reverts back to the original behavior tha

Re: [dm-devel] [PATCH v3 1/3] dm: Add verity helpers for LoadPin

2022-05-12 Thread Matthias Kaehlcke
On Thu, May 12, 2022 at 01:19:12PM -0400, Mike Snitzer wrote: > On Wed, May 11 2022 at 4:54P -0400, > Matthias Kaehlcke wrote: > > > Alasdar/Mike, I'd be interested in your take on adding these functions > > to verity/DM, to get an idea whether this series has a path forward to > > landing upstr

Re: [dm-devel] [PATCH v3 1/3] dm: Add verity helpers for LoadPin

2022-05-12 Thread Matthias Kaehlcke
Hi Mike, On Thu, May 12, 2022 at 01:19:12PM -0400, Mike Snitzer wrote: > On Wed, May 11 2022 at 4:54P -0400, > Matthias Kaehlcke wrote: > > > Alasdar/Mike, I'd be interested in your take on adding these functions > > to verity/DM, to get an idea whether this series has a path forward to > > lan

Re: [dm-devel] [PATCH v3 10/11] null_blk: allow non power of 2 zoned devices

2022-05-12 Thread Bart Van Assche
On 5/9/22 04:56, Pankaj Raghav wrote: Even though I am not sure if this optimization will directly add value looking at my experiments with the current change, I can fold this in with a comment on top of zone_size_sect_shifts variable stating that size can be npo2 and this variable is only meanin

Re: [dm-devel] [PATCH v3 1/3] dm: Add verity helpers for LoadPin

2022-05-12 Thread Mike Snitzer
On Wed, May 11 2022 at 4:54P -0400, Matthias Kaehlcke wrote: > Alasdar/Mike, I'd be interested in your take on adding these functions > to verity/DM, to get an idea whether this series has a path forward to > landing upstream. I'll be reviewing your patchset now. Comments inlined below. > On W

Re: [dm-devel] kernel BUG at drivers/md/dm-bufio.c:1155!

2022-05-12 Thread Marc Smith
On Wed, May 4, 2022 at 1:50 PM Marc Smith wrote: > > On Mon, May 2, 2022 at 2:03 PM Marc Smith wrote: > > > > Hi, > > > > I'm using Linux 5.4.190 (kernel.org) with 'lvmcache' (LVM2 version > > 2.03.14). I use dm-cache (in write-back mode) and dm-writecache, both > > via lvmcache for several logic

Re: [dm-devel] [PATCH v3 11/11] dm-zoned: ensure only power of 2 zone sizes are allowed

2022-05-12 Thread Pankaj Raghav
+ zone_sectors = bdev_zone_sectors(bdev); + + if (!is_power_of_2(zone_sectors)) { >>> >>> is_power_of_2 takes 'unsigned long' and sector_t is u64, so this is not >>> 32bit clean and we had an actual bug where value 1<<48 was not >>> recognized as power of 2. >>> >> Good catch. Now