aboutsummaryrefslogtreecommitdiff
blob: 481bd72c90c56c4eb7614a636a1337cce1b963ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
taken from sabotage linux
--- 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,