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 F277F456B8; Fri, 26 Jul 2024 16:13:13 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 85F3C42E7B; Fri, 26 Jul 2024 16:13:13 +0200 (CEST) Received: from mail-ot1-f46.google.com (mail-ot1-f46.google.com [209.85.210.46]) by mails.dpdk.org (Postfix) with ESMTP id 5AEA442DC1 for ; Fri, 26 Jul 2024 16:13:12 +0200 (CEST) Received: by mail-ot1-f46.google.com with SMTP id 46e09a7af769-7093890e133so164931a34.3 for ; Fri, 26 Jul 2024 07:13:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=iol.unh.edu; s=unh-iol; t=1722003191; x=1722607991; 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=HlFUl9xh0PwogXkXW9Dlm7xOc5IDoe3Jam7yYhaG39M=; b=gipbG0IMsXDEv5/ApGlPzlxj5apKFL9jt4iPYtTStYDywHyg6l2naTjaSq/RcYX259 +PwP00OanupvVTeqQvKTx9gQ2jopYx+rr8Uku2lxTmmoS/27QbIFIQNwvAJWoGwvyVcY wg3jZAX8gIBCld/mYwLWmikcYWkdk+EX8NKjo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1722003191; x=1722607991; 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=HlFUl9xh0PwogXkXW9Dlm7xOc5IDoe3Jam7yYhaG39M=; b=NhkZ8uiN9ttkaDanWcTIKlTcerC1/OCeOfmNVnNCvO51A7Rs1Zf3RO/Z/6npQg9CwZ 92shPX9pO1QutHw2NhJiWmapaGI5nvxweXdn8xTLas9CBPGWJzR0wNn1x9dT45Rizdbd xzcJ2mjG8jMUlym9HJ8xEBzdguPMOGRarkeQlM7lPM3+ZdcB3I88Zrg8VI5jNJtJcbjd DVaqdd6sxQR4A1RoaEZ2cgs4Zt+mP1umnJ35UzchxCEG0caHWSwigt8ThaKbl/JTvvlh 3M5Dp7kRR9kspYRB+BhLcvnNepWIOoio5LMNSFD3PgOsx6XKMeUzgjWYJ7gJyDm0mRml glzw== X-Gm-Message-State: AOJu0YxgsP5l0RAk1Ob33SsMQtO1t4SXEBvElF4qoU96jKruqGS5/Yw2 aPvq/EAbPPkVbRmXNi96KS+BizY2fHIkRrltWzc3ow4hQweatUGueKGkg3dPZ6I= X-Google-Smtp-Source: AGHT+IFjfWdJFDflvs24UPI3NTc7RiH+uSt1oPQI+Bpuc5CAWb94Sv+FaMura4JK7V8Q7mom3P76mA== X-Received: by 2002:a9d:6b83:0:b0:704:45ed:fa3 with SMTP id 46e09a7af769-7092fa5c91fmr4096799a34.1.1722003191500; Fri, 26 Jul 2024 07:13:11 -0700 (PDT) Received: from localhost.unh.edu ([2606:4100:3880:1257::1003]) by smtp.gmail.com with ESMTPSA id 6a1803df08f44-6bb3fb01b05sm16781266d6.134.2024.07.26.07.13.10 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 26 Jul 2024 07:13:11 -0700 (PDT) From: Nicholas Pratte To: probb@iol.unh.edu, dmarx@iol.unh.edu, jspewock@iol.unh.edu, luca.vizzarro@arm.com, yoan.picchi@foss.arm.com, Honnappa.Nagarahalli@arm.com, paul.szczepanek@arm.com, juraj.linkes@pantheon.tech Cc: dev@dpdk.org, Nicholas Pratte Subject: [RFC PATCH v3 0/2] Initial Implementation For Jumbo Frames Date: Fri, 26 Jul 2024 10:13:05 -0400 Message-ID: <20240726141307.14410-1-npratte@iol.unh.edu> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240524183604.6925-1-npratte@iol.unh.edu> References: <20240524183604.6925-1-npratte@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 v3: * Refactored to use TestPMDShell context manager. NOTE: Assessing the boundaries and discern the correct assumption for ethernet overhead is still to be discussed. Thus, while each individual test case may pass, the test cases may not yet be precise. Nicholas Pratte (2): dts: add port config mtu options to testpmd shell dts: Initial Implementation For Jumbo Frames Test Suite dts/framework/config/conf_yaml_schema.json | 3 +- dts/framework/remote_session/testpmd_shell.py | 20 +- dts/tests/TestSuite_jumboframes.py | 182 ++++++++++++++++++ 3 files changed, 203 insertions(+), 2 deletions(-) create mode 100644 dts/tests/TestSuite_jumboframes.py -- 2.44.0