FD.io VPP  v16.06
Vector Packet Processing
ssvm_eth.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #ifndef __included_ssvm_eth_h__
16 #define __included_ssvm_eth_h__
17 
18 #include <vnet/vnet.h>
19 
20 #include <vppinfra/elog.h>
21 #include <vppinfra/error.h>
22 #include <vppinfra/format.h>
23 #include <vppinfra/hash.h>
24 #include <vppinfra/vec.h>
25 #include <vppinfra/elog.h>
26 #include <vlib/vlib.h>
27 #include <vnet/ethernet/ethernet.h>
28 #include <vnet/ip/ip.h>
29 #include <vnet/pg/pg.h>
31 
32 #include <ssvm.h>
33 
36 
37 #define SSVM_BUFFER_SIZE \
38  (VLIB_BUFFER_DATA_SIZE + VLIB_BUFFER_PRE_DATA_SIZE)
39 #define SSVM_PACKET_TYPE 1
40 
41 typedef struct {
42  /* Type of queue element */
45 #define SSVM_BUFFER_NEXT_PRESENT (1<<0)
53  /* offset 16 */
55  /* pad to an even multiple of 64 octets */
58 
59 typedef struct {
60  /* vector of point-to-point connections */
62 
65 
66  /* Configurable parameters */
67  /* base address for next placement */
72 
73  /* Segment names */
74  u8 ** names;
75 
76  /* convenience */
81 
83 
84 typedef enum {
93 
94 /*
95  * debug scaffolding.
96  */
97 static inline void ssvm_eth_validate_freelists (int need_lock)
98 {
99 #if CLIB_DEBUG > 0
101  ssvm_private_t * intfc;
103  u32 * elt_indices;
104  u32 n_available;
105  int i;
106 
107  for (i = 0; i < vec_len (em->intfcs); i++)
108  {
109  intfc = em->intfcs + i;
110  sh = intfc->sh;
111  u32 my_pid = intfc->my_pid;
112 
113  if (need_lock)
114  ssvm_lock (sh, my_pid, 15);
115 
116  elt_indices = (u32 *) (sh->opaque [CHUNK_POOL_FREELIST_INDEX]);
117  n_available = (u32) (uword) (sh->opaque [CHUNK_POOL_NFREE]);
118 
119  for (i = 0; i < n_available; i++)
120  ASSERT (elt_indices[i] < 2048);
121 
122  if (need_lock)
123  ssvm_unlock (sh);
124  }
125 #endif
126 }
127 
128 #endif /* __included_ssvm_eth_h__ */
u64 segment_size
Definition: ssvm_eth.h:69
ssvm_eth_opaque_index_t
Definition: ssvm_eth.h:84
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:267
elog_main_t * elog_main
Definition: ssvm_eth.h:79
u32 * buffer_cache
Definition: ssvm_eth.h:63
void * opaque[SSVM_N_OPAQUE]
Definition: ssvm.h:61
struct _vlib_node_registration vlib_node_registration_t
ssvm_shared_header_t * sh
Definition: ssvm.h:71
struct _vnet_device_class vnet_device_class_t
always_inline void ssvm_unlock(ssvm_shared_header_t *h)
Definition: ssvm.h:98
u32 * chunk_cache
Definition: ssvm_eth.h:64
always_inline void ssvm_lock(ssvm_shared_header_t *h, u32 my_pid, u32 tag)
Definition: ssvm.h:82
unsigned long u64
Definition: types.h:89
vnet_device_class_t ssvm_eth_device_class
vnet_main_t * vnet_main
Definition: ssvm_eth.h:78
vlib_main_t * vlib_main
Definition: ssvm_eth.h:77
ssvm_private_t * intfcs
Definition: ssvm_eth.h:61
vlib_node_registration_t ssvm_eth_input_node
(constructor) VLIB_REGISTER_NODE (ssvm_eth_input_node)
Definition: node.c:17
static void ssvm_eth_validate_freelists(int need_lock)
Definition: ssvm_eth.h:97
#define SSVM_BUFFER_SIZE
Definition: ssvm_eth.h:37
u32 my_pid
Definition: ssvm.h:73
#define ASSERT(truth)
unsigned int u32
Definition: types.h:88
u64 next_base_va
Definition: ssvm_eth.h:68
u64 uword
Definition: types.h:112
unsigned short u16
Definition: types.h:57
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
unsigned char u8
Definition: types.h:56
ssvm_eth_main_t ssvm_eth_main
Definition: ssvm_eth.h:82
u16 total_length_not_including_first_buffer
Definition: ssvm_eth.h:50
short i16
Definition: types.h:46
#define CLIB_CACHE_LINE_BYTES
Definition: cache.h:67
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".