virtio: fast TAP interfaces with vhost-net backend
[vpp.git] / src / vnet / devices / virtio / tap.h
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2017 Cisco and/or its affiliates.
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *------------------------------------------------------------------
16  */
17
18 #ifndef _VNET_DEVICES_VIRTIO_TAP_H_
19 #define _VNET_DEVICES_VIRTIO_TAP_H_
20
21 #ifndef MIN
22 #define MIN(x,y) (((x)<(y))?(x):(y))
23 #endif
24
25 typedef struct
26 {
27   u8 *name;
28   u8 *net_ns;
29   u8 hw_addr_set;
30   u8 hw_addr[6];
31   u16 rx_ring_sz;
32   u16 tx_ring_sz;
33   /* return */
34   u32 sw_if_index;
35 } tap_create_if_args_t;
36
37 /** TAP interface details struct */
38 typedef struct
39 {
40   u32 sw_if_index;
41   u8 dev_name[64];
42 } tap_interface_details_t;
43
44 int tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
45 int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
46 int tap_dump_ifs (tap_interface_details_t ** out_tapids);
47
48 #endif /* _VNET_DEVICES_VIRTIO_TAP_H_ */
49
50 /*
51  * fd.io coding-style-patch-verification: ON
52  *
53  * Local Variables:
54  * eval: (c-set-style "gnu")
55  * End:
56  */