From: Alexander Graf Date: Tue, 21 Aug 2012 12:20:40 +0000 (+0200) Subject: linux-user: XXX disable fiemap X-Git-Tag: accepted/tizen/common/20141030.230811~23 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=83b40ed9e75520467ccaf3d0c106632292ef2ef4;p=platform%2Fupstream%2Fqemu.git linux-user: XXX disable fiemap agraf: fiemap breaks in libarchive. Disable it for now. --- diff --git a/linux-user/syscall.c b/linux-user/syscall.c index ce1054c..f00b082 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -3272,6 +3272,11 @@ static abi_long do_ioctl_fs_ioc_fiemap(const IOCTLEntry *ie, uint8_t *buf_temp, uint32_t outbufsz; int free_fm = 0; + if (1) { + /* XXX agraf: fiemap breaks for me */ + return -TARGET_EINVAL; + } + assert(arg_type[0] == TYPE_PTR); assert(ie->access == IOC_RW); arg_type++;