From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Hemminger Subject: Re: [PATCH v3 2/4] kni: fix kni fifo synchronization Date: Mon, 8 Oct 2018 14:53:08 -0700 Message-ID: <20181008145308.0fbc64de@xeon-e3> References: <1537364560-4124-1-git-send-email-phil.yang@arm.com> <1538989906-8349-1-git-send-email-phil.yang@arm.com> <1538989906-8349-2-git-send-email-phil.yang@arm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: dev@dpdk.org, jerin.jacob@caviumnetworks.com, Gavin.Hu@arm.com, Honnappa.Nagarahalli@arm.com, Ola.Liljedahl@arm.com, ferruh.yigit@intel.com To: Phil Yang Return-path: Received: from mail-pg1-f193.google.com (mail-pg1-f193.google.com [209.85.215.193]) by dpdk.org (Postfix) with ESMTP id 163151B1DA for ; Mon, 8 Oct 2018 23:53:19 +0200 (CEST) Received: by mail-pg1-f193.google.com with SMTP id 23-v6so8405566pgc.8 for ; Mon, 08 Oct 2018 14:53:19 -0700 (PDT) In-Reply-To: <1538989906-8349-2-git-send-email-phil.yang@arm.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 Mon, 8 Oct 2018 17:11:44 +0800 Phil Yang wrote: > diff --git a/lib/librte_kni/rte_kni_fifo.h b/lib/librte_kni/rte_kni_fifo.h > index ac26a8c..70ac14e 100644 > --- a/lib/librte_kni/rte_kni_fifo.h > +++ b/lib/librte_kni/rte_kni_fifo.h > @@ -28,8 +28,9 @@ kni_fifo_put(struct rte_kni_fifo *fifo, void **data, unsigned num) > { > unsigned i = 0; > unsigned fifo_write = fifo->write; > - unsigned fifo_read = fifo->read; > unsigned new_write = fifo_write; > + rte_smp_rmb(); > + unsigned fifo_read = fifo->read; > The patch makes sense, but this function should be changed to match kernel code style. That means no declarations after initial block, and use 'unsigned int' rather than 'unsigned' Also. why is i initialized? Best practice now is to not do gratitious initialization since it defeats compiler checks for accidental use of uninitialized variables. What makes sense is something like: kni_fifo_put(struct rte_kni_fifo *fifo, void **data, unsigned num) { unsigned int i, fifo_read, fifo_write, new_write; fifo_write = fifo->write; new_write = fifo_write; rte_smb_rmb(); fifo_read = fifo->read; Sorry, blaming you for issues which are inherited from original KNI code. Maybe someone should run kernel checkpatch (not DPDK checkpatch) on it and fix those.