Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

fs-writeback.c: bitfields should be unsigned

This fixes sparse noise:
error: dubious one-bit signed bitfield

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Alexander Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>

authored by

H Hartley Sweeten and committed by
Al Viro
52957fe1 9a229683

+3 -3
+3 -3
fs/fs-writeback.c
··· 42 42 long nr_pages; 43 43 struct super_block *sb; 44 44 enum writeback_sync_modes sync_mode; 45 - int for_kupdate:1; 46 - int range_cyclic:1; 47 - int for_background:1; 45 + unsigned int for_kupdate:1; 46 + unsigned int range_cyclic:1; 47 + unsigned int for_background:1; 48 48 }; 49 49 50 50 /*