From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 7524BA318B for ; Fri, 18 Oct 2019 11:58:14 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 32A7C1C212; Fri, 18 Oct 2019 11:58:14 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 5AE1A1C11C; Fri, 18 Oct 2019 11:58:10 +0200 (CEST) Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AC0E98AC700; Fri, 18 Oct 2019 09:58:09 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-204-29.brq.redhat.com [10.40.204.29]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5595760BF1; Fri, 18 Oct 2019 09:58:08 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: stable@dpdk.org, Honnappa Nagarahalli Date: Fri, 18 Oct 2019 11:57:53 +0200 Message-Id: <1571392673-27643-1-git-send-email-david.marchand@redhat.com> In-Reply-To: <20191008211220.31586-1-honnappa.nagarahalli@arm.com> References: <20191008211220.31586-1-honnappa.nagarahalli@arm.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.69]); Fri, 18 Oct 2019 09:58:09 +0000 (UTC) Subject: [dpdk-stable] [PATCH] rcu: fix reference to offline function X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 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" Fixes: 64994b56cfd7 ("rcu: add RCU library supporting QSBR mechanism") Cc: stable@dpdk.org Signed-off-by: David Marchand --- I intend to add this patch to this series. Honnappa, can you review it please ? --- lib/librte_rcu/rte_rcu_qsbr.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/librte_rcu/rte_rcu_qsbr.h b/lib/librte_rcu/rte_rcu_qsbr.h index 0d46645..0b55859 100644 --- a/lib/librte_rcu/rte_rcu_qsbr.h +++ b/lib/librte_rcu/rte_rcu_qsbr.h @@ -217,7 +217,7 @@ struct rte_rcu_qsbr { * call this API before calling rte_rcu_qsbr_quiescent. This can be called * during initialization or as part of the packet processing loop. * - * The reader thread must call rte_rcu_thread_offline API, before + * The reader thread must call rte_rcu_qsbr_thread_offline API, before * calling any functions that block, to ensure that rte_rcu_qsbr_check * API does not wait indefinitely for the reader thread to update its QS. * @@ -283,7 +283,7 @@ struct rte_rcu_qsbr { * This can be called during initialization or as part of the packet * processing loop. * - * The reader thread must call rte_rcu_thread_offline API, before + * The reader thread must call rte_rcu_qsbr_thread_offline API, before * calling any functions that block, to ensure that rte_rcu_qsbr_check * API does not wait indefinitely for the reader thread to update its QS. * -- 1.8.3.1