From patchwork Fri Feb 3 16:00:10 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 123004 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C2E7041BB9; Fri, 3 Feb 2023 09:03:05 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B7D4C4021E; Fri, 3 Feb 2023 09:03:05 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 256C74014F for ; Fri, 3 Feb 2023 09:03:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1675411384; x=1706947384; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=XRBLFuaJDGXtuEuxzz6TrafI/6ro4wu1j6ZeqNyIm1s=; b=Es0721Smw6IgdB1sCjdzLxbx3MTzHKjS5IeBeyMFCe+diNO5UNV4suJ0 q22MQUCiQfZEcQRJxOguxIH0coyWYXTI1aAn8SP53NAvq4K5N2s5jRUN1 9EM0VkzfAeqshZbP7SUPpw9yFfARChlSvKsYZu7ghSbvGkO5uHPRxJq6j Zx5VHXdwTLws6JahKunqmzf2aJ3BXYQ5BVuVSxhGcXxuF4gouVSc+/+MD +s8n7VjLBASLvLD48LWWjs88ITiwOJRLYKLani9o8ffwvPKRMgmCX3am3 WzkMEsb7/6dW7kl0B7PGwMH0SpFsFn+g8fU8sfpjubl4kzQB8bRieF8Sv Q==; X-IronPort-AV: E=McAfee;i="6500,9779,10609"; a="330820016" X-IronPort-AV: E=Sophos;i="5.97,269,1669104000"; d="scan'208";a="330820016" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Feb 2023 00:02:47 -0800 X-IronPort-AV: E=McAfee;i="6500,9779,10609"; a="697983446" X-IronPort-AV: E=Sophos;i="5.97,269,1669104000"; d="scan'208";a="697983446" Received: from unknown (HELO localhost.localdomain) ([10.239.252.20]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Feb 2023 00:02:46 -0800 From: Song Jiale To: dts@dpdk.org Cc: Song Jiale Subject: [dts] [PATCH V1] tests/dynamic_queue: modify dts script to support ICE_25G-E810C_SFP nic Date: Fri, 3 Feb 2023 16:00:10 +0000 Message-Id: <20230203160010.355134-1-songx.jiale@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 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 the default number of mbufs does not support the use of 64 rxqs on the ice nic with 4 ports at the same time. The default value of mbuf is 171456. according to the description of testplan, only one port is required for testing. Signed-off-by: Song Jiale --- tests/TestSuite_dynamic_queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_dynamic_queue.py b/tests/TestSuite_dynamic_queue.py index e6bad6c9..28ab197d 100644 --- a/tests/TestSuite_dynamic_queue.py +++ b/tests/TestSuite_dynamic_queue.py @@ -57,6 +57,7 @@ class TestDynamicQueue(TestCase): "Default", "--port-topology=chained --txq=%s --rxq=%s" % (self.PF_QUEUE, self.PF_QUEUE), + ports=self.dut_ports[0:1], ) def element_strip(self, out, pattern, if_get_from_cfg=False):