summary refs log tree commit diff stats
path: root/results/classifier/108/other/1382477
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/108/other/1382477')
-rw-r--r--results/classifier/108/other/138247734
1 files changed, 34 insertions, 0 deletions
diff --git a/results/classifier/108/other/1382477 b/results/classifier/108/other/1382477
new file mode 100644
index 000000000..e771ccafd
--- /dev/null
+++ b/results/classifier/108/other/1382477
@@ -0,0 +1,34 @@
+device: 0.859
+socket: 0.797
+network: 0.788
+vnc: 0.782
+files: 0.702
+graphic: 0.660
+semantic: 0.638
+PID: 0.537
+performance: 0.487
+permissions: 0.482
+KVM: 0.476
+debug: 0.474
+boot: 0.453
+other: 0.368
+
+hw/i386/intel_iommu.c:902: wrong logical operator ?
+
+/home/dcb/qemu/trunk/qemu/hw/i386/intel_iommu.c:902:5: error: logical ‘and’ applied to non-boolean constant [-Werror=logical-op]
+     pvtd_as = s->address_spaces[VTD_SID_TO_BUS(source_id)];
+     ^
+
+$ fgrep VTD_SID_TO_BUS `find . -name \*.h -print`
+./include/hw/i386/intel_iommu.h:#define VTD_SID_TO_BUS(sid)         (((sid) >> 8) && 0xff)
+$ 
+
+Sounds to me like
+
+#define VTD_SID_TO_BUS(sid)         (((sid) >> 8) & 0xff)
+
+would be better.
+
+Fix has been included here:
+http://git.qemu.org/?p=qemu.git;a=commitdiff;h=1e06f131fd9a44dd4af
+