aboutsummaryrefslogtreecommitdiffstats
path: root/main/qemu/qemu-170-ffsll.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2013-12-24 07:27:14 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2013-12-24 07:27:14 +0000
commite15025edfb66f893149545ea8e9ffd7b108b1520 (patch)
tree0592d9a3d1f2386040f4d1b4938673f97aec396e /main/qemu/qemu-170-ffsll.patch
parentc64a85a1743c3c3f95c04b1fe6b56404c72a0937 (diff)
downloadaports-e15025edfb66f893149545ea8e9ffd7b108b1520.tar.bz2
aports-e15025edfb66f893149545ea8e9ffd7b108b1520.tar.xz
Revert "main/qemu: musl build fix"
Diffstat (limited to 'main/qemu/qemu-170-ffsll.patch')
-rw-r--r--main/qemu/qemu-170-ffsll.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/main/qemu/qemu-170-ffsll.patch b/main/qemu/qemu-170-ffsll.patch
deleted file mode 100644
index c5a66426b9..0000000000
--- a/main/qemu/qemu-170-ffsll.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- qemu-1.7.0.org/hw/virtio/vhost.c
-+++ qemu-1.7.0/hw/virtio/vhost.c
-@@ -22,6 +22,15 @@
- #include "exec/address-spaces.h"
- #include "hw/virtio/virtio-bus.h"
-
-+#ifndef HAVE_FFSLL
-+static int ffsll(long long i) {
-+ unsigned long long x = i & -i;
-+ if (x <= 0xffffffff) return ffs (i);
-+ else return 32 + ffs (i >> 32);
-+}
-+#endif
-+
-+
- static void vhost_dev_sync_region(struct vhost_dev *dev,
- MemoryRegionSection *section,
- uint64_t mfirst, uint64_t mlast,