Re: [PATCH] app/dma-perf: calrify incorrect NUMA config

2024-03-07 Thread Varghese, Vipin
- printf("Error: Source or destination numa exceeds the acture numa nodes.\n"); + printf("Error: %s numa exceeds the available numa nodes.\n", + (cfg->src_numa_node >= nr_sockets) ? "Source" : "Destination"); Thank you for comments, pleas

Re: [PATCH] app/dma-perf: calrify incorrect NUMA config

2024-03-07 Thread fengchengwen
Hi Vipin, On 2024/3/6 23:02, Vipin Varghese wrote: > Current commit decalres either `source or destination numa is greater > than acture numa` as cause of error. Rephrase as `Source or Destination` > is incorrect numa by checking which is greater than available numa. > > Signed-off-by: Vipin Varg

[PATCH] app/dma-perf: calrify incorrect NUMA config

2024-03-06 Thread Vipin Varghese
Current commit decalres either `source or destination numa is greater than acture numa` as cause of error. Rephrase as `Source or Destination` is incorrect numa by checking which is greater than available numa. Signed-off-by: Vipin Varghese --- app/test-dma-perf/benchmark.c | 3 ++- 1 file chang