Re: [lng-odp] [PATCH] Relax the assert check with enqueue fails in the scheduler test case

2017-04-07 Thread Ola Liljedahl
>From test/common_plat/validation/api/scheduler/scheduler.c #define BUFS_PER_QUEUE_EXCL 1 The scalable scheduler has a default queue size of 4096 which seemed reasonable to us. We can always increase the value but applications and test prorgams should not expect infinite queue size. Perha

[lng-odp] [PATCH] Relax the assert check with enqueue fails in the scheduler test case

2017-04-07 Thread Kevin Wang
In the scalable scheduler, queue is implemented by the ring buffer. It is possible enqueue would fail if the ring buffer is full. So just remove the assert() check. Signed-off-by: Kevin Wang --- test/common_plat/validation/api/scheduler/scheduler.c | 1 - 1 file changed, 1 deletion(-) diff --gi