From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f41.google.com (mail-wg0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id 3470F5323 for ; Sat, 31 Jan 2015 21:52:17 +0100 (CET) Received: by mail-wg0-f41.google.com with SMTP id a1so32448419wgh.0 for ; Sat, 31 Jan 2015 12:52:17 -0800 (PST) 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:in-reply-to :references; bh=37RtZbbCNDuwQz6/ZYtXFvPYdAzxmZ7SunM0qnxrmZ8=; b=jqfC/WprjM5FVHm9/NZT9zCel3vzMhasCyMbp5k2pd0HbaQNSfM35A19z4drmwZgmt h86Ozv6k2dwB7+kVcApk9lz4rnf66PQyELXHp8vY052R83jhbNEY4SppfOscwPIbhDne qCOUt70PeBOeYC0W5CWDXOOArSUhz06JIdBKc9wkZvTlR4GNN+oLOINWuxBtL4j9YhKV OecV/gvMejGl3Wv92AlT4ZLC86zf9NRq5IrV/vEqVDVVbRnLDcnJPH/aFGozzZAhigNA fSQTuuR9wKuG8+RqwVQOvnoPPBDzn4gO2JKSfjdXstpx49WpDxAj31BHvaMKLIAlocta Jspw== X-Gm-Message-State: ALoCoQnySDSWI7uwvjkRFXnBaLeUR6oW+eVy7s1oZhasKrS8wcU4UzuHjL6Oqo/T4x0pZleFZcnT X-Received: by 10.180.106.5 with SMTP id gq5mr8625775wib.34.1422737537108; Sat, 31 Jan 2015 12:52:17 -0800 (PST) Received: from uryu.home.lan ([212.76.224.242]) by mx.google.com with ESMTPSA id cf12sm20656837wjb.10.2015.01.31.12.52.15 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sat, 31 Jan 2015 12:52:16 -0800 (PST) From: Stephen Hemminger To: dev@dpdk.org Date: Sat, 31 Jan 2015 20:51:59 +0000 Message-Id: <1422737522-16481-7-git-send-email-stephen@networkplumber.org> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1422737522-16481-1-git-send-email-stephen@networkplumber.org> References: <1422737522-16481-1-git-send-email-stephen@networkplumber.org> Cc: Stephen Hemminger Subject: [dpdk-dev] [PATCH 07/10] vhost: fix spelling errors 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: Sat, 31 Jan 2015 20:52:17 -0000 From: Stephen Hemminger More codespell Signed-off-by: Stephen Hemminger --- lib/librte_vhost/eventfd_link/eventfd_link.h | 2 +- lib/librte_vhost/rte_virtio_net.h | 2 +- lib/librte_vhost/vhost_rxtx.c | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/librte_vhost/eventfd_link/eventfd_link.h b/lib/librte_vhost/eventfd_link/eventfd_link.h index ea619ec..0711403 100644 --- a/lib/librte_vhost/eventfd_link/eventfd_link.h +++ b/lib/librte_vhost/eventfd_link/eventfd_link.h @@ -66,7 +66,7 @@ #define EVENTFD_COPY 1 /* - * arguements for the EVENTFD_COPY ioctl + * arguments for the EVENTFD_COPY ioctl */ struct eventfd_copy { unsigned target_fd; /* fd in the target pid */ diff --git a/lib/librte_vhost/rte_virtio_net.h b/lib/librte_vhost/rte_virtio_net.h index 0bf07c7..f4ebb07 100644 --- a/lib/librte_vhost/rte_virtio_net.h +++ b/lib/librte_vhost/rte_virtio_net.h @@ -188,7 +188,7 @@ int rte_vhost_driver_session_start(void); /** * This function adds buffers to the virtio devices RX virtqueue. Buffers can * be received from the physical port or from another virtual device. A packet - * count is returned to indicate the number of packets that were succesfully + * count is returned to indicate the number of packets that were successfully * added to the RX queue. * @param queue_id * virtio queue index in mq case diff --git a/lib/librte_vhost/vhost_rxtx.c b/lib/librte_vhost/vhost_rxtx.c index ccfd82f..7a2e935 100644 --- a/lib/librte_vhost/vhost_rxtx.c +++ b/lib/librte_vhost/vhost_rxtx.c @@ -45,7 +45,7 @@ /** * This function adds buffers to the virtio devices RX virtqueue. Buffers can * be received from the physical port or from another virtio device. A packet - * count is returned to indicate the number of packets that are succesfully + * count is returned to indicate the number of packets that are successfully * added to the RX queue. This function works when mergeable is disabled. */ static inline uint32_t __attribute__((always_inline)) @@ -662,7 +662,7 @@ rte_vhost_dequeue_burst(struct virtio_net *dev, uint16_t queue_id, if (seg_avail == 0) { /* * The current segment hasn't - * room to accomodate more + * room to accommodate more * data. */ cur->data_len = seg_offset; -- 2.1.4