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 8D86EA0545 for ; Mon, 20 Jun 2022 11:48:29 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8902840150; Mon, 20 Jun 2022 11:48:29 +0200 (CEST) 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 BE88D427F8 for ; Mon, 20 Jun 2022 11:48:27 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1655718507; 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=yA7iucr6qRWZlGfYo8Z2uMzJnZ249ydpLOxPNOvSSVw=; b=PkviUs09WJ2em7Kydo/cYVUWznxHSvn5P0xhiCSONKFVmk6WpbI61lEZA4+DB7Z0rZzQPl +KUAOPTu75ZUfu1DR+yRY689jn+BevV3xJrVTCZUMXp7yTl8D2uZ0sLqc8umq4Uct3Tzjp UnLBw4ncOc07GUQWuaIFhbchZaoCndQ= 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-381-nebM8mciM3ufooCYxcdu-g-1; Mon, 20 Jun 2022 05:48:24 -0400 X-MC-Unique: nebM8mciM3ufooCYxcdu-g-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id B7A6E80B90D; Mon, 20 Jun 2022 09:48:23 +0000 (UTC) Received: from rh.redhat.com (unknown [10.39.194.217]) by smtp.corp.redhat.com (Postfix) with ESMTP id C6E9C40C141F; Mon, 20 Jun 2022 09:48:22 +0000 (UTC) From: Kevin Traynor To: "Min Hu (Connor)" Cc: Chengwen Feng , dpdk stable Subject: patch 'dma/hisilicon: fix includes in header file' has been queued to stable release 21.11.2 Date: Mon, 20 Jun 2022 10:47:52 +0100 Message-Id: <20220620094752.1027299-19-ktraynor@redhat.com> In-Reply-To: <20220620094752.1027299-1-ktraynor@redhat.com> References: <20220620094752.1027299-1-ktraynor@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.11.54.2 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-default=true 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.2 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 06/23/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/8e8886a0e995f698fee349c12a455649b5b41250 Thanks. Kevin --- >From 8e8886a0e995f698fee349c12a455649b5b41250 Mon Sep 17 00:00:00 2001 From: "Min Hu (Connor)" Date: Tue, 14 Jun 2022 17:33:19 +0800 Subject: [PATCH] dma/hisilicon: fix includes in header file [ upstream commit 7342e612052ae3ec875ae018548324d29abfa9c2 ] Header files should be self contained. This patch fixed it. Fixes: 9e16317a38f9 ("dma/hisilicon: add probing") Signed-off-by: Min Hu (Connor) Signed-off-by: Chengwen Feng --- drivers/dma/hisilicon/hisi_dmadev.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/dma/hisilicon/hisi_dmadev.h b/drivers/dma/hisilicon/hisi_dmadev.h index 12e209c86e..f06c851825 100644 --- a/drivers/dma/hisilicon/hisi_dmadev.h +++ b/drivers/dma/hisilicon/hisi_dmadev.h @@ -8,4 +8,6 @@ #include #include +#include +#include #define BIT(x) (1ul << (x)) -- 2.34.3 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2022-06-20 10:46:28.189242595 +0100 +++ 0019-dma-hisilicon-fix-includes-in-header-file.patch 2022-06-20 10:46:27.797146858 +0100 @@ -1 +1 @@ -From 7342e612052ae3ec875ae018548324d29abfa9c2 Mon Sep 17 00:00:00 2001 +From 8e8886a0e995f698fee349c12a455649b5b41250 Mon Sep 17 00:00:00 2001 @@ -5,0 +6,2 @@ +[ upstream commit 7342e612052ae3ec875ae018548324d29abfa9c2 ] + @@ -9 +10,0 @@ -Cc: stable@dpdk.org @@ -18 +19 @@ -index deb1357eea..5a17f9f69e 100644 +index 12e209c86e..f06c851825 100644