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 00654A0524 for ; Tue, 1 Jun 2021 11:03:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EEEA540040; Tue, 1 Jun 2021 11:03:50 +0200 (CEST) Received: from youngberry.canonical.com (youngberry.canonical.com [91.189.89.112]) by mails.dpdk.org (Postfix) with ESMTP id A30D140040 for ; Tue, 1 Jun 2021 11:03:49 +0200 (CEST) Received: from mail-qk1-f198.google.com ([209.85.222.198]) by youngberry.canonical.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1lo0JR-0007P2-DS for stable@dpdk.org; Tue, 01 Jun 2021 09:03:49 +0000 Received: by mail-qk1-f198.google.com with SMTP id o14-20020a05620a0d4eb02903a5eee61155so11316725qkl.9 for ; Tue, 01 Jun 2021 02:03:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:from:date:message-id:subject:to:cc :content-transfer-encoding; bh=HeJ6ZyXUedOIaY6JXwAidFaxKbks9vixMRw6ugYFyCs=; b=ewXIlX1fm6MPYPIxX/Gu0ZMbOcdpmz+4sUa7pe5u3k8UF6HBHUYdaOU3hfha7I+9bv 9CZ7VAg14XfiBI+03/AXnw/lchg2iqOSOP8ciwBMq8Fd4vpFmMxtdAmk78WKBWGvrqfE OV2h4i3xK/V/DBUKngqkFTepOIkB6kYIbspkPygpGiShLpjs1wDDBJqRHUHFNXdTkwqr O0ZxBScOYSzKEdp8P17ZUvG/zTVxmifuzX7IM5Xh/wX/UjdKGNNo3Ztdd6zVsghBDIbZ E8C3UIC5O75snZHigKHVuW9u9pjLyOIQTQMdFw8Tyz42Eqx6kMfY/h4Xas079nr4FUs7 RQ/A== X-Gm-Message-State: AOAM530jTCPNK/HMPoVi5KXmuR/FYUKRtOfW6E9GwN9y3hkWjrKWMrlA sW764yebLv4oXDb5EAuyVAixsyR3ZFK4Ae9hD9VkoG0nHJ6PpoxeOn7e+zTiSOBRU6UOWfUj5o1 ho8gYWTHx+CZx2tP4ssSZWE+Xa/4DAFraEVpdmAnt X-Received: by 2002:a05:620a:1667:: with SMTP id d7mr20817875qko.462.1622538228407; Tue, 01 Jun 2021 02:03:48 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwQU11uMQv0DlgbJ3L/Blt1W8FD5ZCGHYtdm3ijcTiryU+aBLV9uiwRixdtcapqqhxQ17dtfGicaHkVot4QxE8= X-Received: by 2002:a05:620a:1667:: with SMTP id d7mr20817862qko.462.1622538228187; Tue, 01 Jun 2021 02:03:48 -0700 (PDT) MIME-Version: 1.0 From: Christian Ehrhardt Date: Tue, 1 Jun 2021 11:03:22 +0200 Message-ID: To: Chengwen Feng Cc: dpdk stable Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: [dpdk-stable] "net/hns3: fix VF handling LSC event in secondary process" incompatible with 19.11.x X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Hi, this mostly is an FYI to document why a change was not applied to the stable series. This was targeted for stable releases: commit dbbbad23e380773b37872df2195c4529fd93ca6f Author: Chengwen Feng Date: Tue Apr 13 19:50:02 2021 +0800 net/hns3: fix VF handling LSC event in secondary process But it triggers ../drivers/net/hns3/hns3_mbx.c: In function =E2=80=98hns3_handle_mbx_msg_ou= t_intr=E2=80=99: ../drivers/net/hns3/hns3_mbx.c:355:4: warning: implicit declaration of function =E2=80=98hns3_handle_mbx_response=E2=80=99; did you mean =E2=80=98hns3_handle_msix_error=E2=80=99? [-Wimplicit-function-declaration] 355 | hns3_handle_mbx_response(hw, req); | ^~~~~~~~~~~~~~~~~~~~~~~~ | hns3_handle_msix_error This is due to missing: commit c8dec72de00039f367c1a8cd1f40378d04cf3e8f Author: Chengwen Feng Date: Tue Apr 13 19:50:01 2021 +0800 net/hns3: fix possible mismatched response of mailbox And this one I already called out as a "help for backport" 12 days ago. The same is true for: ../drivers/net/hns3/hns3_mbx.c:385:10: warning: implicit declaration of function =E2=80=98rte_thread_is_intr=E2=80=99; did you mean =E2=80=98rte= _thread_setname=E2=80=99? [-Wimplicit-function-declaration] 385 | !rte_thread_is_intr()) && hns->is_vf; | ^~~~~~~~~~~~~~~~~~ | rte_thread_setname Which needs commit 5c016fc0205a67123481dbe8f9784635beac8a09 Author: Dmitry Kozlyuk Date: Sat Sep 26 02:32:42 2020 +0300 eal/windows: add interrupt thread skeleton FYI for now I'll also drop dbbbad23e380773b37872df2195c4529fd93ca6f from 19= .11.x --=20 Christian Ehrhardt Staff Engineer, Ubuntu Server Canonical Ltd