DPDK patches and discussions
 help / color / mirror / Atom feed
From: Rajaraman Balasubramanian <rajaramanb20@gmail.com>
To: dev@dpdk.org
Subject: [dpdk-dev] RSS hashing using L2_PAYLOAD type - Flexible Payload
Date: Sat, 2 Feb 2019 14:22:45 +0530	[thread overview]
Message-ID: <CANp2bXamAbLGr2dzCNSQ_F8gQvmDaBTdkg_5490_QU+me508+g@mail.gmail.com> (raw)
In-Reply-To: <CANp2bXYaTpvaa0NBpXNorqe1rOehqXhu8=7MOQJLe0eEm_mn0Q@mail.gmail.com>

Hi DPDK Team,

    I am working on  VPP (vector packet processing) application which
receives packets through i40e dpdk driver (Fortville eth device in the NIC
card) with unknown eth_type.



    After this eth_type, we have our own header. I tried using “RSS with
flexible payload”. That is, after outer Ethernet header eth_type of 0x8772,
I have given 8 words (16 bytes) as fields to RSS hash function.



    And we have configured two queues for each port and packets are NOT
distributed across rx_queues. We have checked this using “show runtime”
command in VPP. When we use the function rte_eth_dev_info_get() function to
check RSS offloads in dev_info struct. It outputs “hash_key_size:52
flow_type_rss_offloads:0x7ef8”. This means that RSS_L2_PAYLOAD is enabled.



    Also I would like to understand the meaning of this macro
RTE_ETH_FLOW_L2_PAYLOAD to check whether my above thought process is
correct. I have written the code as follows.



    struct rte_eth_hash_filter_info filter_info;



    memset(&filter_info, 0, sizeof(filter_info));



    filter_info.info_type = RTE_ETH_HASH_FILTER_INPUT_SET_SELECT;

    filter_info.info.input_set_conf.flow_type = RTE_ETH_FLOW_L2_PAYLOAD;

    filter_info.info.input_set_conf.inset_size = 8;



    filter_info.info.input_set_conf.field[0] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_1ST_WORD;

    filter_info.info.input_set_conf.field[1] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_2ND_WORD;

    filter_info.info.input_set_conf.field[2] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_3RD_WORD;

    filter_info.info.input_set_conf.field[3] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_4TH_WORD;

    filter_info.info.input_set_conf.field[4] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_5TH_WORD;

    filter_info.info.input_set_conf.field[5] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_6TH_WORD;

    filter_info.info.input_set_conf.field[6] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_7TH_WORD;

    filter_info.info.input_set_conf.field[7] =
RTE_ETH_INPUT_SET_FLEX_PAYLOAD_8TH_WORD;



    filter_info.info.input_set_conf.op = RTE_ETH_INPUT_SET_ADD;



    filter_ret = rte_eth_dev_filter_ctrl(xd->port_id, RTE_ETH_FILTER_HASH,
RTE_ETH_FILTER_SET, &filter_info);



Thanks,

Rajaram.

           reply	other threads:[~2019-02-02  8:52 UTC|newest]

Thread overview: expand[flat|nested]  mbox.gz  Atom feed
 [parent not found: <CANp2bXYaTpvaa0NBpXNorqe1rOehqXhu8=7MOQJLe0eEm_mn0Q@mail.gmail.com>]

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=CANp2bXamAbLGr2dzCNSQ_F8gQvmDaBTdkg_5490_QU+me508+g@mail.gmail.com \
    --to=rajaramanb20@gmail.com \
    --cc=dev@dpdk.org \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).