From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f49.google.com (mail-wm1-f49.google.com [209.85.128.49]) by dpdk.org (Postfix) with ESMTP id 3867F28FD for ; Thu, 8 Nov 2018 19:01:32 +0100 (CET) Received: by mail-wm1-f49.google.com with SMTP id 124-v6so2191062wmw.0 for ; Thu, 08 Nov 2018 10:01:32 -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=seo90aFutFICXBewzclY8x1wclWFdvOdU0w8hIsjycM=; b=sV7Bbf9zuo8UNdnY6PqaxQiPzrCD4HC9ZriK1mu8Ahn/YQXe5kEUz+1+/fbvPy7Fa7 39NrM7pjug7LMFAKtz4hQchm/m4VU4XJ9V0CSAYuY0hxij6erVWqctv4IDQbSEtbmyK4 YqNit5KgGQ1w9ArPBtnkpA1E7BrqSOeQRBk9hPGOrE44QhtbWRhQoOsBUqaww+uNRzIQ ShcmKQugGeHMTJKbu7zTAKj94ErRNVdyd/NKd+CDa3IXNVqY2l995rdikthtM7Prpv4r TTjLcIYHClvsyb8q++Ejil9+Og3crbgQTz9qzQIDN4S2C3koyKsAjHxdlAsz7hHRx1ZV qSeA== X-Gm-Message-State: AGRZ1gIM5NKhi/ZlrWKYqFpi/716oVgBLbDtgXr8Q+lMuIpHFAoLF8vs dDQzmm2TmkzX2q5IzArr0dM= X-Google-Smtp-Source: AJdET5dWzZMKihlXwTPDV2W2juUsYCl1Vc0+HlFiCvz5rKiN+cnEK3eJXJSiSzk/9amYwt8UJpEkDg== X-Received: by 2002:a1c:e03:: with SMTP id 3-v6mr2030377wmo.13.1541700091777; Thu, 08 Nov 2018 10:01:31 -0800 (PST) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id x8-v6sm10260742wrd.54.2018.11.08.10.01.30 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Thu, 08 Nov 2018 10:01:30 -0800 (PST) From: Luca Boccassi To: Tiwei Bie Cc: Maxime Coquelin , dpdk stable Date: Thu, 8 Nov 2018 18:01:01 +0000 Message-Id: <20181108180111.25873-5-bluca@debian.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181108180111.25873-1-bluca@debian.org> References: <20181029125329.17729-20-bluca@debian.org> <20181108180111.25873-1-bluca@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'net/vhost: fix parameters string' 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: Thu, 08 Nov 2018 18:01:32 -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/10/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 8ff27b743b657dc60f2c7a749de3bf7cb9d8238b Mon Sep 17 00:00:00 2001 From: Tiwei Bie Date: Thu, 25 Oct 2018 17:46:59 +0800 Subject: [PATCH] net/vhost: fix parameters string [ upstream commit 1a7a39eb3d380b6f49ad9d1e29a01bcfb306cba4 ] Add the missing params to the param string. Fixes: 39cac2adcad0 ("net/vhost: add client option") Fixes: 4ce97c6f6b4f ("net/vhost: add an option to enable dequeue zero copy") Fixes: 447e0d379756 ("net/vhost: add parameter to enable IOMMU feature") Fixes: 6d6e95cec455 ("net/vhost: add parameter to enable postcopy") Signed-off-by: Tiwei Bie Reviewed-by: Maxime Coquelin --- drivers/net/vhost/rte_eth_vhost.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c index 12922df64..5858e5362 100644 --- a/drivers/net/vhost/rte_eth_vhost.c +++ b/drivers/net/vhost/rte_eth_vhost.c @@ -1248,4 +1248,6 @@ RTE_PMD_REGISTER_VDEV(net_vhost, pmd_vhost_drv); RTE_PMD_REGISTER_ALIAS(net_vhost, eth_vhost); RTE_PMD_REGISTER_PARAM_STRING(net_vhost, "iface= " - "queues="); + "queues= " + "client=<0|1> " + "dequeue-zero-copy=<0|1> "); -- 2.19.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-11-08 17:59:30.160910328 +0000 +++ 0005-net-vhost-fix-parameters-string.patch 2018-11-08 17:59:30.048751011 +0000 @@ -1,39 +1,35 @@ -From 1a7a39eb3d380b6f49ad9d1e29a01bcfb306cba4 Mon Sep 17 00:00:00 2001 +From 8ff27b743b657dc60f2c7a749de3bf7cb9d8238b Mon Sep 17 00:00:00 2001 From: Tiwei Bie Date: Thu, 25 Oct 2018 17:46:59 +0800 Subject: [PATCH] net/vhost: fix parameters string +[ upstream commit 1a7a39eb3d380b6f49ad9d1e29a01bcfb306cba4 ] + Add the missing params to the param string. Fixes: 39cac2adcad0 ("net/vhost: add client option") Fixes: 4ce97c6f6b4f ("net/vhost: add an option to enable dequeue zero copy") Fixes: 447e0d379756 ("net/vhost: add parameter to enable IOMMU feature") Fixes: 6d6e95cec455 ("net/vhost: add parameter to enable postcopy") -Cc: stable@dpdk.org Signed-off-by: Tiwei Bie Reviewed-by: Maxime Coquelin --- - drivers/net/vhost/rte_eth_vhost.c | 6 +++++- - 1 file changed, 5 insertions(+), 1 deletion(-) + drivers/net/vhost/rte_eth_vhost.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/drivers/net/vhost/rte_eth_vhost.c b/drivers/net/vhost/rte_eth_vhost.c -index b38a4b6b1..42bdfcbd5 100644 +index 12922df64..5858e5362 100644 --- a/drivers/net/vhost/rte_eth_vhost.c +++ b/drivers/net/vhost/rte_eth_vhost.c -@@ -1467,7 +1467,11 @@ RTE_PMD_REGISTER_VDEV(net_vhost, pmd_vhost_drv); +@@ -1248,4 +1248,6 @@ RTE_PMD_REGISTER_VDEV(net_vhost, pmd_vhost_drv); RTE_PMD_REGISTER_ALIAS(net_vhost, eth_vhost); RTE_PMD_REGISTER_PARAM_STRING(net_vhost, "iface= " - "queues="); + "queues= " + "client=<0|1> " -+ "dequeue-zero-copy=<0|1> " -+ "iommu-support=<0|1> " -+ "postcopy-support=<0|1>"); - - RTE_INIT(vhost_init_log) - { ++ "dequeue-zero-copy=<0|1> "); -- 2.19.1