From: "Qiu, Michael" <michael.qiu@intel.com> To: "Wu, Jingjing" <jingjing.wu@intel.com>, "dev@dpdk.org" <dev@dpdk.org> Subject: Re: [dpdk-dev] [PATCH v3 1/2] ethdev: new structure of Ethertype Filter for filter_ctrl api Date: Thu, 27 Nov 2014 05:21:30 +0000 Message-ID: <533710CFB86FA344BFBF2D6802E60286C9AC77@SHSMSX101.ccr.corp.intel.com> (raw) In-Reply-To: <1415882995-8697-2-git-send-email-jingjing.wu@intel.com> On 11/13/2014 8:51 PM, Jingjing Wu wrote: > From: "jingjing.wu" <jingjing.wu@intel.com> > > A new structure of ethertype filter is defined in rte_eth_ctrl.h > for filter_ctrl api > > Signed-off-by: jingjing.wu <jingjing.wu@intel.com> > --- > lib/librte_ether/rte_eth_ctrl.h | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/lib/librte_ether/rte_eth_ctrl.h b/lib/librte_ether/rte_eth_ctrl.h > index 8dd384d..73bc296 100644 > --- a/lib/librte_ether/rte_eth_ctrl.h > +++ b/lib/librte_ether/rte_eth_ctrl.h > @@ -53,6 +53,7 @@ enum rte_filter_type { > RTE_ETH_FILTER_NONE = 0, > RTE_ETH_FILTER_MACVLAN, > RTE_ETH_FILTER_TUNNEL, > + RTE_ETH_FILTER_ETHERTYPE, > RTE_ETH_FILTER_MAX > }; > > @@ -155,6 +156,25 @@ struct rte_eth_tunnel_filter_conf { > uint16_t queue_id; /** < queue number. */ > }; > > +/** > + * Define all structures for Ethertype Filter type. > + */ > + > +#define RTE_ETHTYPE_FLAGS_MAC 0x0001 /**< If set, compare mac */ > +#define RTE_ETHTYPE_FLAGS_DROP 0x0002 /**< If set, drop packet when match */ > + > +/** > + * A structure used to define the ethertype filter entry > + * to support RTE_ETH_FILTER_ETHERTYPE with RTE_ETH_FILTER_ADD, > + * RTE_ETH_FILTER_DELETE and RTE_ETH_FILTER_GET operations. > + */ > +struct rte_eth_ethertype_filter { > + struct ether_addr mac_addr; /**< Mac address to match. */ > + uint16_t ether_type; /**< Ether type to match */ > + uint16_t flags; /**< Flags from RTE_ETHTYPE_FLAGS_* */ > + uint16_t queue; /**< Queue assigned to when match*/ Here 'match*/' should be 'match */', ignore this if it is just my email client's display issue :) Thanks, Michael > +}; > + > #ifdef __cplusplus > } > #endif
next prev parent reply other threads:[~2014-11-27 5:21 UTC|newest] Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top 2014-09-25 6:59 [dpdk-dev] [PATCH 0/4] support control packet filter on Fortville Jingjing Wu 2014-09-25 6:59 ` [dpdk-dev] [PATCH 1/4] lib/librte_ether: new filter APIs definition Jingjing Wu 2014-10-09 15:34 ` De Lara Guarch, Pablo 2014-10-10 1:19 ` Wu, Jingjing 2014-10-10 3:34 ` Wu, Jingjing 2014-10-10 7:28 ` De Lara Guarch, Pablo 2014-10-16 15:11 ` Thomas Monjalon 2014-09-25 6:59 ` [dpdk-dev] [PATCH 2/4] lib/librte_ether: define CTRL_PKT filter type and its structure Jingjing Wu 2014-09-25 6:59 ` [dpdk-dev] [PATCH 3/4] i40e: ctrl_pkt filter implementation in i40e pmd driver Jingjing Wu 2014-09-25 6:59 ` [dpdk-dev] [PATCH 4/4] app/test-pmd: add commands for control packet filter Jingjing Wu 2014-09-25 7:54 ` [dpdk-dev] [PATCH 0/4] support control packet filter on Fortville Zhang, Helin 2014-10-11 7:23 ` Chen, Jing D 2014-10-11 7:23 ` Liu, Jijiang 2014-10-11 7:53 ` Zhang, Helin 2014-10-22 8:19 ` [dpdk-dev] [PATCH v2 0/3] support control packet filter on fortville Jingjing Wu 2014-10-22 8:19 ` [dpdk-dev] [PATCH v2 1/3] ethdev: define ctrl_pkt filter type and its structure Jingjing Wu 2014-10-30 22:47 ` Thomas Monjalon 2014-10-31 7:05 ` Wu, Jingjing 2014-10-31 8:44 ` Thomas Monjalon 2014-11-13 5:44 ` Wu, Jingjing 2014-11-13 8:41 ` Thomas Monjalon 2014-11-13 9:00 ` Wu, Jingjing 2014-10-22 8:19 ` [dpdk-dev] [PATCH v2 2/3] i40e: ctrl_pkt filter implementation in i40e pmd driver Jingjing Wu 2014-10-22 8:19 ` [dpdk-dev] [PATCH v2 3/3] testpmd: Commands to test ctrl_pkt filter Jingjing Wu 2014-11-13 12:49 ` [dpdk-dev] [PATCH v3 0/2] support ethertype filter on fortville Jingjing Wu 2014-11-13 12:49 ` [dpdk-dev] [PATCH v3 1/2] ethdev: new structure of Ethertype Filter for filter_ctrl api Jingjing Wu 2014-11-27 5:21 ` Qiu, Michael [this message] 2014-11-13 12:49 ` [dpdk-dev] [PATCH v3 2/2] i40e: implement operation to add/delete an ethertype filter Jingjing Wu 2014-11-18 13:46 ` [dpdk-dev] [PATCH v3 0/2] support ethertype filter on fortville Liu, Jijiang 2014-11-26 22:24 ` Thomas Monjalon
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=533710CFB86FA344BFBF2D6802E60286C9AC77@SHSMSX101.ccr.corp.intel.com \ --to=michael.qiu@intel.com \ --cc=dev@dpdk.org \ --cc=jingjing.wu@intel.com \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
DPDK patches and discussions This inbox may be cloned and mirrored by anyone: git clone --mirror https://inbox.dpdk.org/dev/0 dev/git/0.git # If you have public-inbox 1.1+ installed, you may # initialize and index your mirror using the following commands: public-inbox-init -V2 dev dev/ https://inbox.dpdk.org/dev \ dev@dpdk.org public-inbox-index dev Example config snippet for mirrors. Newsgroup available over NNTP: nntp://inbox.dpdk.org/inbox.dpdk.dev AGPL code for this site: git clone https://public-inbox.org/public-inbox.git