diff options
author | Alexander Graf <agraf@suse.de> | 2012-08-20 00:02:52 +0200 |
---|---|---|
committer | hyokeun <hyokeun.jeon@samsung.com> | 2016-09-06 15:55:33 +0900 |
commit | 32e236c0fcbb379aa2c2ac04e1e25e5a0ac0c81c (patch) | |
tree | 0f880586562ef487a92c0ee7d2146add1b58d737 | |
parent | 4b080ad3c69d2ecd6fd971758ef718b15c380a80 (diff) | |
download | qemu-32e236c0fcbb379aa2c2ac04e1e25e5a0ac0c81c.tar.gz qemu-32e236c0fcbb379aa2c2ac04e1e25e5a0ac0c81c.tar.bz2 qemu-32e236c0fcbb379aa2c2ac04e1e25e5a0ac0c81c.zip |
linux-user: implement FS_IOC_GETFLAGS ioctl
Signed-off-by: Alexander Graf <agraf@suse.de>
---
v1 -> v2:
- use TYPE_LONG instead of TYPE_INT
-rw-r--r-- | linux-user/ioctls.h | 1 | ||||
-rw-r--r-- | linux-user/syscall_defs.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/ioctls.h b/linux-user/ioctls.h index cf8851d56..f8589548c 100644 --- a/linux-user/ioctls.h +++ b/linux-user/ioctls.h @@ -119,6 +119,7 @@ IOCTL_SPECIAL(FS_IOC_FIEMAP, IOC_W | IOC_R, do_ioctl_fs_ioc_fiemap, MK_PTR(MK_STRUCT(STRUCT_fiemap))) #endif + IOCTL(FS_IOC_GETFLAGS, IOC_R, 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 b869b3d1c..00a3f305a 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -2502,6 +2502,8 @@ struct target_f_owner_ex { #define TARGET_MTIOCGET TARGET_IOR('m', 2, struct mtget) #define TARGET_MTIOCPOS TARGET_IOR('m', 3, struct mtpos) +#define TARGET_FS_IOC_GETFLAGS TARGET_IORU('f', 1) + struct target_sysinfo { abi_long uptime; /* Seconds since boot */ abi_ulong loads[3]; /* 1, 5, and 15 minute load averages */ |