Re: [dpdk-dev] [PATCH v1] sched: adds function to get 64 bits greatest common divisor

2021-09-22 Thread Xueming(Steven) Li
On Wed, 2021-09-22 at 18:09 +0100, Kevin Traynor wrote: > On 15/09/2021 11:26, Xueming Li wrote: > > This patch adds new function that compute the greatest common > > divisor of 64 bits, also changes the original 32 bits function to call > > this new 64 bits version. > > > > Can you say why it is

Re: [dpdk-dev] [PATCH v1] sched: adds function to get 64 bits greatest common divisor

2021-09-22 Thread Kevin Traynor
On 15/09/2021 11:26, Xueming Li wrote: This patch adds new function that compute the greatest common divisor of 64 bits, also changes the original 32 bits function to call this new 64 bits version. Can you say why it is needed? It's unused apart from being called for the original 32 bit versi

[dpdk-dev] [PATCH v1] sched: adds function to get 64 bits greatest common divisor

2021-09-15 Thread Xueming Li
This patch adds new function that compute the greatest common divisor of 64 bits, also changes the original 32 bits function to call this new 64 bits version. Signed-off-by: Xueming Li --- v1: add 64 bits version and make 32 bits api call it lib/sched/rte_sched_common.h | 19 ---