From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id EEBA22B93 for ; Mon, 29 Oct 2018 13:53:58 +0100 (CET) Received: by mail-wr1-f66.google.com with SMTP id t10-v6so8540608wrn.10 for ; Mon, 29 Oct 2018 05:53:58 -0700 (PDT) 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=GG6ApxvfRz7szqewOBZ9z1UjvuotPxXjhmyjUjib//I=; b=kzjYNGqoZlcLDBkM81OBJk8uyIXENzZ2hSCA77DCYdFhTKDv7IYIuddEMDa52GTkCF PztDw4Pj7LdNfAwcwQI9DtSYrRq+4jElzTyTQdiRIlyFthNGueLfB69P52dZMGm6IG25 wkjIev3wMKXywynCwlU6hI8rC/OarUWBi63+BkKARUDjQvQlTNken9FvtmjWPwp3+CS3 NTI5PO3dY9kRu+CvxHHNUwCmVxZqt+dj/JLL0rsKhTooni+M6ab7NIZsT4nk5s/rhOAQ SBm6DUFo54x57taeAkfKKLBeDKPl4LqbuciGN3Oy1TZ7gik4A4DY9gG1BqqfvfrZyTJb mtng== X-Gm-Message-State: AGRZ1gKPjCg4GYvMTWMukVTAbvIHhkbpw80ESBQapi2JMrpQAftrb4S6 n4X2Y11MFUUM3tbxS9WAbDw= X-Google-Smtp-Source: AJdET5cyJzPeLbrRAGovQmpvTIdmXxthvIkVInFUXFqLiTRfZvqEDmP2ysferfqZbE2NHWk/LV5bgA== X-Received: by 2002:adf:d101:: with SMTP id a1-v6mr15400705wri.17.1540817638458; Mon, 29 Oct 2018 05:53:58 -0700 (PDT) Received: from localhost ([2a01:4b00:f419:6f00:8361:8946:ba2b:d556]) by smtp.gmail.com with ESMTPSA id c21-v6sm12678213wmh.26.2018.10.29.05.53.57 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Mon, 29 Oct 2018 05:53:57 -0700 (PDT) From: Luca Boccassi To: Phil Yang Cc: Honnappa Nagarahalli , Gavin Hu , Ferruh Yigit , dpdk stable Date: Mon, 29 Oct 2018 12:53:17 +0000 Message-Id: <20181029125329.17729-8-bluca@debian.org> X-Mailer: git-send-email 2.19.1 In-Reply-To: <20181029125329.17729-1-bluca@debian.org> References: <20181015115144.27626-1-bluca@debian.org> <20181029125329.17729-1-bluca@debian.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] patch 'kni: fix kernel FIFO synchronization' 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, 29 Oct 2018 12:53:59 -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 10/31/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 20b679d293476cef90725fbd4b0ea912dfa78a78 Mon Sep 17 00:00:00 2001 From: Phil Yang Date: Mon, 8 Oct 2018 17:11:45 +0800 Subject: [PATCH] kni: fix kernel FIFO synchronization [ upstream commit 711859cd0d076c7abc0c96ce637129a03280645f ] Adding memory barrier to make sure the values being synced before updating fifo_write in kni_fifo_put and fifo_read in kni_fifo_get. Fixes: 3fc5ca2f6352 ("kni: initial import") Signed-off-by: Phil Yang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ferruh Yigit --- .../eal/include/exec-env/rte_kni_common.h | 1 + lib/librte_eal/linuxapp/kni/kni_fifo.h | 16 ++++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h index 09713b0c2..1dc161c2b 100644 --- a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h +++ b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h @@ -61,6 +61,7 @@ #ifdef __KERNEL__ #include +#include #define RTE_STD_C11 #else #include diff --git a/lib/librte_eal/linuxapp/kni/kni_fifo.h b/lib/librte_eal/linuxapp/kni/kni_fifo.h index 025ec1c94..7f1d32c54 100644 --- a/lib/librte_eal/linuxapp/kni/kni_fifo.h +++ b/lib/librte_eal/linuxapp/kni/kni_fifo.h @@ -35,7 +35,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) { uint32_t i = 0; uint32_t fifo_write = fifo->write; - uint32_t fifo_read = fifo->read; + uint32_t fifo_read = smp_load_acquire(&fifo->read); uint32_t new_write = fifo_write; for (i = 0; i < num; i++) { @@ -46,7 +46,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) fifo->buffer[fifo_write] = data[i]; fifo_write = new_write; } - fifo->write = fifo_write; + smp_store_release(&fifo->write, fifo_write); return i; } @@ -59,7 +59,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) { uint32_t i = 0; uint32_t new_read = fifo->read; - uint32_t fifo_write = fifo->write; + uint32_t fifo_write = smp_load_acquire(&fifo->write); for (i = 0; i < num; i++) { if (new_read == fifo_write) @@ -68,7 +68,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) data[i] = fifo->buffer[new_read]; new_read = (new_read + 1) & (fifo->len - 1); } - fifo->read = new_read; + smp_store_release(&fifo->read, new_read); return i; } @@ -79,7 +79,9 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) static inline uint32_t kni_fifo_count(struct rte_kni_fifo *fifo) { - return (fifo->len + fifo->write - fifo->read) & (fifo->len - 1); + uint32_t fifo_write = smp_load_acquire(&fifo->write); + uint32_t fifo_read = smp_load_acquire(&fifo->read); + return (fifo->len + fifo_write - fifo_read) & (fifo->len - 1); } /** @@ -88,7 +90,9 @@ kni_fifo_count(struct rte_kni_fifo *fifo) static inline uint32_t kni_fifo_free_count(struct rte_kni_fifo *fifo) { - return (fifo->read - fifo->write - 1) & (fifo->len - 1); + uint32_t fifo_write = smp_load_acquire(&fifo->write); + uint32_t fifo_read = smp_load_acquire(&fifo->read); + return (fifo_read - fifo_write - 1) & (fifo->len - 1); } #ifdef RTE_KNI_VHOST -- 2.19.1 --- Diff of the applied patch vs upstream commit (please double-check if non-empty: --- --- - 2018-10-29 12:48:14.625349364 +0000 +++ 0008-kni-fix-kernel-FIFO-synchronization.patch 2018-10-29 12:48:14.446417982 +0000 @@ -1,29 +1,42 @@ -From 711859cd0d076c7abc0c96ce637129a03280645f Mon Sep 17 00:00:00 2001 +From 20b679d293476cef90725fbd4b0ea912dfa78a78 Mon Sep 17 00:00:00 2001 From: Phil Yang Date: Mon, 8 Oct 2018 17:11:45 +0800 Subject: [PATCH] kni: fix kernel FIFO synchronization +[ upstream commit 711859cd0d076c7abc0c96ce637129a03280645f ] + Adding memory barrier to make sure the values being synced before updating fifo_write in kni_fifo_put and fifo_read in kni_fifo_get. Fixes: 3fc5ca2f6352 ("kni: initial import") -Cc: stable@dpdk.org Signed-off-by: Phil Yang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Gavin Hu Reviewed-by: Ferruh Yigit --- - kernel/linux/kni/kni_fifo.h | 16 ++++++++++------ .../eal/include/exec-env/rte_kni_common.h | 1 + + lib/librte_eal/linuxapp/kni/kni_fifo.h | 16 ++++++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) -diff --git a/kernel/linux/kni/kni_fifo.h b/kernel/linux/kni/kni_fifo.h -index 9a4762de2..2cb3a4a7b 100644 ---- a/kernel/linux/kni/kni_fifo.h -+++ b/kernel/linux/kni/kni_fifo.h -@@ -16,7 +16,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) +diff --git a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h +index 09713b0c2..1dc161c2b 100644 +--- a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h ++++ b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h +@@ -61,6 +61,7 @@ + + #ifdef __KERNEL__ + #include ++#include + #define RTE_STD_C11 + #else + #include +diff --git a/lib/librte_eal/linuxapp/kni/kni_fifo.h b/lib/librte_eal/linuxapp/kni/kni_fifo.h +index 025ec1c94..7f1d32c54 100644 +--- a/lib/librte_eal/linuxapp/kni/kni_fifo.h ++++ b/lib/librte_eal/linuxapp/kni/kni_fifo.h +@@ -35,7 +35,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) { uint32_t i = 0; uint32_t fifo_write = fifo->write; @@ -32,7 +45,7 @@ uint32_t new_write = fifo_write; for (i = 0; i < num; i++) { -@@ -27,7 +27,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) +@@ -46,7 +46,7 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, uint32_t num) fifo->buffer[fifo_write] = data[i]; fifo_write = new_write; } @@ -41,7 +54,7 @@ return i; } -@@ -40,7 +40,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) +@@ -59,7 +59,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) { uint32_t i = 0; uint32_t new_read = fifo->read; @@ -50,7 +63,7 @@ for (i = 0; i < num; i++) { if (new_read == fifo_write) -@@ -49,7 +49,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) +@@ -68,7 +68,7 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) data[i] = fifo->buffer[new_read]; new_read = (new_read + 1) & (fifo->len - 1); } @@ -59,7 +72,7 @@ return i; } -@@ -60,7 +60,9 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) +@@ -79,7 +79,9 @@ kni_fifo_get(struct rte_kni_fifo *fifo, void **data, uint32_t num) static inline uint32_t kni_fifo_count(struct rte_kni_fifo *fifo) { @@ -70,7 +83,7 @@ } /** -@@ -69,7 +71,9 @@ kni_fifo_count(struct rte_kni_fifo *fifo) +@@ -88,7 +90,9 @@ kni_fifo_count(struct rte_kni_fifo *fifo) static inline uint32_t kni_fifo_free_count(struct rte_kni_fifo *fifo) { @@ -80,19 +93,7 @@ + return (fifo_read - fifo_write - 1) & (fifo->len - 1); } - #endif /* _KNI_FIFO_H_ */ -diff --git a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h -index cfa9448bd..58e8533be 100644 ---- a/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h -+++ b/lib/librte_eal/linuxapp/eal/include/exec-env/rte_kni_common.h -@@ -8,6 +8,7 @@ - - #ifdef __KERNEL__ - #include -+#include - #define RTE_STD_C11 - #else - #include + #ifdef RTE_KNI_VHOST -- 2.19.1