Re: [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets

2018-11-30 Thread no-reply
Hi, This series failed docker-quick@centos7 build test. Please find the testing commands and their output below. If you have Docker installed, you can probably reproduce it locally. Type: series Subject: [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets Message-id

Re: [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets

2018-11-29 Thread no-reply
Hi, This series seems to have some coding style problems. See output below for more information: Type: series Subject: [Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets Message-id: 20181129031230.31082-1-jasow...@redhat.com === TEST SCRIPT BEGIN === #!/bin/bash BASE

[Qemu-devel] [PATCH for 3.1 0/4] Fix possible OOB during queuing packets

2018-11-28 Thread Jason Wang
Hi: This series tries to fix a possible OOB during queueing packets through qemu_net_queue_append_iov(). This could happen when it tries to queue a packet whose size is larger than INT_MAX which may lead integer overflow. We've fixed similar issue in the past during qemu_net_queue_deliver_iov() by