From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-f194.google.com (mail-pf0-f194.google.com [209.85.192.194]) by dpdk.org (Postfix) with ESMTP id D174D5953 for ; Mon, 23 May 2016 18:41:35 +0200 (CEST) Received: by mail-pf0-f194.google.com with SMTP id g132so19381644pfb.3 for ; Mon, 23 May 2016 09:41:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=ogKs5tGR/NjyFCw6LFmBjLS/FLNyGEVDgY6RZOmNX9s=; b=o7LLfhhvTgpiVr8JHRqgrX8Re0YUIby/pAeAoKMOShYSj718qX88n4gt8mad1rJQmZ nIoiAr88xQN4ubpANFVWMvy7xRPERZNCEoFM2Ef8MybrUxKJNicke4+RarPCqgSZUjv3 Qw+AV+q9Y7ZvYIk7oLn8TyJYCgVStOPmJ1ASQmE7qpSYtgbJUmj3U/Q6rAIqURY+pMNJ cxSIZw6yOL1grYGQd0ZSlCqiwKk8z7QOG3Wo7VCNzasuGA7IiN3dnW9Uw5aCNFsdofGk ycixHN5O81Pqtkh6dI6+ROgrJjTrq7/YzGHOVf02v3fNMranTgY/vPQqVKYSwly2SG5t CvEg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=ogKs5tGR/NjyFCw6LFmBjLS/FLNyGEVDgY6RZOmNX9s=; b=EqqBQv7kynKAiRynBXEGcnK+0FoT6C/72ArXBkJbCgRYDsLc7YtHydkoNRtUngzQAk uK7E3HmIV+oP67c4zV/VDvjMVPoiOPXELB9l122NR1rNZc/T/nov9gDns0INftBC42q2 ijFYN9Arsf0FvJ1RmE/fT6J/eps928yyS9FWaDvwGLI+0ZhG8AMwFPOw9TbSSrFADc+t hEPH3LuT8mDZfm9KUl5HD7Qw3yCus7Scvq+U18QsaandN61EOK9tfJ363G8MFVhvIZFg StBRG4XJejqJbqJvzONIBtNocvdXskIkVn0S69HeSUTS/8JB5eXTr7NgKr7wZoOxq7vv e45g== X-Gm-Message-State: AOPr4FWp91Wk7ATjG6lFloANmX6AbYa828muSNVS+T3S10SHUb3qqsn9/2xarc4dKL2zxQ== X-Received: by 10.98.93.7 with SMTP id r7mr28896919pfb.66.1464021695122; Mon, 23 May 2016 09:41:35 -0700 (PDT) Received: from localhost.localdomain ([50.242.71.57]) by smtp.gmail.com with ESMTPSA id 5sm47858112pfi.91.2016.05.23.09.41.33 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 23 May 2016 09:41:34 -0700 (PDT) From: Alex Wang To: dev@dpdk.org Cc: ferruh.yigit@intel.com, Alex Wang Date: Sat, 21 May 2016 00:25:21 -0700 Message-Id: <1463815522-27916-1-git-send-email-ee07b291@gmail.com> X-Mailer: git-send-email 2.1.4 Subject: [dpdk-dev] [PATCH 1/2 v2] kni: fix inverted function comments X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 23 May 2016 16:41:36 -0000 From: Alex Wang The 'mbufs' alloc/free descriptions for 'rte_kni_tx_burst()' and 'rte_kni_rx_burst()' should be inverted. Fixes: 3fc5ca2 (kni: initial import) Signed-off-by: Alex Wang --- lib/librte_kni/rte_kni.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/librte_kni/rte_kni.h b/lib/librte_kni/rte_kni.h index ef9faa9..25fa45e 100644 --- a/lib/librte_kni/rte_kni.h +++ b/lib/librte_kni/rte_kni.h @@ -161,8 +161,8 @@ extern int rte_kni_handle_request(struct rte_kni *kni); /** * Retrieve a burst of packets from a KNI interface. The retrieved packets are * stored in rte_mbuf structures whose pointers are supplied in the array of - * mbufs, and the maximum number is indicated by num. It handles the freeing of - * the mbufs in the free queue of KNI interface. + * mbufs, and the maximum number is indicated by num. It handles allocating + * the mbufs for KNI interface alloc queue. * * @param kni * The KNI interface context. @@ -180,8 +180,8 @@ extern unsigned rte_kni_rx_burst(struct rte_kni *kni, /** * Send a burst of packets to a KNI interface. The packets to be sent out are * stored in rte_mbuf structures whose pointers are supplied in the array of - * mbufs, and the maximum number is indicated by num. It handles allocating - * the mbufs for KNI interface alloc queue. + * mbufs, and the maximum number is indicated by num. It handles the freeing of + * the mbufs in the free queue of KNI interface. * * @param kni * The KNI interface context. -- 2.1.4