user-level: 0.526 hypervisor: 0.480 semantic: 0.468 permissions: 0.459 TCG: 0.437 graphic: 0.416 PID: 0.414 virtual: 0.410 debug: 0.402 peripherals: 0.400 VMM: 0.394 performance: 0.384 vnc: 0.381 ppc: 0.375 register: 0.363 architecture: 0.351 KVM: 0.329 kernel: 0.328 device: 0.322 assembly: 0.309 arm: 0.303 boot: 0.301 files: 0.282 network: 0.278 x86: 0.271 socket: 0.268 i386: 0.266 risc-v: 0.258 mistranslation: 0.227 hw/usb/dev-mtp.c:1616: bad test ? hw/usb/dev-mtp.c:1616:52: warning: logical ‘or’ of collectively exhaustive tests is always true [-Wlogical-op] Source code is if ((ret == -1) && (errno != EINTR || errno != EAGAIN || errno != EWOULDBLOCK)) { Maybe better code if ((ret == -1) && (errno != EINTR && errno != EAGAIN && errno != EWOULDBLOCK)) { On Fri, 19 Oct 2018 at 10:22, dcb