[07/15] net: add rte prefix to gre structure

Message ID 20190521161315.25500-8-olivier.matz@6wind.com (mailing list archive)
State Accepted, archived
Delegated to: Ferruh Yigit
Headers
Series prefix network structures |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Olivier Matz May 21, 2019, 4:13 p.m. UTC
  Add 'rte_' prefix to structures:
- rename struct gre_hdr as struct rte_gre_hdr.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
 drivers/net/mlx5/mlx5_flow_dv.c | 4 ++--
 lib/librte_net/rte_gre.h        | 2 +-
 lib/librte_net/rte_net.c        | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)
  

Patch

diff --git a/drivers/net/mlx5/mlx5_flow_dv.c b/drivers/net/mlx5/mlx5_flow_dv.c
index 6a706fdfe..b7a56ebdc 100644
--- a/drivers/net/mlx5/mlx5_flow_dv.c
+++ b/drivers/net/mlx5/mlx5_flow_dv.c
@@ -1218,7 +1218,7 @@  flow_dv_convert_encap_data(const struct rte_flow_item *items, uint8_t *buf,
 	struct udp_hdr *udp = NULL;
 	struct rte_vxlan_hdr *vxlan = NULL;
 	struct rte_vxlan_gpe_hdr *vxlan_gpe = NULL;
-	struct gre_hdr *gre = NULL;
+	struct rte_gre_hdr *gre = NULL;
 	size_t len;
 	size_t temp_size = 0;
 
@@ -1331,7 +1331,7 @@  flow_dv_convert_encap_data(const struct rte_flow_item *items, uint8_t *buf,
 			break;
 		case RTE_FLOW_ITEM_TYPE_GRE:
 		case RTE_FLOW_ITEM_TYPE_NVGRE:
-			gre = (struct gre_hdr *)&buf[temp_size];
+			gre = (struct rte_gre_hdr *)&buf[temp_size];
 			if (!gre->proto)
 				return rte_flow_error_set(error, EINVAL,
 						RTE_FLOW_ERROR_TYPE_ACTION,
diff --git a/lib/librte_net/rte_gre.h b/lib/librte_net/rte_gre.h
index 05aa9d143..b5279ede1 100644
--- a/lib/librte_net/rte_gre.h
+++ b/lib/librte_net/rte_gre.h
@@ -16,7 +16,7 @@  extern "C" {
  * GRE Header
  */
 __extension__
-struct gre_hdr {
+struct rte_gre_hdr {
 #if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
 	uint16_t res2:4; /**< Reserved */
 	uint16_t s:1;    /**< Sequence Number Present bit */
diff --git a/lib/librte_net/rte_net.c b/lib/librte_net/rte_net.c
index 5551cce17..d858ab155 100644
--- a/lib/librte_net/rte_net.c
+++ b/lib/librte_net/rte_net.c
@@ -140,8 +140,8 @@  ptype_tunnel(uint16_t *proto, const struct rte_mbuf *m,
 			[0xa] = 12,
 			[0xb] = 16,
 		};
-		const struct gre_hdr *gh;
-		struct gre_hdr gh_copy;
+		const struct rte_gre_hdr *gh;
+		struct rte_gre_hdr gh_copy;
 		uint16_t flags;
 
 		gh = rte_pktmbuf_read(m, *off, sizeof(*gh), &gh_copy);