Skip to content

Commit

Permalink
jbd2: bitfields should be unsigned
Browse files Browse the repository at this point in the history
This fixes sparse noise:
  error: dubious one-bit signed bitfield

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Cc: Jan Kara <jack@ucw.cz>
  • Loading branch information
H Hartley Sweeten authored and Theodore Ts'o committed Aug 18, 2009
1 parent 487caee commit 0ccff1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/jbd2.h
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ struct transaction_s
* This transaction is being forced and some process is
* waiting for it to finish.
*/
int t_synchronous_commit:1;
unsigned int t_synchronous_commit:1;

/*
* For use by the filesystem to store fs-specific data
Expand Down

0 comments on commit 0ccff1a

Please sign in to comment.