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 52EA8A053E; Mon, 27 Jul 2020 21:20:42 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 471BA1BFE8; Mon, 27 Jul 2020 21:20:31 +0200 (CEST) Received: from mail-pg1-f194.google.com (mail-pg1-f194.google.com [209.85.215.194]) by dpdk.org (Postfix) with ESMTP id DE41B1BF7B for ; Mon, 27 Jul 2020 21:20:27 +0200 (CEST) Received: by mail-pg1-f194.google.com with SMTP id j19so10431008pgm.11 for ; Mon, 27 Jul 2020 12:20:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=networkplumber-org.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=qVHzGTVWWtEn05tU3L+fnhFthJWsXZg327L2cS9cReA=; b=BWKH+F0IrFHYopSFWHtzqvqhHaZ1pyesihe+LsAjjc9VNx1AU4bhFYJoBmmBNmmGHN gpF31F+uxoPlKjPpKlZUwC5PBUBjSoKGCJJSyJPmd5fo2kR78Zmeb8MPyAiQaD9mLSms 3JXVmwUme5jF9QaxPvd2UJFj2/3GPRtnrnMdl1KaS6G0JKLlpBeSmzk58Gv42DE4N/0q KuWK65zXu1KqxmkFMbQNJ8ZewzBpIa/lLlM6liQwD4+9DLGDxdcA0HaaQGdO6j3eEdiE ns+IuXvHJBXTJKcLOHtecUYDdlx9fzsASYNWVDYzLaAvOhqqKl/b6EpfKWdy6clJEPt1 GXOw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=qVHzGTVWWtEn05tU3L+fnhFthJWsXZg327L2cS9cReA=; b=EZql2SgfBWx/z7rKtbeylkMVEdhiT2ZthYjmfnWPI1aSHD+AFwC2zF8zK+Nx+tiYeS 9GgOxdPbuiUrzUFG2bOJric3wcAFXrOW96t3JEQEVwBoyIMepUAFxPiMLKIqAs5qDEwW t1D4FqvvFbY2ItiQUAlNsrUiTsFPNgc0R+RSQdHklXyfF3IFzAsTi0rm9TdhC6e4CuSq 4Fw4yR00q+4CiqxEVraiU49pXnwNFp51FiE3ksanlTLw9Rhj+LaLNEf3zIBGDLE6IUKV gzf5RHgtd4WPDEGRpd8rU1SD1eIg0az4iKgz7j38lONhu+XmTGo9sZ9hpYJ2wIJtrx9I KFhA== X-Gm-Message-State: AOAM532S4oqb66diqv5RKaAo3N4Cvc3o17uof9v8QSrVPGbHbcw+giYm gFZPJzzLB84ovWM71/iH7KeaEp5qy2maDg== X-Google-Smtp-Source: ABdhPJyTj8O5jXXZhT/eyAjSvqAFBV6X8rwzWWJykl40sSKrzmbh96qgf9hgdzeOr88CkVQNoZ0QKg== X-Received: by 2002:a63:4b44:: with SMTP id k4mr15438391pgl.305.1595877626390; Mon, 27 Jul 2020 12:20:26 -0700 (PDT) Received: from hermes.corp.microsoft.com (204-195-22-127.wavecable.com. [204.195.22.127]) by smtp.gmail.com with ESMTPSA id s67sm5994552pfs.117.2020.07.27.12.20.25 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 27 Jul 2020 12:20:25 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger Date: Mon, 27 Jul 2020 12:20:11 -0700 Message-Id: <20200727192015.26418-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200727192015.26418-1-stephen@networkplumber.org> References: <20200604210200.25405-1-stephen@networkplumber.org> <20200727192015.26418-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH 20.08 2/6] kni: fix reference to master/slave process X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" In DPDK, the correct terms for process are primary/secondary. This is bugfix, not a change in terms for new release. Fixes: f2e7592c474c ("kni: fix multi-process support") Signed-off-by: Stephen Hemminger --- lib/librte_kni/rte_kni.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/librte_kni/rte_kni.h b/lib/librte_kni/rte_kni.h index f1bb782c68ea..855facd1a319 100644 --- a/lib/librte_kni/rte_kni.h +++ b/lib/librte_kni/rte_kni.h @@ -212,7 +212,7 @@ const char *rte_kni_get_name(const struct rte_kni *kni); /** * Register KNI request handling for a specified port,and it can - * be called by master process or slave process. + * be called by primary process or secondary process. * * @param kni * pointer to struct rte_kni. -- 2.27.0