Re: [PATCH v3] doc: update flow filtering document
From: Zhao1, Wei <hidden>
Date: 2018-02-07 08:07:58
Hi, Ferruh
-----Original Message----- From: Yigit, Ferruh Sent: Tuesday, February 6, 2018 10:19 PM To: Mcnamara, John <redacted>; Zhao1, Wei [off-list ref]; dev@dpdk.org Cc: stable@dpdk.org; orika@mellanox.com Subject: Re: [dpdk-dev] [PATCH v3] doc: update flow filtering document On 2/5/2018 3:31 PM, Mcnamara, John wrote:quoted
quoted
-----Original Message----- From: Yigit, Ferruh Sent: Wednesday, January 31, 2018 5:24 PM To: Zhao1, Wei <redacted>; dev@dpdk.org Cc: Mcnamara, John <redacted>; stable@dpdk.org; orika@mellanox.com Subject: Re: [dpdk-dev] [PATCH v3] doc: update flow filtering document On 1/31/2018 2:12 AM, Wei Zhao wrote:quoted
This patch will update example application of flow_filtering document. It add Tx queues configuration related comment. Signed-off-by: Wei Zhao <redacted> Reviewed-by: Ori Kam <redacted>Hi Wei, This patch is causing documentation warning: ...dpdk/doc/guides/sample_app_ug/flow_filtering.rst:161: WARNING: Could not lex literal_block as "c". Highlighting skipped.Hi, The reason for the warning was due to 2 instances like the following: + rte_exit(EXIT_FAILURE, + ":: Rx queue setup failed: err=%d, + port=%u\n", + ret, port_id); Here the error string extends over 2 lines so the error message will print out a newline and a lot of whitespace in the middle of the string. Itshould probably be something like the following:quoted
+ rte_exit(EXIT_FAILURE, + ":: Rx queue setup failed: err=%d, " + "port=%u\n", + ret, port_id); or just: + rte_exit(EXIT_FAILURE, + ":: Rx queue setup failed: err=%d, port=%u\n", + ret, port_id);Thanks for clarifying this John. Patch pulled from next-net-intel to next-net and suggested fix applied on next-net.
Code in next-net-intel has been fixed for this issue, but code in v3 has not. So, the code you pull from next-net-intel has been changed to rte_exit(EXIT_FAILURE, ":: Rx queue setup failed: err=%d, port=%u\n", ret, port_id); you can have a double check, maybe it do not need fix patch.