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 1483E423EF; Mon, 16 Jan 2023 12:18:54 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id AB15742BB1; Mon, 16 Jan 2023 12:18:53 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 952F940A7D for ; Mon, 16 Jan 2023 12:18:52 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1673867932; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=lDbLUjOBzyaTR4W2vDtRPAzJ6gg+FPUo9S51CYfAr0o=; b=WVjO/jtDRcMXgJsRlvq5udNg8t5em9dYqgf5QQjv89M8dSyGbBxL3jBdnsDPNKxyoKt38H Becz62apMux5PADBsDv1nV2ndRjaFOTZsFBViwloLdwCqueJV3Fec1Mel2pPkGPI+24VT+ QOZiFaMe9zrPnqLyiAQ5NJSbk1UvoQ8= Received: from mail-pf1-f197.google.com (mail-pf1-f197.google.com [209.85.210.197]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_128_GCM_SHA256) id us-mta-407-a5QC6iQxPs2eDE882otA2w-1; Mon, 16 Jan 2023 06:18:51 -0500 X-MC-Unique: a5QC6iQxPs2eDE882otA2w-1 Received: by mail-pf1-f197.google.com with SMTP id e20-20020aa78c54000000b0058d98e07993so991041pfd.16 for ; Mon, 16 Jan 2023 03:18:50 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=lDbLUjOBzyaTR4W2vDtRPAzJ6gg+FPUo9S51CYfAr0o=; b=gjoReNT9kyz2H1JVLi6erFV+txu/VFiVkr8znHlKoAXcPn8dyWHrOfQ+v7GhWCc/fx KiVeGVND0M6prvT/kBUlcEXhALx+ezpZ3raR7HAmgdo+aa2CYHr+b7jwWjimqiXX/+Oy cE1VdxSkWfdNAcg5X9HRUJ+MtBbHMHHwRFcQ8RhthFgKWJaPhpgmlTmLimkECJh/Z4yn b6ultmzGawO7O/maVTftON/3M3nAIVJIvtBL3/fB6S/Rf06QruLCRZKQRXfrotkXiklk YijhaCbokaQOFhXT1NOnjml3vZfRbcsyEgb4pS2ZOCAiPzZ7o1bAQP73UQXldByGQZ7E pXZg== X-Gm-Message-State: AFqh2kqpVDCZjvlkrV3W0eVUHf5SDVx+196kPXeHIk3SeET7SqFEG4CT pulZ5IRWJzb6eRyoAxZ1h9QlhID6CG4vVo4sKiygMzHVZIt9668ywKOJ63Ac96RnHQzHBDy+ijb gz/LaEBJ1HzOqVNhJ9P4= X-Received: by 2002:a63:a23:0:b0:484:83e4:4ca1 with SMTP id 35-20020a630a23000000b0048483e44ca1mr3588741pgk.178.1673867930036; Mon, 16 Jan 2023 03:18:50 -0800 (PST) X-Google-Smtp-Source: AMrXdXtxd8AGnvFNPQYn40taW9ZyZfOwfd/eW8booYam0rsMnOHb9XboapeWyOgR8l8Ig6sOqizrFCQaqYQA2cVA4aA= X-Received: by 2002:a63:a23:0:b0:484:83e4:4ca1 with SMTP id 35-20020a630a23000000b0048483e44ca1mr3588735pgk.178.1673867929732; Mon, 16 Jan 2023 03:18:49 -0800 (PST) MIME-Version: 1.0 References: <20230116105318.19412-1-simei.su@intel.com> In-Reply-To: <20230116105318.19412-1-simei.su@intel.com> From: David Marchand Date: Mon, 16 Jan 2023 12:18:38 +0100 Message-ID: Subject: Re: [PATCH] net/i40e: rework maximum frame size configuration To: Simei Su Cc: beilei.xing@intel.com, yuying.zhang@intel.com, dev@dpdk.org, qi.z.zhang@intel.com, qiming.yang@intel.com, stable@dpdk.org, Helin Zhang X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" 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 On Mon, Jan 16, 2023 at 11:54 AM Simei Su wrote: > > This patch removes unnecessary link status check. > > Fixes: a4ba77367923 ("net/i40e: enable maximum frame size at port level") > Fixes: 2184f7cdeeaa ("net/i40e: fix max frame size config at port level") > Fixes: 719469f13b11 ("net/i40e: fix jumbo frame Rx with X722") > Cc: stable@dpdk.org > > Signed-off-by: Simei Su Thanks for looking into the issue. This is rather close to what I had tried [1] along my original report, but it failed in the CI. Let's see how the validation of your patch goes. 1: https://patchwork.dpdk.org/project/dpdk/patch/20221212143715.29649-1-david.marchand@redhat.com/ -- David Marchand