From: H Hartley Sweeten Date: Tue, 22 Sep 2009 23:48:02 +0000 (-0700) Subject: jbd.h: bitfields should be unsigned X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=4fefce9abaeef0d6ec45e06a882db23a65135272;p=openwrt%2Fstaging%2Fblogic.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 a1187a0c99b4..331530cd3cc6 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; }; /**