From: Ben Hutchings Date: Mon, 31 May 2010 02:50:04 +0000 (-0400) Subject: ext4: Conditionally define compat ioctl numbers X-Git-Tag: firefly_0821_release~10186^2~1303 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=489e65d8ef73c154e1c14eb935081fd7f30a71d9;p=firefly-linux-kernel-4.4.55.git ext4: Conditionally define compat ioctl numbers commit 899ad0cea6ad7ff4ba24b16318edbc3cbbe03fad upstream (as of v2.6.34-git13) It is unnecessary, and in general impossible, to define the compat ioctl numbers except when building the filesystem with CONFIG_COMPAT defined. Signed-off-by: Ben Hutchings Signed-off-by: "Theodore Ts'o" Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/ext4/ext4.h b/fs/ext4/ext4.h index cdec3a5dbdb5..9bc1a338d1f8 100644 --- a/fs/ext4/ext4.h +++ b/fs/ext4/ext4.h @@ -462,6 +462,7 @@ struct ext4_new_group_data { #define EXT4_IOC_ALLOC_DA_BLKS _IO('f', 12) #define EXT4_IOC_MOVE_EXT _IOWR('f', 15, struct move_extent) +#if defined(__KERNEL__) && defined(CONFIG_COMPAT) /* * ioctl commands in 32 bit emulation */ @@ -477,6 +478,7 @@ struct ext4_new_group_data { #endif #define EXT4_IOC32_GETVERSION_OLD FS_IOC32_GETVERSION #define EXT4_IOC32_SETVERSION_OLD FS_IOC32_SETVERSION +#endif /*