From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id BE566A034F; Tue, 1 Mar 2022 06:56:33 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8D8FB40DF6; Tue, 1 Mar 2022 06:56:33 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 1B96E407FF for ; Tue, 1 Mar 2022 06:56:31 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1646114192; x=1677650192; h=from:to:cc:subject:date:message-id; bh=ROUfZnj1sztOBBK1IkDSKbyhOXVjkfcBU3cw08dmYNM=; b=NzKZEdJYD7FKVOYbVZsBCvnUJOMJdBMCCWWsB982dEFl99QOkbbubySI oj2UKCWV4cRJv+pS9ZMz3pfh+8ZB4yL4f01i2Ll2FqecMml/Vb+Jiu66B GBTtAAzcwuyrr+pw8yKkwnuRzMRiBKUAS1iFAIHX2gC2PRWwWz/jOyCL7 SemLxRYrq3NsbvFJlYFbtltYe6X8chW3ywUspQYL1drmF2gOts7+pv+4A a6c/C30+cBc/HAL8Y2vToLyp3512SUcQnO1DNNty8tMxFNkrKO9+WgdrD HkvlZs9vWFjSqy26p0aTagpx5RkB9knuEoaUhE+Gk58S+eGDfyafRXgr2 A==; X-IronPort-AV: E=McAfee;i="6200,9189,10272"; a="236574241" X-IronPort-AV: E=Sophos;i="5.90,144,1643702400"; d="scan'208";a="236574241" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2022 21:56:31 -0800 X-IronPort-AV: E=Sophos;i="5.90,144,1643702400"; d="scan'208";a="534766998" Received: from unknown (HELO cvl_tetser_105.icx.intel.com) ([10.239.251.94]) by orsmga007-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Feb 2022 21:56:29 -0800 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Subject: [dts] [PATCH V1] tests/interrupt_pmd: modify the destination ip of the package Date: Tue, 1 Mar 2022 14:23:50 +0000 Message-Id: <20220301142350.16347-1-songx.jiale@intel.com> X-Mailer: git-send-email 2.17.1 X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org some network cards cannot wake up all cores with the current packet, such as carlsville. modifying the target ip of the packet can improve some compatibility. Signed-off-by: Jiale Song --- tests/TestSuite_interrupt_pmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_interrupt_pmd.py b/tests/TestSuite_interrupt_pmd.py index db8efe44..db2d37df 100644 --- a/tests/TestSuite_interrupt_pmd.py +++ b/tests/TestSuite_interrupt_pmd.py @@ -134,7 +134,7 @@ class TestInterruptPmd(TestCase): mac = self.dut.get_mac_address(self.dut_ports[i]) txItf = self.tester.get_interface(txport) self.tester.scapy_append( - 'sendp([Ether()/IP(dst="198.0.0.%d")/UDP()/Raw(\'X\'*18)], iface="%s")' % (j, txItf)) + 'sendp([Ether()/IP(dst="198.0.%d.0")/UDP()/Raw(\'X\'*18)], iface="%s")' % (j, txItf)) self.tester.scapy_execute() def tear_down(self): -- 2.17.1