diff mbox series

ext4: Add EXT4_IOC_FSGETXATTR/EXT4_IOC_FSSETXATTR to compat_ioctl.

Message ID 20191227134639.35869-1-maco@android.com
State Accepted
Headers show
Series ext4: Add EXT4_IOC_FSGETXATTR/EXT4_IOC_FSSETXATTR to compat_ioctl. | expand

Commit Message

Martijn Coenen Dec. 27, 2019, 1:46 p.m. UTC
These are backed by 'struct fsxattr' which has the same size on all
architectures.

Signed-off-by: Martijn Coenen <maco@android.com>
---
 fs/ext4/ioctl.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

Theodore Ts'o Jan. 13, 2020, 11:33 p.m. UTC | #1
On Fri, Dec 27, 2019 at 02:46:39PM +0100, Martijn Coenen wrote:
> These are backed by 'struct fsxattr' which has the same size on all
> architectures.
> 
> Signed-off-by: Martijn Coenen <maco@android.com>

Thanks, applied.

						- Ted
diff mbox series

Patch

diff --git a/fs/ext4/ioctl.c b/fs/ext4/ioctl.c
index e8870fff8224..a0ec750018dd 100644
--- a/fs/ext4/ioctl.c
+++ b/fs/ext4/ioctl.c
@@ -1377,6 +1377,8 @@  long ext4_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
 	case EXT4_IOC_CLEAR_ES_CACHE:
 	case EXT4_IOC_GETSTATE:
 	case EXT4_IOC_GET_ES_CACHE:
+	case EXT4_IOC_FSGETXATTR:
+	case EXT4_IOC_FSSETXATTR:
 		break;
 	default:
 		return -ENOIOCTLCMD;