From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f67.google.com (mail-wr1-f67.google.com [209.85.221.67]) by dpdk.org (Postfix) with ESMTP id 024872C52 for ; Mon, 19 Nov 2018 13:25:55 +0100 (CET) Received: by mail-wr1-f67.google.com with SMTP id p4so22675539wrt.7 for ; Mon, 19 Nov 2018 04:25:54 -0800 (PST) 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=y+ztrjTFQkZWsssooLoHBdINYhB/mlvBEhTnDRY9Bjw=; b=jtc61Wc4Tfxh+2ot9xo11cIwtAcAS29lld96YDm9P+g0UyxT2uT1lUBgmEpGJwiXfc Me/3lZphgG/1seOWOZ1Tb6zG/mMt8kB3QpBL6mnZZia8SASLrkXNls9CmB36IvOsKis1 rgrRhfcP8lkwTI4+LSCZZDL+yRvfjXkmnFLDpSvy+s+S88LM2ITLUwxL7REah/gxdvBi 1cvHxTVNmBV0uzBv5txRn/wFDlHwXFseuBRMENN7svxqOLroH9yye1+I+MWcTeZic0yl lm/DaUlMwEt5wGPns46RZbaGdIN/2aOZlBDWKgAmR6BT81L7lpPYQso9VSQi458ZNNQj jPfA== X-Gm-Message-State: AA+aEWYqeMyNpXam9i/hlxZSXjy20+PRnoyTBrRxZ0YXBRQZ3q2UzosP EdK6gdyPYBIhzgfiw3Vf96Q= X-Google-Smtp-Source: AFSGD/Vc7PXvMErzrgR6ZWpzpn67N//wWah8FkwUejKpDR+WTUbzUYq+8GhwWc/UFUZR4ZfR41J0tg== X-Received: by 2002:adf:dd06:: with SMTP id a6mr2510945wrm.2.1542630354348; Mon, 19 Nov 2018 04:25:54 -0800 (PST) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id v16sm11282311wrs.75.2018.11.19.04.25.53 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 19 Nov 2018 04:25:53 -0800 (PST) From: Luca Boccassi To: Tiwei Bie Cc: Jens Freimann , dpdk stable Date: Mon, 19 Nov 2018 12:25:24 +0000 Message-Id: <20181119122538.14207-7-bluca@debian.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181119122538.14207-1-bluca@debian.org> References: <20181108180111.25873-1-bluca@debian.org> <20181119122538.14207-1-bluca@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'net/virtio-user: fix typo in error message' has been queued to LTS release 16.11.9 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: , X-List-Received-Date: Mon, 19 Nov 2018 12:25:55 -0000 Hi, FYI, your patch has been queued to LTS release 16.11.9 Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet. It will be pushed if I get no objections before 11/21/18. 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. If the code is different (ie: not only metadata diffs), due for example to a change in context or macro names, please double check it. Thanks. Luca Boccassi --- >>From 479457ba643c5f19ca6fc7e78ac9cbeca865a599 Mon Sep 17 00:00:00 2001 From: Tiwei Bie Date: Tue, 6 Nov 2018 14:40:22 +0800 Subject: [PATCH] net/virtio-user: fix typo in error message [ upstream commit 2dac0df47c5666fe53513a9320cc95f1c5e72d4e ] The param we are checking is VIRTIO_USER_ARG_PATH, instead of VIRTIO_USER_ARG_QUEUE_SIZE. Fixes: ce2eabdd43ec ("net/virtio-user: add virtual device") Signed-off-by: Tiwei Bie Reviewed-by: Jens Freimann --- drivers/net/virtio/virtio_user_ethdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c index b1bd6234c..caa9be5a1 100644 --- a/drivers/net/virtio/virtio_user_ethdev.c +++ b/drivers/net/virtio/virtio_user_ethdev.c @@ -369,7 +369,7 @@ virtio_user_pmd_probe(const char *name, const char *params) } } else { PMD_INIT_LOG(ERR, "arg %s is mandatory for virtio_user\n", - VIRTIO_USER_ARG_QUEUE_SIZE); + VIRTIO_USER_ARG_PATH); goto end; } -- 2.19.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-19 12:15:18.258403609 +0000 +++ 0007-net-virtio-user-fix-typo-in-error-message.patch 2018-11-19 12:15:18.075611433 +0000 @@ -1,13 +1,14 @@ -From 2dac0df47c5666fe53513a9320cc95f1c5e72d4e Mon Sep 17 00:00:00 2001 +From 479457ba643c5f19ca6fc7e78ac9cbeca865a599 Mon Sep 17 00:00:00 2001 From: Tiwei Bie Date: Tue, 6 Nov 2018 14:40:22 +0800 Subject: [PATCH] net/virtio-user: fix typo in error message +[ upstream commit 2dac0df47c5666fe53513a9320cc95f1c5e72d4e ] + The param we are checking is VIRTIO_USER_ARG_PATH, instead of VIRTIO_USER_ARG_QUEUE_SIZE. Fixes: ce2eabdd43ec ("net/virtio-user: add virtual device") -Cc: stable@dpdk.org Signed-off-by: Tiwei Bie Reviewed-by: Jens Freimann @@ -16,13 +17,13 @@ 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/virtio/virtio_user_ethdev.c b/drivers/net/virtio/virtio_user_ethdev.c -index 61b7c0a38..f8791391a 100644 +index b1bd6234c..caa9be5a1 100644 --- a/drivers/net/virtio/virtio_user_ethdev.c +++ b/drivers/net/virtio/virtio_user_ethdev.c -@@ -484,7 +484,7 @@ virtio_user_pmd_probe(struct rte_vdev_device *dev) +@@ -369,7 +369,7 @@ virtio_user_pmd_probe(const char *name, const char *params) } } else { - PMD_INIT_LOG(ERR, "arg %s is mandatory for virtio_user", + PMD_INIT_LOG(ERR, "arg %s is mandatory for virtio_user\n", - VIRTIO_USER_ARG_QUEUE_SIZE); + VIRTIO_USER_ARG_PATH); goto end;