[dpdk-dev] [PATCH v3 2/4] eal: fix parsing of eal option --lcores

2016-07-28 Thread Ferruh Yigit
On 7/27/2016 12:23 PM, Wei Dai wrote: > The '-' in lcore set overrides cpu set of following > lcore set in the argument of EAL option --lcores. > for example --locres '0-2,(3-5)@(3,4),6@(5,6),7@(5-7)', > 0-2 make lflags=1 which indeed suppress following > cpu set (3,4), (5,6) and (5-7) after @ . >

[dpdk-dev] [PATCH v3 2/4] eal: fix parsing of eal option --lcores

2016-07-27 Thread Wei Dai
The '-' in lcore set overrides cpu set of following lcore set in the argument of EAL option --lcores. for example --locres '0-2,(3-5)@(3,4),6@(5,6),7@(5-7)', 0-2 make lflags=1 which indeed suppress following cpu set (3,4), (5,6) and (5-7) after @ . Fixes: 53e54bf81700 ("eal: new option --lcores