Re: [PATCH][next] treewide: uapi: Replace zero-length arrays with flexible-array members

2022-06-28 Thread Geert Uytterhoeven
d for compiling userspace. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "prog

Re: [dm-devel] [PATCH 19/26] nfblock: convert to blk_alloc_disk/blk_cleanup_disk

2021-05-21 Thread Geert Uytterhoeven
On Fri, May 21, 2021 at 7:52 AM Christoph Hellwig wrote: > Convert the nfblock driver to use the blk_alloc_disk and blk_cleanup_disk > helpers to simplify gendisk and request_queue allocation. > > Signed-off-by: Christoph Hellwig Acked-by: Geert Uytterhoeven Gr{oe

[dm-devel] [PATCH trivial] dm crypt: Spelling s/cihper/cipher/

2021-01-04 Thread Geert Uytterhoeven
Fix a misspelling of "cipher". Signed-off-by: Geert Uytterhoeven --- drivers/md/dm-crypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/md/dm-crypt.c b/drivers/md/dm-crypt.c index 392337f16ecfd87f..3e6a06c93865e311 100644 --- a/drivers/md/dm-crypt.c +++

Re: [dm-devel] [PATCH 000/141] Fix fall-through warnings for Clang

2020-11-29 Thread Geert Uytterhoeven
sed uninitialized" warnings thrown up by gcc-4.1, until (a bit later than) support for that compiler was removed... Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal con

Re: [dm-devel] PROBLEM: 5.9.0-rc6 fails to compile due to 'redefinition of ‘dax_supported’'

2020-09-21 Thread Geert Uytterhoeven
> > > > > > > arm and mips allmodconfig build breaks due to this error. > > > > all my local builds are breaking now too with this :( > > > > Was there a proposed patch anywhere for this? > > Attached patch should fix the build breakage. I&#x

Re: [dm-devel] [PATCH 01/20] nfblock: stop using ->queuedata

2020-06-29 Thread Geert Uytterhoeven
On Mon, Jun 29, 2020 at 9:40 PM Christoph Hellwig wrote: > Instead of setting up the queuedata as well just use one private data > field. > > Signed-off-by: Christoph Hellwig Reviewed-by: Geert Uytterhoeven Acked-by: Geert Uytterhoeven Gr{oetje,eeting}s,

[dm-devel] [PATCH] docs: device-mapper: Add dm-clone to documentation index

2019-11-28 Thread Geert Uytterhoeven
one target") Signed-off-by: Geert Uytterhoeven --- Documentation/admin-guide/device-mapper/index.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/admin-guide/device-mapper/index.rst b/Documentation/admin-guide/device-mapper/index.rst index 4872fb6d29524593..ec62fcc8eeceed

Re: [dm-devel] [RESEND TRIVIAL 3/3] treewide: arch: Fix Kconfig indentation

2019-10-07 Thread Geert Uytterhoeven
ig.bus | 2 +- > arch/m68k/Kconfig.debug| 16 > arch/m68k/Kconfig.machine | 8 ++++ For m68k: Acked-by: Geert Uytterhoeven Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Li

[dm-devel] [PATCH] dm raid: Remove bogus const from decipher_sync_action() return type

2018-09-17 Thread Geert Uytterhoeven
With gcc-4.1.2: drivers/md/dm-raid.c:3357: warning: type qualifiers ignored on function return type Remove the "const" keyword to fix this. Fixes: 36a240a706d43383 ("dm raid: fix RAID leg rebuild errors") Signed-off-by: Geert Uytterhoeven --- drivers/md/dm-raid.c |

[dm-devel] [PATCH] dm raid: don't use 'const' in function return

2018-06-22 Thread Geert Uytterhoeven
n type to plain 'int'. Signed-off-by: Arnd Bergmann Fixes: 33e53f06850f ("dm raid: introduce extended superblock and new raid types to support takeover/reshaping") Signed-off-by: Mike Snitzer Fixes: 552aa679f2657431 ("dm raid: use rs_is_raid*()") Signed-off-by: Geert Uyt

Re: [dm-devel] [PATCH] dm raid: don't use 'const' in function return

2018-02-01 Thread Geert Uytterhoeven
rn type [-Werror=ignored-qualifiers] > > This changes the return type to plain 'int'. > > Signed-off-by: Arnd Bergmann > Fixes: 33e53f06850f ("dm raid: introduce extended superblock and new raid > types to support takeover/reshaping") Acked-by: Geert Uytt