From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IGmHP-0005An-Hl for qemu-devel@nongnu.org; Thu, 02 Aug 2007 21:48:39 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IGmHO-0005Ab-3X for qemu-devel@nongnu.org; Thu, 02 Aug 2007 21:48:38 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IGmHN-0005AY-TI for qemu-devel@nongnu.org; Thu, 02 Aug 2007 21:48:37 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IGmHM-00018B-AN for qemu-devel@nongnu.org; Thu, 02 Aug 2007 21:48:36 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IGmHA-0000SA-Ar for qemu-devel@nongnu.org; Fri, 03 Aug 2007 03:48:24 +0200 Received: from fw2.isgenesis.com ([168.215.170.1]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Aug 2007 03:48:24 +0200 Received: from charles by fw2.isgenesis.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Aug 2007 03:48:24 +0200 From: Charles Duffy Date: Thu, 02 Aug 2007 20:48:10 -0500 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit In-Reply-To: Sender: news Subject: [Qemu-devel] Re: Network connections stalling Reply-To: charles@dyfis.net, qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org This loss of connectivity is still happening; at least within my environment, it's quite reproducible. While I've eliminated the message about being unable to set the RTC to 1024Hz by recompiling my host kernel without CONFIG_HPET_RTC_IRQ, the host's kernel is frequently complaining "rtc: lost some interrupts at 1024Hz". I'm using tap-based networking (-net nic -net tap,ifname=tap0,script=./tap0-start), where tap0 is bridged to my local ethernet device, and outgoing network traffic from the qemu instance is visible if I monitor traffic on the bridge. Indeed, external responses to such traffic (ie. ARP responses) are visible on the bridge, but evidently not to the virtual machine: the TX counter rises when I try to ping the outside world, but the RX counter does not. Resetting the device (ifconfig eth0 down; ifconfig eth0 up) brings it back alive -- but this isn't an action which can trivially be slotted into a trivial, single-threaded install script. These same scripts have been tested on real hardware, and have not turned up this issue. Certainly, a race condition unrelated to qemu is possible, but I'd appreciate any insight 'yall can provide. Thank you!