From patchwork Fri Nov 10 08:14:27 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pavel Shirshov X-Patchwork-Id: 31330 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 5BD671B65D; Fri, 10 Nov 2017 09:14:41 +0100 (CET) Received: from mail-pf0-f195.google.com (mail-pf0-f195.google.com [209.85.192.195]) by dpdk.org (Postfix) with ESMTP id 989AF1B2A4 for ; Fri, 10 Nov 2017 09:14:39 +0100 (CET) Received: by mail-pf0-f195.google.com with SMTP id x7so6228161pfa.1 for ; Fri, 10 Nov 2017 00:14:39 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:subject:date:message-id; bh=RLbAwWBmRhITCDCWmW0n9T5uDwyudhvXKeFCZ8IkPQQ=; b=sZLEbfOMBrRW/tuOnXo4Q5HObWf5QRCoxtlaMmO46wnZ4fR1Lo6cfXGTRc2iTy/ItQ U+wQq0rWWXh9id5kQXf4VX8Sgfe/gpqvaILKC7bAbWw6NUC/JZNvuAbgsSRYNfF9Fqb3 aYpI8NUoC/70j7wgGzM2hbE7TyWj/X9k/qcIFQNQOopRYYwy/005KQUXsV8Cyck1ZMC0 8WI+MrZe44DbMMZXjOhlv9xe+qlDHGwysR8J9hasYc5uYRQKLXLCfq5XoI+wegfeA0H8 nEt9q2w/HyuYr0VQ2Om/M3MuQa8XC/Z+j4WY9Mn8PgCbg8eApc3jBn0QL4X0XMz7TAba Dq7g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=RLbAwWBmRhITCDCWmW0n9T5uDwyudhvXKeFCZ8IkPQQ=; b=POUlDNSNCBFSFclEgh+JE/xL7qTG3P2jT/c4BVDWol8lMG13+b0o8nW/bm/+kGXI+M BshwEsVcvfYWm+e8aiYR3hx7WCWtcNTjYWrvzmrwJlhndtM9BvVjXXSx36jm52C79IQp JIEx0c7thTjEfKP1iNyz9GA/X0esCuny1r62Kfta5KdJAFoXKWb4Y0G6I9kQeNTqa7HE G9hoHA4g6AL+S4aQ3idydPeB7DtEXWWXFfYTKSgog7nsUOtc48SaR6Wdcmf+hwxUzES3 1QzyBDS/jhSIoLOQalnrQAXdpPzSvUPVmyak9wNeDdoZulFYCXp4mIqQAmkhr2LK3gHf ExTA== X-Gm-Message-State: AJaThX783bWiEyJsZ+dLsYWjGIbzywxoOYmb8I0EqSGHLYgcMLwEAHie AoVAEtaUCMazWMfHkQCVnznOWQ== X-Google-Smtp-Source: ABhQp+SaopGKfrVMmFDjOl9unMD3jbTDZnGnIpJhoyRnxy7YWtu53DpdI3MWMk7smWnYpXkd62H2+w== X-Received: by 10.98.24.20 with SMTP id 20mr3460962pfy.71.1510301678665; Fri, 10 Nov 2017 00:14:38 -0800 (PST) Received: from localhost.localdomain ([50.35.88.106]) by smtp.gmail.com with ESMTPSA id x188sm6686240pgx.33.2017.11.10.00.14.37 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Fri, 10 Nov 2017 00:14:37 -0800 (PST) From: Pavel Shirshov To: dev@dpdk.org Date: Fri, 10 Nov 2017 00:14:27 -0800 Message-Id: <1510301667-18383-1-git-send-email-pavel.shirshov@gmail.com> X-Mailer: git-send-email 2.7.4 Subject: [dpdk-dev] [PATCH] lib/librte_mbuf: Fix typos in documentation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Pavel Shirshov --- lib/librte_mbuf/rte_mbuf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h index 6d91f7d..7e326bb 100644 --- a/lib/librte_mbuf/rte_mbuf.h +++ b/lib/librte_mbuf/rte_mbuf.h @@ -850,10 +850,10 @@ rte_mbuf_sanity_check(const struct rte_mbuf *m, int is_header); } while (0) /** - * Allocate an unitialized mbuf from mempool *mp*. + * Allocate an uninitialized mbuf from mempool *mp*. * * This function can be used by PMDs (especially in RX functions) to - * allocate an unitialized mbuf. The driver is responsible of + * allocate an uninitialized mbuf. The driver is responsible of * initializing all the required fields. See rte_pktmbuf_reset(). * For standard needs, prefer rte_pktmbuf_alloc(). * @@ -1778,7 +1778,7 @@ const void *__rte_pktmbuf_read(const struct rte_mbuf *m, uint32_t off, * @param len * The amount of bytes to read. * @param buf - * The buffer where data is copied if it is not contigous in mbuf + * The buffer where data is copied if it is not contiguous in mbuf * data. Its length should be at least equal to the len parameter. * @return * The pointer to the data, either in the mbuf if it is contiguous,