The patch titled Subject: fs/nfs/nfs4state.c: work around gcc-4.4 anon union initialization bug has been removed from the -mm tree. Its filename was fs-nfs-nfs4statec-work-around-gcc-44-union-initialization-bug.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> Subject: fs/nfs/nfs4state.c: work around gcc-4.4 anon union initialization bug fs/nfs/nfs4state.c:69: error: unknown field 'data' specified in initializer fs/nfs/nfs4state.c:69: warning: missing braces around initializer fs/nfs/nfs4state.c:69: warning: (near initialization for 'zero_stateid.<anonymous>.data') Old gcc is stupid but the fix is easy enough. Cc: Trond Myklebust <trondmy@xxxxxxxxxxxxxxx> Cc: NeilBrown <neilb@xxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/nfs/nfs4state.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff -puN fs/nfs/nfs4state.c~fs-nfs-nfs4statec-work-around-gcc-44-union-initialization-bug fs/nfs/nfs4state.c --- a/fs/nfs/nfs4state.c~fs-nfs-nfs4statec-work-around-gcc-44-union-initialization-bug +++ a/fs/nfs/nfs4state.c @@ -66,7 +66,9 @@ #define OPENOWNER_POOL_SIZE 8 const nfs4_stateid zero_stateid = { - .data = { 0 }, + { + .data = { 0 }, + }, .type = NFS4_SPECIAL_STATEID_TYPE, }; static DEFINE_MUTEX(nfs_clid_init_mutex); _ Patches currently in -mm which might be from akpm@xxxxxxxxxxxxxxxxxxxx are i-need-old-gcc.patch arch-alpha-kernel-systblss-remove-debug-check.patch mm-fix-overflow-in-vm_map_ram-fix.patch arm-arch-arm-include-asm-pageh-needs-personalityh.patch mm.patch mm-thp-avoid-unnecessary-swapin-in-khugepaged-fix.patch drivers-net-wireless-intel-iwlwifi-dvm-calibc-fix-min-warning.patch kernel-forkc-export-kernel_thread-to-modules.patch slab-leaks3-default-y.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