czw., 2 kwi 2020 o 17:53 Ferruh Yigit <ferruh.yi...@intel.com> napisał(a): > > On 4/1/2020 3:21 PM, Michal Krawczyk wrote: > > The v2.1.0 is refactoring Tx and Rx paths, including few bug fixes and > > is also adding a new features which are going to be available with the > > newest hardware: > > * Accelerated LLQ mode > > * Disabling meta descriptor caching is required for that > > * Handling Rx descriptor which length is 0 > > * Tx drops are now being reported as extended statistic > > * Support LLQ headers higher than 96B > > Can you put above list into the release notes > (doc/guides/rel_notes/release_20_05.rst), not as a separate patch but in each > patch that adds above mentioned feature update release notes too to document > it.. >
Sure - I'll do that this way in v3. Thanks a lot for the review! Thanks, Michal > Thanks, > ferruh > > > > > Signed-off-by: Michal Krawczyk <m...@semihalf.com> > > Reviewed-by: Igor Chauskin <igo...@amazon.com> > > Reviewed-by: Guy Tzalik <gtza...@amazon.com> > > --- > > drivers/net/ena/ena_ethdev.c | 4 ++-- > > 1 file changed, 2 insertions(+), 2 deletions(-) > > > > diff --git a/drivers/net/ena/ena_ethdev.c b/drivers/net/ena/ena_ethdev.c > > index 53798b8af4..b467489cc2 100644 > > --- a/drivers/net/ena/ena_ethdev.c > > +++ b/drivers/net/ena/ena_ethdev.c > > @@ -27,8 +27,8 @@ > > #include <ena_eth_io_defs.h> > > > > #define DRV_MODULE_VER_MAJOR 2 > > -#define DRV_MODULE_VER_MINOR 0 > > -#define DRV_MODULE_VER_SUBMINOR 3 > > +#define DRV_MODULE_VER_MINOR 1 > > +#define DRV_MODULE_VER_SUBMINOR 0 > > > > #define ENA_IO_TXQ_IDX(q) (2 * (q)) > > #define ENA_IO_RXQ_IDX(q) (2 * (q) + 1) > > >