flow: fix wrong to use ntohl function to u64 type variable
This caused that failed to create flow rule with rss types.
Type: fix
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
Change-Id: I77696286a32804cbe884075cb027eec19eb5c7cb
Signed-off-by: Yulong Pei <yulong.pei@intel.com>
diff --git a/src/vnet/flow/flow_api.c b/src/vnet/flow/flow_api.c
index 0e25fb3..29ba9e0 100644
--- a/src/vnet/flow/flow_api.c
+++ b/src/vnet/flow/flow_api.c
@@ -328,7 +328,7 @@
flow.buffer_advance = ntohl (f->buffer_advance);
flow.queue_index = ntohl (f->queue_index);
flow.queue_num = ntohl (f->queue_num);
- flow.rss_types = ntohl (f->rss_types);
+ flow.rss_types = clib_net_to_host_u64 (f->rss_types);
flow.rss_fun = ntohl (f->rss_fun);
switch (flow.type)