From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id B750FA04C1 for ; Thu, 21 Nov 2019 14:27:12 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7BDD42BBD; Thu, 21 Nov 2019 14:27:12 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 250C22BA3; Thu, 21 Nov 2019 14:27:06 +0100 (CET) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id xALDQwgL011913; Thu, 21 Nov 2019 05:27:05 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0818; bh=bVpr9SkRMuKzEexX4NVHhQhsblz4xSG7d8GxKOiQT1M=; b=OmjJbR+ws4Dgb1egZg7l6WFtvqxEw+tJe6ttjnYelSwpCbK5GvZ4K7d2TS6vC5yJ7AeM +YTM9rP6XQgJ6JOLZsvhQJNJVsP71KJ3Mx4z/6CyKdqwLgVLeXaErDS9XthT3C5AlIH7 4uF6K2PWZMBEdzdaJ2rKIpwBh4Pu012YmcsVokjiY69l8rDYqGjUv+8OfkyXSJjnczAT 22nbCL4bBwTiAD8ctlT+Q9tL7nwqf+NEqn74lJr+i3BEvhLqk7Iuaw4lptJ2vx1j+8c7 dO6Z4iCeS/V9DyljVnP5E7OuGRVH45R/Hq2zBJWltb302Xcd08qTtT+ehYHkz0Ll7Mex rg== Received: from sc-exch04.marvell.com ([199.233.58.184]) by mx0a-0016f401.pphosted.com with ESMTP id 2wc842dd7a-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 21 Nov 2019 05:27:05 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH04.marvell.com (10.93.176.84) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 21 Nov 2019 05:27:04 -0800 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 21 Nov 2019 05:27:04 -0800 Received: from amok.marvell.com (unknown [10.95.130.45]) by maili.marvell.com (Postfix) with ESMTP id 045123F7040; Thu, 21 Nov 2019 05:27:02 -0800 (PST) From: Andrzej Ostruszka To: , Keith Wiles , John McNamara , Marko Kovacevic CC: Date: Thu, 21 Nov 2019 14:27:01 +0100 Message-ID: <20191121132701.31856-1-aostruszka@marvell.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,18.0.572 definitions=2019-11-21_02:2019-11-21,2019-11-21 signatures=0 Subject: [dpdk-stable] [PATCH] doc: minor fixes in tap guide 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: , Errors-To: stable-bounces@dpdk.org Sender: "stable" Corrected one typo and ip address. Signed-off-by: Andrzej Ostruszka Fixes: de96fe68ae95 ("net/tap: add basic flow API patterns and actions") Cc: stable@dpdk.org --- doc/guides/nics/tap.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/nics/tap.rst b/doc/guides/nics/tap.rst index 4b6d77d37..b6a626a40 100644 --- a/doc/guides/nics/tap.rst +++ b/doc/guides/nics/tap.rst @@ -76,7 +76,7 @@ Please change the IP addresses as you see fit. If routing is enabled on the host you can also communicate with the DPDK App over the internet via a standard socket layer application as long as you -account for the protocol handing in the application. +account for the protocol handling in the application. If you have a Network Stack in your DPDK application or something like it you can utilize that stack to handle the network protocols. Plus you would be able @@ -134,7 +134,7 @@ Examples of testpmd flow rules Drop packets for destination IP 192.168.0.1:: - testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 dst is 1.1.1.1 \ + testpmd> flow create 0 priority 1 ingress pattern eth / ipv4 dst is 192.168.0.1 \ / end actions drop / end Ensure packets from a given MAC address are received on a queue 2:: -- 2.17.1