DPDK  25.03.0
rte_lpm6.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4 #ifndef _RTE_LPM6_H_
5 #define _RTE_LPM6_H_
6 
12 #include <stdint.h>
13 
14 #include <rte_common.h>
15 #include <rte_ip6.h>
16 
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20 
21 
22 #define RTE_LPM6_MAX_DEPTH (RTE_DEPRECATED(RTE_LPM6_MAX_DEPTH) RTE_IPV6_MAX_DEPTH)
23 #define RTE_LPM6_IPV6_ADDR_SIZE (RTE_DEPRECATED(RTE_LPM6_IPV6_ADDR_SIZE) RTE_IPV6_ADDR_SIZE)
24 
25 #define RTE_LPM6_NAMESIZE 32
26 
28 struct rte_lpm6;
29 
32  uint32_t max_rules;
33  uint32_t number_tbl8s;
34  int flags;
35 };
36 
44 void
45 rte_lpm6_free(struct rte_lpm6 *lpm);
46 
66 struct rte_lpm6 *
67 rte_lpm6_create(const char *name, int socket_id,
68  const struct rte_lpm6_config *config)
70 
81 struct rte_lpm6 *
82 rte_lpm6_find_existing(const char *name);
83 
98 int
99 rte_lpm6_add(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth,
100  uint32_t next_hop);
101 
117 int
118 rte_lpm6_is_rule_present(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth,
119  uint32_t *next_hop);
120 
133 int
134 rte_lpm6_delete(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth);
135 
150 int
151 rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm,
152  struct rte_ipv6_addr *ips, uint8_t *depths, unsigned int n);
153 
160 void
161 rte_lpm6_delete_all(struct rte_lpm6 *lpm);
162 
175 int
176 rte_lpm6_lookup(const struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint32_t *next_hop);
177 
194 int
195 rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm,
196  struct rte_ipv6_addr *ips,
197  int32_t *next_hops, unsigned int n);
198 
199 #ifdef __cplusplus
200 }
201 #endif
202 
203 #endif
uint32_t number_tbl8s
Definition: rte_lpm6.h:33
int rte_lpm6_add(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth, uint32_t next_hop)
int rte_lpm6_is_rule_present(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth, uint32_t *next_hop)
int rte_lpm6_delete(struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint8_t depth)
int rte_lpm6_lookup(const struct rte_lpm6 *lpm, const struct rte_ipv6_addr *ip, uint32_t *next_hop)
int rte_lpm6_delete_bulk_func(struct rte_lpm6 *lpm, struct rte_ipv6_addr *ips, uint8_t *depths, unsigned int n)
int rte_lpm6_lookup_bulk_func(const struct rte_lpm6 *lpm, struct rte_ipv6_addr *ips, int32_t *next_hops, unsigned int n)
struct rte_lpm6 * rte_lpm6_create(const char *name, int socket_id, const struct rte_lpm6_config *config) __rte_malloc __rte_dealloc(rte_lpm6_free
#define __rte_dealloc(dealloc, argno)
Definition: rte_common.h:305
#define __rte_malloc
Definition: rte_common.h:294
struct rte_lpm6 struct rte_lpm6 * rte_lpm6_find_existing(const char *name)
void rte_lpm6_delete_all(struct rte_lpm6 *lpm)
void rte_lpm6_free(struct rte_lpm6 *lpm)
uint32_t max_rules
Definition: rte_lpm6.h:32