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 812EBA0353; Thu, 6 Aug 2020 19:20:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C6B7B1C0AF; Thu, 6 Aug 2020 19:20:00 +0200 (CEST) Received: from mail-pf1-f194.google.com (mail-pf1-f194.google.com [209.85.210.194]) by dpdk.org (Postfix) with ESMTP id 97C9F1C042 for ; Thu, 6 Aug 2020 19:19:58 +0200 (CEST) Received: by mail-pf1-f194.google.com with SMTP id u185so25432574pfu.1 for ; Thu, 06 Aug 2020 10:19:58 -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=81pYxq5/+eT/Pq9XswZe0EtZmmwug2HifJ5+0N5HMcc=; b=VRtmN+0ZGf2yK1HjxZVxMxK5Vu/+sxJHxPC4z1c8uFTYCEWFOGD62kt5lFuykRaLlU IBDX0u6S3R9RMZ75Sp+J+sVr95pBGxlwSv1Ovjz4HyD196YrocdE5/DuEhp1aKpdeYMd L6CesIT8b6f1QI1HaO8kyYZIlFIXufo6PgtG5KEPP1Oncc2gXd8O9lVKDSaFhkgQ6FTu 6UrAxXrpI52DerrDWKfvcXPR6sRiJ6OIq2CklduaeX97Zg0qvvt6S18Ge3Ugg7uemL1B KDJsEtserqZd54OGhdpARDxFVTcNjuspWfjdPi5vldbeIswcc3DrUv4VNatyGEOif+3W x2oQ== 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=81pYxq5/+eT/Pq9XswZe0EtZmmwug2HifJ5+0N5HMcc=; b=UtLkfueKD0UviF54ltBNg367yxp/LjuDbmo4Xg5YQ3adxbbiQHPgACCMOVbOJ/PZqu hQupGO7WzDtssxn6LaTEuV3YXfrD3MWJ6Jtllmme5v7DHjWhRMR77zMosnbR6c0NCwMx 9fPDKcb+32tSisxnmO/aTM2ivuc1LA4t46HfM2gTf5RFj4otkc8YJJ2TNwbE5JViw4Zb UJj5Ln+c9oJzLiPNWyH6AVAPs/NGr3S3U4x9gm1PBvgI2hslEV8YR4IbaN+/EWh9190z my/p5gBszjeWfwgor74BeFkongJzMstJN/dMtT1Jp/RGrDhtGIawFY6rtRIF3DTNh7E/ QJ1A== X-Gm-Message-State: AOAM533FEmpJYyfE/Q91zRSvDHfJw+D2LnJj9v6ykahgstqFVlWqFbAB +HeUgSxI6mQMUnayb0XiJ59JW8cokOY= X-Google-Smtp-Source: ABdhPJwFrgAJ7m6FusSi0lAZtSDi4FdcJi2UqHNrv8vhnIIYiLnITBC9XbN6XSya38+cQ58VUZ01tA== X-Received: by 2002:a62:647:: with SMTP id 68mr9758830pfg.45.1596734397470; Thu, 06 Aug 2020 10:19:57 -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 h15sm9042821pfo.192.2020.08.06.10.19.56 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 06 Aug 2020 10:19:56 -0700 (PDT) From: Stephen Hemminger To: dev@dpdk.org Cc: Stephen Hemminger , Bruce Richardson Date: Thu, 6 Aug 2020 10:19:43 -0700 Message-Id: <20200806171947.6609-3-stephen@networkplumber.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: <20200806171947.6609-1-stephen@networkplumber.org> References: <20200604210200.25405-1-stephen@networkplumber.org> <20200806171947.6609-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 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 Acked-by: Bruce Richardson --- 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