git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ebbd4d3
)
net: fix missing header include
author
Bruce Richardson
<bruce.richardson@intel.com>
Fri, 15 Jan 2021 11:10:36 +0000
(11:10 +0000)
committer
David Marchand
<david.marchand@redhat.com>
Thu, 21 Jan 2021 09:21:40 +0000
(10:21 +0100)
The Geneve protocol header file is missing the rte_byteorder.h header.
Fixes:
ea0e711b8ae0
("app/testpmd: add GENEVE parsing")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Acked-by: Ophir Munk <ophirmu@nvidia.com>
Reviewed-by: David Marchand <david.marchand@redhat.com>
lib/librte_net/rte_geneve.h
patch
|
blob
|
history
diff --git
a/lib/librte_net/rte_geneve.h
b/lib/librte_net/rte_geneve.h
index
bb67724
..
3bbc561
100644
(file)
--- a/
lib/librte_net/rte_geneve.h
+++ b/
lib/librte_net/rte_geneve.h
@@
-12,6
+12,8
@@
*/
#include <stdint.h>
+#include <rte_byteorder.h>
+
#ifdef __cplusplus
extern "C" {
#endif