summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2012-08-20 00:07:13 +0200
committerhyokeun <hyokeun.jeon@samsung.com>2016-09-06 15:55:33 +0900
commit12e044ebe52e91163b225b03e20827df5f84fd3b (patch)
treef7e957d9c4f9744bb1f5c059bd3a8119c8608df8
parent32e236c0fcbb379aa2c2ac04e1e25e5a0ac0c81c (diff)
downloadqemu-12e044ebe52e91163b225b03e20827df5f84fd3b.tar.gz
qemu-12e044ebe52e91163b225b03e20827df5f84fd3b.tar.bz2
qemu-12e044ebe52e91163b225b03e20827df5f84fd3b.zip
linux-user: implement FS_IOC_SETFLAGS ioctl
Signed-off-by: Alexander Graf <agraf@suse.de> --- v1 -> v2 - use TYPE_LONG instead of TYPE_INT
-rw-r--r--linux-user/ioctls.h1
-rw-r--r--linux-user/syscall_defs.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/ioctls.h b/linux-user/ioctls.h
index f8589548c..8a5be00ae 100644
--- a/linux-user/ioctls.h
+++ b/linux-user/ioctls.h
@@ -120,6 +120,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, IOC_R, MK_PTR(TYPE_INT))
IOCTL(SIOCGIFNAME, IOC_RW, MK_PTR(TYPE_INT))
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
index 00a3f305a..d31541d7d 100644
--- a/linux-user/syscall_defs.h
+++ b/linux-user/syscall_defs.h
@@ -2503,6 +2503,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 */