From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id A9E4529D2 for ; Mon, 23 Apr 2018 15:26:28 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Apr 2018 06:26:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,318,1520924400"; d="scan'208";a="34595261" Received: from irsmsx107.ger.corp.intel.com ([163.33.3.99]) by fmsmga008.fm.intel.com with ESMTP; 23 Apr 2018 06:26:26 -0700 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.61]) by IRSMSX107.ger.corp.intel.com ([169.254.10.157]) with mapi id 14.03.0319.002; Mon, 23 Apr 2018 14:26:25 +0100 From: "Kovacevic, Marko" To: "Ananyev, Konstantin" , "dev@dpdk.org" CC: "Ananyev, Konstantin" Thread-Topic: [dpdk-dev] [PATCH v4 09/10] doc: add librte_bpf related info Thread-Index: AQHT0zYivZ7de51ZikqUl6cpfy5V2qQOZq7w Date: Mon, 23 Apr 2018 13:26:24 +0000 Message-ID: <6DC05C7C5F25994B81B3F2F214251F66361E4E@IRSMSX103.ger.corp.intel.com> References: <1523040581-2522-2-git-send-email-konstantin.ananyev@intel.com> <1523630598-24606-10-git-send-email-konstantin.ananyev@intel.com> In-Reply-To: <1523630598-24606-10-git-send-email-konstantin.ananyev@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYjE1MzkzOGItZGQzNS00MzU2LTk5NzMtMGNlMWUyZmFkN2Q3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImJVTzhGenE4NzlrazJ5VWJcL3QrVVNcL0c1KzgyT0lzemxRY3lxQllwc2UxRT0ifQ== x-ctpclassification: CTP_NT x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 09/10] doc: add librte_bpf related info 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: , X-List-Received-Date: Mon, 23 Apr 2018 13:26:29 -0000 Small typos below. > Signed-off-by: Konstantin Ananyev > --- > doc/api/doxy-api-index.md | 3 ++- > doc/api/doxy-api.conf | 1 + > doc/guides/prog_guide/bpf_lib.rst | 37 > +++++++++++++++++++++++++++++++++++++ <...> > +.. SPDX-License-Identifier: BSD-3-Clause > + Copyright(c) 2018 Intel Corporation. > + > +Berkeley Packet Filter Library > +=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D > + > +The DPDK provides an BPF library that gives the ability to load and=20 > +execute Enhanced Berkeley Packet Filter (eBPF) bytecode within=20 > +user-space dpdk appilication. appilication / application <...> > +* Create a new BPF execution context and load user provided eBPF=20 > +code > into it. > + > +* Destroy an BPF execution context and its runtime structures and free= the > associated memory. > + > +* Execute eBPF bytecode associated with provied input parameter. provied / provided=20 > + > +* Provide information about natively compield code for given BPF conte= xt. compield / compiled =20 <...> Marko K.