From patchwork Mon Sep 10 09:55:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 183826 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 935232C0086 for ; Fri, 14 Sep 2012 18:12:29 +1000 (EST) Received: from localhost ([::1]:51263 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCQPt-00076t-AK for incoming@patchwork.ozlabs.org; Fri, 14 Sep 2012 03:34:21 -0400 Received: from eggs.gnu.org ([208.118.235.92]:57972) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCQPM-00062t-8g for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:33:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TCQPG-0000tw-GB for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:33:48 -0400 Received: from mail-we0-f173.google.com ([74.125.82.173]:43417) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TCQPG-0000tb-A2 for qemu-devel@nongnu.org; Fri, 14 Sep 2012 03:33:42 -0400 Received: by weyz53 with SMTP id z53so2146710wey.4 for ; Fri, 14 Sep 2012 00:33:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer; bh=jc7ktNZVBbYxqkEIOpXZ+WlYRMMVEm9YkytojcqTQ2k=; b=dj9XDbIa87tYJGUyl74FgQHunBQF0VtqcBWZnvA1Dg6L9uR/GIIiCg0+euFAMcZMWi wpPUxLh5vcujiW+QIgRVJcWmMA3Qnun8ajy7oLdoZGqsIdLP7A94HIsigJr4VRh/05HI TH8Vfcc70VFp02I/IfjUFnXx7v29rrL49h13RyA2V7wfTDlZdQc+5/BrbyGb4i+4Lipi 9kxtmx+BaHDbOjSzcHIHJ40/Ghlh3EIxw/p3oHK5KA7sgP4P3uj7XR1LiQ7HVo+2TE+r cFKwe7C/XsVrlmCtC96myeN+hNEoUX+mux2i3gfc9k0g4wm02mMQjJiKSzd3v+4bKltp pY3w== Received: by 10.216.143.158 with SMTP id l30mr1026919wej.113.1347608021420; Fri, 14 Sep 2012 00:33:41 -0700 (PDT) Received: from localhost ([109.224.133.37]) by mx.google.com with ESMTPS id ct3sm17597951wib.5.2012.09.14.00.33.40 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 14 Sep 2012 00:33:40 -0700 (PDT) From: Stefan Hajnoczi To: Anthony Liguori Date: Mon, 10 Sep 2012 10:55:23 +0100 Message-Id: <1347270936-30610-1-git-send-email-stefanha@gmail.com> X-Mailer: git-send-email 1.7.10.4 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 74.125.82.173 Cc: Stefan Hajnoczi , qemu-devel@nongnu.org Subject: [Qemu-devel] [PULL 00/13] Net patches X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Fixes for hung NICs, USB network interface packet dropping, and inefficient netdev socket non-blocking I/O. The following changes since commit 0c267217ca9985e6d118ec8368bebd382db7a099: musicpal: Fix flash mapping (2012-09-08 10:17:57 +0000) are available in the git repository at: git://github.com/stefanha/qemu.git net for you to fetch changes up to 0eb160d10e4f55cb5430ca3b6eb049977d0ce643: net: EAGAIN handling for net/socket.c TCP (2012-09-10 08:12:34 +0100) ---------------------------------------------------------------- Bo Yang (1): eepro100: Fix network hang when rx buffers run out Paolo Bonzini (3): net: notify iothread after flushing queue e1000: flush queue whenever can_receive can go from false to true xen: flush queue when getting an event Stefan Hajnoczi (9): net: add receive_disabled logic to iov delivery path net: do not report queued packets as sent net: add -netdev options to man page net: clean up usbnet_receive() net: fix usbnet_receive() packet drops net: broadcast hub packets if at least one port can receive net: asynchronous send/receive infrastructure for net/socket.c net: EAGAIN handling for net/socket.c UDP net: EAGAIN handling for net/socket.c TCP hw/e1000.c | 4 ++ hw/eepro100.c | 4 +- hw/usb/dev-network.c | 49 ++++++++++++++-------- hw/virtio-net.c | 4 -- hw/xen_nic.c | 1 + net.c | 22 ++++++++-- net/hub.c | 6 +-- net/queue.c | 40 +++++++++--------- net/queue.h | 2 +- net/socket.c | 110 +++++++++++++++++++++++++++++++++++++++++++------- qemu-options.hx | 7 ++++ 11 files changed, 186 insertions(+), 63 deletions(-)