From mboxrd@z Thu Jan 1 00:00:00 1970 From: pradeep Subject: Re: [Autotest] [PATCH 07/18] KVM test: Add a subtest jumbo Date: Fri, 24 Sep 2010 13:46:05 +0530 Message-ID: <20100924134605.18b548b5@skywalker> References: <1284503143-5993-1-git-send-email-lmr@redhat.com> <1284503143-5993-8-git-send-email-lmr@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: autotest@test.kernel.org, kvm@vger.kernel.org To: Lucas Meneghel Rodrigues Return-path: Received: from e5.ny.us.ibm.com ([32.97.182.145]:60925 "EHLO e5.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751457Ab0IXIQQ (ORCPT ); Fri, 24 Sep 2010 04:16:16 -0400 Received: from d01relay07.pok.ibm.com (d01relay07.pok.ibm.com [9.56.227.147]) by e5.ny.us.ibm.com (8.14.4/8.13.1) with ESMTP id o8O7uJom016374 for ; Fri, 24 Sep 2010 03:56:19 -0400 Received: from d01av04.pok.ibm.com (d01av04.pok.ibm.com [9.56.224.64]) by d01relay07.pok.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o8O8GFSJ2277590 for ; Fri, 24 Sep 2010 04:16:15 -0400 Received: from d01av04.pok.ibm.com (loopback [127.0.0.1]) by d01av04.pok.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id o8O8GERx029911 for ; Fri, 24 Sep 2010 04:16:15 -0400 In-Reply-To: <1284503143-5993-8-git-send-email-lmr@redhat.com> Sender: kvm-owner@vger.kernel.org List-ID: On Tue, 14 Sep 2010 19:25:32 -0300 Lucas Meneghel Rodrigues wrote: > + session.close() > + logging.info("Removing the temporary ARP entry") > + utils.run("arp -d %s -i %s" % (ip, ifname)) > Hi Lucas Tried different combinations for this jumbo test case. it dint work for me. I guess there is a problem while trying to remove ARP entry. ARP entry can be removed from cache using ip and network interface (for ex: eth0) arp -d -i eth0 Error which i got: 23:06:14 DEBUG| Running 'arp -d 192.168.122.104 -i rtl8139_0_5900' 23:06:14 ERROR| Test failed: CmdError: Command failed, rc=255, Command returned non-zero exit status * Command: arp -d 192.168.122.104 -i rtl8139_0_5900 Exit status: 255 Duration: 0.00138521194458 stderr: SIOCDARP(pub): No such file or directory When i try manually this one works for me. Gues ip: 192.168.122.104 try "arp -i 192.168.122.1 -i eth0" --Thanks Pradeep