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

2017-09-18 Thread Burakov, Anatoly
On 07-Sep-17 1:20 PM, Olivier Matz wrote: There is no reason to prevent ring from beeing 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/

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

2017-09-07 Thread Olivier Matz
There is no reason to prevent ring from beeing 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 Sug