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 4076B45AA2; Tue, 8 Oct 2024 23:47:40 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 07D65402E4; Tue, 8 Oct 2024 23:47:40 +0200 (CEST) Received: from mail-qk1-f178.google.com (mail-qk1-f178.google.com [209.85.222.178]) by mails.dpdk.org (Postfix) with ESMTP id DC6CE402D4 for ; Tue, 8 Oct 2024 23:47:38 +0200 (CEST) Received: by mail-qk1-f178.google.com with SMTP id af79cd13be357-7afc847094fso64491285a.2 for ; Tue, 08 Oct 2024 14:47:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1728424058; x=1729028858; darn=dpdk.org; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:from:to:cc:subject:date :message-id:reply-to; bh=qjJr36+btdvfaAL2MUgjcQKhK/5gI+w66+pq96QB3pI=; b=DB/MlV1l9lsHGwX8WsQnRhnYlZaYp4UTJ9fbwJC2RnXS+6kx1wQ7/42CuGzoVQn1Xp 3AcuTD+f07OfPzywsit+pE4p2AJhgul8fdvbHiBfKIZkpkN2aU/33AH1PVbqkXFfLJFj 4g63bB30ufqyIO3sD0xKpHsGNdn4pciADOqwk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1728424058; x=1729028858; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=qjJr36+btdvfaAL2MUgjcQKhK/5gI+w66+pq96QB3pI=; b=a6geMEkA80efDbz+TTYuEbhLzQpJYt7dnQLfEMHKOnpMRo2Oa1NIcCnCfVV9IdWOOE 6kUyHpOwD9DcfPxBblkQk5UCbuUUTpwFbWZRZ9KTr9Fp7yZoAm9eFuvaTcwfxyfKIsfk XkYC2B8Mlrxup+xyXEGdOZhgydq6fBlpRAklYWzdLn3QzWaSL8I3Er0cq6WSevV1qMel IBxxqIm9Khp7WghNAmOPpCD8i+xsXgyvfi+tFfvWRW8mP0EJdkdREDgwi3unql892bMy Kw3+2zj0TXsOZkue/hpWW6iVm+0J0EXaale/50+106afw//8DAW/1YB6v2Sfr9GzTyPq KhJw== X-Gm-Message-State: AOJu0YzQ0eDNgjoOki5B7jyz8hVcemPha916qPAqFjp1u+VOjyAZt/8u WnqU/QsfTfGfQ5ntWkKftFS3ELDjdxJSAymMRb+x2xVOieF6YqwNlt8I8A1ryGQ= X-Google-Smtp-Source: AGHT+IHev2EOAovp1mvXDJfz+cwZWPEy3Zj5a1OuERm8IEy+cId3VXoDj6Bg05nb88VUg78stbJsng== X-Received: by 2002:a05:620a:248f:b0:7a9:bafd:635b with SMTP id af79cd13be357-7b0874c5fb2mr25349585a.60.1728424058170; Tue, 08 Oct 2024 14:47:38 -0700 (PDT) Received: from dean-laptop.iol.unh.edu ([2606:4100:3880:1271:f9bd:24da:464d:6294]) by smtp.gmail.com with ESMTPSA id af79cd13be357-7ae756378fesm392647285a.69.2024.10.08.14.47.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 08 Oct 2024 14:47:37 -0700 (PDT) From: Dean Marx To: probb@iol.unh.edu, npratte@iol.unh.edu, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, Honnappa.Nagarahalli@arm.com, paul.szczepanek@arm.com Cc: dev@dpdk.org, Dean Marx Subject: [PATCH v10 0/1] dts: port over queue start/stop suite Date: Tue, 8 Oct 2024 17:48:02 -0400 Message-ID: <20241008214803.19208-1-dmarx@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240807193611.23060-1-dmarx@iol.unh.edu> References: <20240807193611.23060-1-dmarx@iol.unh.edu> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Queue start/stop suite ensures the Poll Mode Driver can functionally enable and disable Rx/Tx queues on ports. The suite contains two test cases: 1. All queues enabled - verifies that packets are received when all queues on all ports are enabled. 2. Queue start/stop - verifies that packets are not received when the Rx queue on port 0 is disabled, and then again when the Tx queue on port 1 is disabled. An important aspect of DPDK is queueing packets for transmission to bypass the kernel, which makes this test suite necessary to ensure performance. -------------- v8: * Refactored to be compatible with context manager v9: * Combined configuration schema and test suite patches v10: * Rebased off next-dts Dean Marx (1): dts: port over queue start/stop suite dts/framework/config/conf_yaml_schema.json | 3 ++- dts/tests/TestSuite_queue_start_stop.py | 16 +++++++--------- 2 files changed, 9 insertions(+), 10 deletions(-) -- 2.44.0