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>
This commit is contained in:
parent
9a2296832c
commit
52957fe1c7
@ -42,9 +42,9 @@ struct wb_writeback_args {
|
|||||||
long nr_pages;
|
long nr_pages;
|
||||||
struct super_block *sb;
|
struct super_block *sb;
|
||||||
enum writeback_sync_modes sync_mode;
|
enum writeback_sync_modes sync_mode;
|
||||||
int for_kupdate:1;
|
unsigned int for_kupdate:1;
|
||||||
int range_cyclic:1;
|
unsigned int range_cyclic:1;
|
||||||
int for_background:1;
|
unsigned int for_background:1;
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user