diff options
| author | Peter Maydell <peter.maydell@linaro.org> | 2011-01-06 15:04:18 +0000 |
|---|---|---|
| committer | Riku Voipio <riku.voipio@iki.fi> | 2011-01-07 17:20:58 +0200 |
| commit | 285da2b9a83353703d07e141fdb447e82944146c (patch) | |
| tree | 9ecd963d7cf1a6131660e35f6a8a61e31f19361f /linux-user/syscall_defs.h | |
| parent | d2ef05bb44e044e30f779ed9c4882c3c8299350d (diff) | |
| download | focaccia-qemu-285da2b9a83353703d07e141fdb447e82944146c.tar.gz focaccia-qemu-285da2b9a83353703d07e141fdb447e82944146c.zip | |
linux-user: Implement FS_IOC_FIEMAP ioctl
Implement the FS_IOC_FIEMAP ioctl using the new support for custom handling of ioctls; this is needed because the struct that is passed includes a variable-length array. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Riku Voipio <riku.voipio@iki.fi>
Diffstat (limited to 'linux-user/syscall_defs.h')
| -rw-r--r-- | linux-user/syscall_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 20c93d0f7f..d02a9bf401 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -783,6 +783,7 @@ struct target_pollfd { #define TARGET_BLKGETSIZE64 TARGET_IOR(0x12,114,sizeof(uint64_t)) /* return device size in bytes (u64 *arg) */ #define TARGET_FIBMAP TARGET_IO(0x00,1) /* bmap access */ #define TARGET_FIGETBSZ TARGET_IO(0x00,2) /* get the block size used for bmap */ +#define TARGET_FS_IOC_FIEMAP TARGET_IOWR('f',11,struct fiemap) /* cdrom commands */ #define TARGET_CDROMPAUSE 0x5301 /* Pause Audio Operation */ |