From: H Hartley Sweeten Date: Tue, 22 Sep 2009 23:48:02 +0000 (-0700) Subject: jbd.h: bitfields should be unsigned X-Git-Tag: v2.6.32-rc1~180 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=4fefce9abaeef0d6ec45e06a882db23a65135272;p=~emulex%2Finfiniband.git 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 Cc: Jan Kara Cc: Theodore Ts'o Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/include/linux/jbd.h b/include/linux/jbd.h index a1187a0c99b..331530cd3cc 100644 --- a/include/linux/jbd.h +++ b/include/linux/jbd.h @@ -556,7 +556,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; }; /**