Re: [dpdk-dev] [PATCH v2 1/2] ring: increase maximum ring size

2017-10-05 Thread Thomas Monjalon
20/09/2017 13:32, Olivier Matz: > There is no reason to prevent ring from being larger than 0x0FFF. > Increase the maximum size to 0x7FFF, which is the maximum possible > without changing the code and the structure definition (size is stored > on a uint32_t). > > Link: http://dpdk.org/ml/a

[dpdk-dev] [PATCH v2 1/2] ring: increase maximum ring size

2017-09-20 Thread Olivier Matz
There is no reason to prevent ring from being larger than 0x0FFF. Increase the maximum size to 0x7FFF, which is the maximum possible without changing the code and the structure definition (size is stored on a uint32_t). Link: http://dpdk.org/ml/archives/dev/2017-September/074701.html Sugg