aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTing Xu <ting.xu@intel.com>2023-02-06 03:01:10 +0000
committerDave Wallace <dwallacelf@gmail.com>2023-03-03 13:02:32 +0000
commitc4cccb444a68fea3af85e5c265ad7f97a7c703a6 (patch)
treef0a7f80469012d139578e7d2e73f42fa9c4b4a4f
parent40225dbe1331aa4684375e9b58e059f2f28cb361 (diff)
avf: fix bit calculation function fls_u32
In avf the function fls_u32 is used to calculate the power of 2. Fix the expression of this function. Type: fix Signed-off-by: Ting Xu <ting.xu@intel.com> Change-Id: I27160de8588a5efb3f24306597a5a240deb3ab74 (cherry picked from commit dc95634a237419433b8189bf41b3968640b1f97e)
-rw-r--r--src/plugins/avf/avf_fdir_lib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/avf/avf_fdir_lib.c b/src/plugins/avf/avf_fdir_lib.c
index efb67cb4b17..52937874186 100644
--- a/src/plugins/avf/avf_fdir_lib.c
+++ b/src/plugins/avf/avf_fdir_lib.c
@@ -28,7 +28,7 @@
static inline int
fls_u32 (u32 x)
{
- return (x == 0) ? 0 : 32 - count_leading_zeros (x);
+ return (x == 0) ? 0 : 64 - count_leading_zeros (x);
}
static inline int