5819c49528
Adjust for recently fixed acpica package, Do a better? work around for roms/Makefile issue. Rework changes file for suitability for openSUSE:Factory checkin. OBS-URL: https://build.opensuse.org/request/show/210801 OBS-URL: https://build.opensuse.org/package/show/Virtualization/qemu?expand=0&rev=170
27 lines
825 B
Diff
27 lines
825 B
Diff
From e903c77c77f6c01a73de3f0df4668c692ad409a1 Mon Sep 17 00:00:00 2001
|
|
From: Alexander Graf <agraf@suse.de>
|
|
Date: Tue, 21 Aug 2012 14:20:40 +0200
|
|
Subject: [PATCH] linux-user: XXX disable fiemap
|
|
|
|
agraf: fiemap breaks in libarchive. Disable it for now.
|
|
---
|
|
linux-user/syscall.c | 5 +++++
|
|
1 files changed, 5 insertions(+), 0 deletions(-)
|
|
|
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
|
index e678f9b..7fc61fe 100644
|
|
--- a/linux-user/syscall.c
|
|
+++ b/linux-user/syscall.c
|
|
@@ -3289,6 +3289,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++;
|