The patch titled jbd2.h: bitfields should be unsigned has been removed from the -mm tree. Its filename was jbd2h-bitfields-should-be-unsigned.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: jbd2.h: bitfields should be unsigned From: H Hartley Sweeten <hartleys@xxxxxxxxxxxxxxxxxxx> bitfields should be unsigned. This fixes sparse noise: error: dubious one-bit signed bitfield Signed-off-by: H Hartley Sweeten <hsweeten@xxxxxxxxxxxxxxxxxxx> Cc: Theodore Ts'o <tytso@xxxxxxx> Cc: Jan Kara <jack@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/jbd2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN include/linux/jbd.h~jbd2h-bitfields-should-be-unsigned include/linux/jbd.h diff -puN include/linux/jbd2.h~jbd2h-bitfields-should-be-unsigned include/linux/jbd2.h --- a/include/linux/jbd2.h~jbd2h-bitfields-should-be-unsigned +++ a/include/linux/jbd2.h @@ -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 _ Patches currently in -mm which might be from hartleys@xxxxxxxxxxxxxxxxxxx are linux-next.patch mtd-sst25l-non-jedec-spi-flash-driver.patch drivers-mtd-mtdcorec-make-symbols-static.patch fs-bufferc-clean-up-export-macros.patch aioc-move-export-macros-to-line-after-function.patch gpio-include-linux-gpioh-not-asm-gpioh.patch atyfb-coding-style-cleanup.patch jbdh-bitfields-should-be-unsigned.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html