summary refs log tree commit diff stats
path: root/results/classifier/118/review/1393440
diff options
context:
space:
mode:
Diffstat (limited to 'results/classifier/118/review/1393440')
-rw-r--r--results/classifier/118/review/139344081
1 files changed, 81 insertions, 0 deletions
diff --git a/results/classifier/118/review/1393440 b/results/classifier/118/review/1393440
new file mode 100644
index 00000000..15cc9de9
--- /dev/null
+++ b/results/classifier/118/review/1393440
@@ -0,0 +1,81 @@
+ppc: 0.937
+mistranslation: 0.857
+device: 0.853
+network: 0.773
+socket: 0.749
+register: 0.749
+files: 0.681
+performance: 0.658
+peripherals: 0.634
+PID: 0.614
+vnc: 0.607
+architecture: 0.599
+semantic: 0.591
+permissions: 0.561
+graphic: 0.556
+hypervisor: 0.506
+debug: 0.483
+kernel: 0.482
+i386: 0.451
+user-level: 0.427
+x86: 0.418
+TCG: 0.409
+arm: 0.371
+KVM: 0.336
+risc-v: 0.331
+VMM: 0.291
+boot: 0.275
+assembly: 0.252
+virtual: 0.229
+--------------------
+debug: 0.607
+x86: 0.318
+hypervisor: 0.208
+files: 0.138
+ppc: 0.114
+TCG: 0.091
+device: 0.053
+register: 0.044
+virtual: 0.039
+i386: 0.033
+user-level: 0.033
+kernel: 0.026
+semantic: 0.023
+VMM: 0.022
+architecture: 0.018
+peripherals: 0.018
+PID: 0.016
+KVM: 0.009
+assembly: 0.008
+network: 0.006
+arm: 0.006
+boot: 0.006
+performance: 0.004
+risc-v: 0.003
+graphic: 0.003
+permissions: 0.003
+socket: 0.002
+vnc: 0.001
+mistranslation: 0.001
+
+pcie.c:148: possible error in OR expression ?
+
+[qemu/hw/pci/pcie.c:148] -> [qemu/hw/pci/pcie.c:148]: (style) Same expression on both sides of '|'.
+
+    pci_long_test_and_set_mask(dev->w1cmask + pos + PCI_EXP_DEVSTA,
+                               PCI_EXP_DEVSTA_CED | PCI_EXP_DEVSTA_NFED |
+                               PCI_EXP_DEVSTA_URD | PCI_EXP_DEVSTA_URD);
+
+I am guessing that something like
+
+    pci_long_test_and_set_mask(dev->w1cmask + pos + PCI_EXP_DEVSTA,
+                               PCI_EXP_DEVSTA_CED | PCI_EXP_DEVSTA_NFED |
+                               PCI_EXP_DEVSTA_FED | PCI_EXP_DEVSTA_URD);
+
+was intended.
+
+I used static analyser cppcheck to find this bug.
+
+Fixed here:
+http://git.qemu.org/?p=qemu.git;a=commitdiff;h=8e815eeefe205155f5
+