Re: [PATCH v2 1/2] doc: updated incorrect value for IP frag max fragments

2023-12-21 Thread Bourke, Euan
On 21/12/2023 11:41, Thomas Monjalon wrote: 21/12/2023 12:32, Euan Bourke: -/* ip_fragmentation defines */ +/* ip_fragmentation defines 8< */ #define RTE_LIBRTE_IP_FRAG_MAX_FRAG 8 +/* >8 End of ip_fragmentation defines */ [...] +.. literalinclude:: ../../../config/rte_config.h +:start-af

Re: [PATCH v2 1/2] doc: updated incorrect value for IP frag max fragments

2023-12-21 Thread Thomas Monjalon
21/12/2023 12:32, Euan Bourke: > -/* ip_fragmentation defines */ > +/* ip_fragmentation defines 8< */ > #define RTE_LIBRTE_IP_FRAG_MAX_FRAG 8 > +/* >8 End of ip_fragmentation defines */ [...] > +.. literalinclude:: ../../../config/rte_config.h > +:start-after: ip_fragmentation defines 8< > +

Re: [PATCH v2 1/2] doc: updated incorrect value for IP frag max fragments

2023-12-21 Thread David Marchand
Hello, On Thu, Dec 21, 2023 at 12:33 PM Euan Bourke wrote: > > Docs for IP Fragment said RTE_LIBRTE_IP_FRAG_MAX_FRAGS was 4 by default, > however this was changed to 8. > > Documentation has been updated to account for this, including a > snippet of the code where RTE_LIBRTE_IP_FRAG_MAX_FRAGS is

[PATCH v2 1/2] doc: updated incorrect value for IP frag max fragments

2023-12-21 Thread Euan Bourke
Docs for IP Fragment said RTE_LIBRTE_IP_FRAG_MAX_FRAGS was 4 by default, however this was changed to 8. Documentation has been updated to account for this, including a snippet of the code where RTE_LIBRTE_IP_FRAG_MAX_FRAGS is defined to ensure the documentation stays up to date. Signed-off-by: Eu