Commit 4fefce9abaeef0d6ec45e06a882db23a65135272

Authored by H Hartley Sweeten
Committed by Linus Torvalds
1 parent a4255e4c1c

jbd.h: bitfields should be unsigned

bitfields should be unsigned.

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

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Jan Kara <jack@ucw.cz>
Cc: Theodore Ts'o <tytso@mit.edu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -556,7 +556,7 @@
556 556 * This transaction is being forced and some process is
557 557 * waiting for it to finish.
558 558 */
559   - int t_synchronous_commit:1;
  559 + unsigned int t_synchronous_commit:1;
560 560 };
561 561  
562 562 /**