diff options
author | Alexander Graf <agraf@suse.de> | 2012-08-20 00:07:13 +0200 |
---|---|---|
committer | Yury Usishchev <y.usishchev@samsung.com> | 2014-12-10 13:48:35 +0300 |
commit | f1284f00208710598b2c640bed8d519c8da61c8b (patch) | |
tree | 52e1d4aa5542417add9349d64d414bfabd1a4e6e | |
parent | b19331b5cc7f604deb2e64ef5b22288dc3613166 (diff) | |
download | qemu-f1284f00208710598b2c640bed8d519c8da61c8b.tar.gz qemu-f1284f00208710598b2c640bed8d519c8da61c8b.tar.bz2 qemu-f1284f00208710598b2c640bed8d519c8da61c8b.zip |
linux-user: implement FS_IOC_SETFLAGS ioctl
Signed-off-by: Alexander Graf <agraf@suse.de>
-rw-r--r-- | linux-user/ioctls.h | 1 | ||||
-rw-r--r-- | linux-user/syscall_defs.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/ioctls.h b/linux-user/ioctls.h index 8650a7023..f9f7c8378 100644 --- a/linux-user/ioctls.h +++ b/linux-user/ioctls.h @@ -91,6 +91,7 @@ MK_PTR(MK_STRUCT(STRUCT_fiemap))) #endif IOCTL(FS_IOC_GETFLAGS, IOC_R, MK_PTR(TYPE_LONG)) + IOCTL(FS_IOC_SETFLAGS, IOC_W, MK_PTR(TYPE_LONG)) IOCTL(SIOCATMARK, 0, TYPE_NULL) IOCTL(SIOCGIFNAME, IOC_RW, MK_PTR(TYPE_INT)) diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index be03d907c..f750d4c21 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -2478,6 +2478,7 @@ struct target_f_owner_ex { #define TARGET_MTIOCPOS TARGET_IOR('m', 3, struct mtpos) #define TARGET_FS_IOC_GETFLAGS TARGET_IORU('f', 1) +#define TARGET_FS_IOC_SETFLAGS TARGET_IOWU('f', 2) struct target_sysinfo { abi_long uptime; /* Seconds since boot */ |