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 2FE2EA04FF for ; Mon, 21 Mar 2022 15:44:07 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 096B0427F1; Mon, 21 Mar 2022 15:44:07 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id E145C427EB for ; Mon, 21 Mar 2022 15:44:05 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1647873845; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=QIFESxIGoU7ZyQMgb36ay/V1xgVwAf5L1OmwWEyr7YQ=; b=KKIxNZcxK3bb3n+Jucj2pxYbl9G+J3+sfTstJYNQpBepkbqB3IMDu+M8V6RwmhizUBc8QD vWA5WttCGu7dioRU49L4H6Jsyti/SOIygeC15zhDlCMiZl7gmTJeQweA6YsqSrFz1YNlSQ jq3H+65Mv4R2yi4a4j9PEQsgjiCdYuc= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-292-jvid5qFxPvWbyZ6qQEvtDA-1; Mon, 21 Mar 2022 10:43:58 -0400 X-MC-Unique: jvid5qFxPvWbyZ6qQEvtDA-1 Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 18F4A811E78; Mon, 21 Mar 2022 14:43:58 +0000 (UTC) Received: from rh.Home (unknown [10.39.195.33]) by smtp.corp.redhat.com (Postfix) with ESMTP id 4017443E385; Mon, 21 Mar 2022 14:43:57 +0000 (UTC) From: Kevin Traynor To: Bruce Richardson Cc: dpdk stable Subject: patch 'doc: fix missing note on UIO module in Linux guide' has been queued to stable release 21.11.1 Date: Mon, 21 Mar 2022 14:43:38 +0000 Message-Id: <20220321144340.64983-2-ktraynor@redhat.com> In-Reply-To: <20220321144340.64983-1-ktraynor@redhat.com> References: <20220321144340.64983-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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 Hi, FYI, your patch has been queued to stable release 21.11.1 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 03/22/22. So please shout if anyone has objections. Also note that after the patch there's a diff of the upstream commit vs the patch applied to the branch. This will indicate if there was any rebasing needed to apply to the stable branch. If there were code changes for rebasing (ie: not only metadata diffs), please double check that the rebase was correctly done. Queued patches are on a temporary branch at: https://github.com/kevintraynor/dpdk-stable This queued commit can be viewed at: https://github.com/kevintraynor/dpdk-stable/commit/2740b29e4892fa5b6220a3090d9cbc46eaf3cd14 Thanks. Kevin --- >From 2740b29e4892fa5b6220a3090d9cbc46eaf3cd14 Mon Sep 17 00:00:00 2001 From: Bruce Richardson Date: Wed, 16 Mar 2022 13:45:44 +0000 Subject: [PATCH] doc: fix missing note on UIO module in Linux guide [ upstream commit b421909ce7c42109ebb3236275793b1c7fd3394e ] The docs on binding drivers was updated as part of the removal of the igb_uio module from the main DPDK repo. As part of that update, a note about uio_pci_generic requiring legacy interrupts was removed, but should have been kept. Fixes: 56bb5841fd06 ("kernel/linux: remove igb_uio") Signed-off-by: Bruce Richardson --- doc/guides/linux_gsg/linux_drivers.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/linux_gsg/linux_drivers.rst b/doc/guides/linux_gsg/linux_drivers.rst index 56564286ac..75af2f01e1 100644 --- a/doc/guides/linux_gsg/linux_drivers.rst +++ b/doc/guides/linux_gsg/linux_drivers.rst @@ -175,4 +175,9 @@ It can be loaded as shown below: sudo insmod igb_uio.ko +.. note:: + + For some devices which lack support for legacy interrupts, e.g. virtual function + (VF) devices, the ``igb_uio`` module may be needed in place of ``uio_pci_generic``. + .. note:: -- 2.34.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-03-21 14:24:08.461169962 +0000 +++ 0002-doc-fix-missing-note-on-UIO-module-in-Linux-guide.patch 2022-03-21 14:24:08.412777659 +0000 @@ -1 +1 @@ -From b421909ce7c42109ebb3236275793b1c7fd3394e Mon Sep 17 00:00:00 2001 +From 2740b29e4892fa5b6220a3090d9cbc46eaf3cd14 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit b421909ce7c42109ebb3236275793b1c7fd3394e ] + @@ -12 +13,0 @@ -Cc: stable@dpdk.org @@ -20 +21 @@ -index ef6fec10d7..bd983b4d81 100644 +index 56564286ac..75af2f01e1 100644