From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH 2/6] net/tap: allow full length names Date: Fri, 11 Jan 2019 11:48:31 -0800 Message-ID: <20190111114831.04e12ba4@hermes.lan> References: <20190111180659.5972-1-stephen@networkplumber.org> <20190111180659.5972-3-stephen@networkplumber.org> <4AD48FCF-86CB-4C59-AF54-00850FA476D5@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: "dev@dpdk.org" To: "Wiles, Keith" Return-path: Received: from mail-pf1-f194.google.com (mail-pf1-f194.google.com [209.85.210.194]) by dpdk.org (Postfix) with ESMTP id 3B5041BAFB for ; Fri, 11 Jan 2019 20:48:34 +0100 (CET) Received: by mail-pf1-f194.google.com with SMTP id g62so7399685pfd.12 for ; Fri, 11 Jan 2019 11:48:34 -0800 (PST) In-Reply-To: <4AD48FCF-86CB-4C59-AF54-00850FA476D5@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, 11 Jan 2019 19:32:39 +0000 "Wiles, Keith" wrote: > > On Jan 11, 2019, at 12:06 PM, Stephen Hemminger wrote: > > > > The code for set_interface_name was incorrectly assuming that > > space for null byte was necessary with snprintf/strlcpy. > > > > Fixes: 02f96a0a82d1 ("net/tap: add TUN/TAP device PMD") > > Signed-off-by: Stephen Hemminger > > --- > > drivers/net/tap/rte_eth_tap.c | 6 +++--- > > 1 file changed, 3 insertions(+), 3 deletions(-) > > > > diff --git a/drivers/net/tap/rte_eth_tap.c b/drivers/net/tap/rte_eth_tap.c > > index 1c00681ba0eb..d7f77d664502 100644 > > --- a/drivers/net/tap/rte_eth_tap.c > > +++ b/drivers/net/tap/rte_eth_tap.c > > @@ -1892,10 +1892,10 @@ set_interface_name(const char *key __rte_unused, > > char *name = (char *)extra_args; > > > > if (value) > > - strlcpy(name, value, RTE_ETH_NAME_MAX_LEN - 1); > > + strlcpy(name, value, RTE_ETH_NAME_MAX_LEN); > > else > > - snprintf(name, RTE_ETH_NAME_MAX_LEN - 1, "%s%d", > > - DEFAULT_TAP_NAME, (tap_unit - 1)); > > + snprintf(name, RTE_ETH_NAME_MAX_LEN, "%s%d", > > + DEFAULT_TAP_NAME, tun_unit - 1); > > Was this meant to change from tap_unit to tun_unit here, if so why? Accident. tun_unit disappears in later patch.