FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
gso.c
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2019 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 
16 #include <vlib/vlib.h>
17 #include <vnet/vnet.h>
18 #include <vppinfra/error.h>
19 #include <vnet/ethernet/ethernet.h>
20 #include <vnet/feature/feature.h>
22 #include <vnet/gso/gso.h>
23 
25 
26 int
28 {
29  vnet_feature_enable_disable ("ip4-output", "gso-ip4", sw_if_index, enable,
30  0, 0);
31  vnet_feature_enable_disable ("ip6-output", "gso-ip6", sw_if_index, enable,
32  0, 0);
33 
34  vnet_l2_feature_enable_disable ("l2-output-nonip", "gso-l2-nonip",
35  sw_if_index, enable, 0, 0);
36  vnet_l2_feature_enable_disable ("l2-output-ip4", "gso-l2-ip4",
37  sw_if_index, enable, 0, 0);
38  vnet_l2_feature_enable_disable ("l2-output-ip6", "gso-l2-ip6",
39  sw_if_index, enable, 0, 0);
40 
41  return (0);
42 }
43 
44 static clib_error_t *
46 {
48 
49  clib_memset (gm, 0, sizeof (gm[0]));
50  gm->vlib_main = vm;
51  gm->vnet_main = vnet_get_main ();
52 
53  return 0;
54 }
55 
57 
58 /*
59  * fd.io coding-style-patch-verification: ON
60  *
61  * Local Variables:
62  * eval: (c-set-style "gnu")
63  * End:
64  */
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
clib_memset(h->entries, 0, sizeof(h->entries[0]) *entries)
int vnet_sw_interface_gso_enable_disable(u32 sw_if_index, u8 enable)
Definition: gso.c:27
gso_main_t gso_main
Definition: gso.c:24
vlib_main_t * vlib_main
Definition: gso.h:23
unsigned char u8
Definition: types.h:56
vl_api_interface_index_t sw_if_index
Definition: gre.api:53
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:173
static clib_error_t * gso_init(vlib_main_t *vm)
Definition: gso.c:45
unsigned int u32
Definition: types.h:88
#define gm
Definition: dlmalloc.c:1219
vlib_main_t * vm
Definition: in2out_ed.c:1599
int vnet_l2_feature_enable_disable(const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
vnet_main_t * vnet_main
Definition: gso.h:24
Definition: gso.h:21
int vnet_feature_enable_disable(const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
Definition: feature.c:304