[Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-09-24 Thread Thomas Huth
Adding a proper receive_iov function to the net dump module. This will make it easier to support the dump filter feature for the -netdev option in later patches. Signed-off-by: Thomas Huth --- net/dump.c | 24 +--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git

Re: [Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-07-10 Thread Thomas Huth
On Fri, 03 Jul 2015 13:06:55 +0200 Markus Armbruster wrote: > Thomas Huth writes: > > > Adding a proper receive_iov function to the net dump module. This > > will make it easier to support the dump feature for the -netdev > > option in later patches. > > Also make the receive functions availabl

Re: [Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-07-03 Thread Markus Armbruster
Thomas Huth writes: > Adding a proper receive_iov function to the net dump module. This > will make it easier to support the dump feature for the -netdev > option in later patches. > Also make the receive functions available to the other parts of the > source code so we can later use them for dum

Re: [Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-06-26 Thread Thomas Huth
On Fri, 26 Jun 2015 14:38:42 +0800 Jason Wang wrote: > > > On 06/24/2015 11:56 PM, Thomas Huth wrote: > > Adding a proper receive_iov function to the net dump module. This > > will make it easier to support the dump feature for the -netdev > > option in later patches. > > Also make the receive

Re: [Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-06-25 Thread Jason Wang
On 06/24/2015 11:56 PM, Thomas Huth wrote: > Adding a proper receive_iov function to the net dump module. This > will make it easier to support the dump feature for the -netdev > option in later patches. > Also make the receive functions available to the other parts of the > source code so we can

[Qemu-devel] [PATCH 1/5] net/dump: Add support for receive_iov function

2015-06-24 Thread Thomas Huth
Adding a proper receive_iov function to the net dump module. This will make it easier to support the dump feature for the -netdev option in later patches. Also make the receive functions available to the other parts of the source code so we can later use them for dumping from net.c, too. Signed-of