DPDK  17.11.10
rte_table.h
Go to the documentation of this file.
1 /*-
2  * BSD LICENSE
3  *
4  * Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in
15  * the documentation and/or other materials provided with the
16  * distribution.
17  * * Neither the name of Intel Corporation nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 
34 #ifndef __INCLUDE_RTE_TABLE_H__
35 #define __INCLUDE_RTE_TABLE_H__
36 
37 #ifdef __cplusplus
38 extern "C" {
39 #endif
40 
57 #include <stdint.h>
58 #include <rte_port.h>
59 
60 struct rte_mbuf;
61 
64  uint64_t n_pkts_in;
65  uint64_t n_pkts_lookup_miss;
66 };
67 
81 typedef void* (*rte_table_op_create)(void *params, int socket_id,
82  uint32_t entry_size);
83 
92 typedef int (*rte_table_op_free)(void *table);
93 
121 typedef int (*rte_table_op_entry_add)(
122  void *table,
123  void *key,
124  void *entry,
125  int *key_found,
126  void **entry_ptr);
127 
151  void *table,
152  void *key,
153  int *key_found,
154  void *entry);
155 
186  void *table,
187  void **keys,
188  void **entries,
189  uint32_t n_keys,
190  int *key_found,
191  void **entries_ptr);
192 
221  void *table,
222  void **keys,
223  uint32_t n_keys,
224  int *key_found,
225  void **entries);
226 
260 typedef int (*rte_table_op_lookup)(
261  void *table,
262  struct rte_mbuf **pkts,
263  uint64_t pkts_mask,
264  uint64_t *lookup_hit_mask,
265  void **entries);
266 
280 typedef int (*rte_table_op_stats_read)(
281  void *table,
282  struct rte_table_stats *stats,
283  int clear);
284 
295 };
296 
297 #ifdef __cplusplus
298 }
299 #endif
300 
301 #endif
rte_table_op_entry_add f_add
Definition: rte_table.h:289
int(* rte_table_op_stats_read)(void *table, struct rte_table_stats *stats, int clear)
Definition: rte_table.h:280
int(* rte_table_op_entry_add_bulk)(void *table, void **keys, void **entries, uint32_t n_keys, int *key_found, void **entries_ptr)
Definition: rte_table.h:185
rte_table_op_free f_free
Definition: rte_table.h:288
rte_table_op_create f_create
Definition: rte_table.h:287
int(* rte_table_op_lookup)(void *table, struct rte_mbuf **pkts, uint64_t pkts_mask, uint64_t *lookup_hit_mask, void **entries)
Definition: rte_table.h:260
int(* rte_table_op_entry_delete)(void *table, void *key, int *key_found, void *entry)
Definition: rte_table.h:150
int(* rte_table_op_entry_delete_bulk)(void *table, void **keys, uint32_t n_keys, int *key_found, void **entries)
Definition: rte_table.h:220
rte_table_op_entry_delete_bulk f_delete_bulk
Definition: rte_table.h:292
rte_table_op_lookup f_lookup
Definition: rte_table.h:293
void *(* rte_table_op_create)(void *params, int socket_id, uint32_t entry_size)
Definition: rte_table.h:81
rte_table_op_entry_delete f_delete
Definition: rte_table.h:290
int(* rte_table_op_free)(void *table)
Definition: rte_table.h:92
rte_table_op_entry_add_bulk f_add_bulk
Definition: rte_table.h:291
rte_table_op_stats_read f_stats
Definition: rte_table.h:294
int(* rte_table_op_entry_add)(void *table, void *key, void *entry, int *key_found, void **entry_ptr)
Definition: rte_table.h:121