blob: e08c7351ddf3a8589412397d7f355bd1b9260e9c [file] [log] [blame]
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +01001/*
2 * Copyright (c) 2015-2016 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
Steven Luong4208a4c2019-05-06 08:51:56 -070016option version = "3.0.0";
Dave Barach0d056e52017-09-28 15:11:16 -040017
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010018/** \brief vhost-user interface create request
19 @param client_index - opaque cookie to identify the sender
20 @param is_server - our side is socket server
21 @param sock_filename - unix socket filename, used to speak with frontend
22 @param use_custom_mac - enable or disable the use of the provided hardware address
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020023 @param disable_mrg_rxbuf - disable the use of merge receive buffers
24 @param disable_indirect_desc - disable the use of indirect descriptors which driver can use
Steven Luong4208a4c2019-05-06 08:51:56 -070025 @param enable_gso - enable gso support (default 0)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010026 @param mac_address - hardware address to use if 'use_custom_mac' is set
27*/
28define create_vhost_user_if
29{
30 u32 client_index;
31 u32 context;
32 u8 is_server;
33 u8 sock_filename[256];
34 u8 renumber;
Mohsin Kazmiee2e58f2018-08-21 16:07:03 +020035 u8 disable_mrg_rxbuf;
36 u8 disable_indirect_desc;
Steven Luong4208a4c2019-05-06 08:51:56 -070037 u8 enable_gso;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010038 u32 custom_dev_instance;
39 u8 use_custom_mac;
40 u8 mac_address[6];
41 u8 tag[64];
42};
43
44/** \brief vhost-user interface create response
45 @param context - sender context, to match reply w/ request
46 @param retval - return code for the request
47 @param sw_if_index - interface the operation is applied to
48*/
49define create_vhost_user_if_reply
50{
51 u32 context;
52 i32 retval;
53 u32 sw_if_index;
54};
55
56/** \brief vhost-user interface modify request
57 @param client_index - opaque cookie to identify the sender
58 @param is_server - our side is socket server
59 @param sock_filename - unix socket filename, used to speak with frontend
Steven Luong4208a4c2019-05-06 08:51:56 -070060 @param enable_gso - enable gso support (default 0)
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010061*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040062autoreply define modify_vhost_user_if
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010063{
64 u32 client_index;
65 u32 context;
66 u32 sw_if_index;
67 u8 is_server;
68 u8 sock_filename[256];
69 u8 renumber;
Steven Luong4208a4c2019-05-06 08:51:56 -070070 u8 enable_gso;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010071 u32 custom_dev_instance;
72};
73
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010074/** \brief vhost-user interface delete request
75 @param client_index - opaque cookie to identify the sender
76*/
Dave Barach11b8dbf2017-04-24 10:46:54 -040077autoreply define delete_vhost_user_if
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010078{
79 u32 client_index;
80 u32 context;
81 u32 sw_if_index;
82};
83
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +010084/** \brief Vhost-user interface details structure (fix this)
85 @param sw_if_index - index of the interface
86 @param interface_name - name of interface
87 @param virtio_net_hdr_sz - net header size
88 @param features - interface features
89 @param is_server - vhost-user server socket
90 @param sock_filename - socket filename
91 @param num_regions - number of used memory regions
92*/
93define sw_interface_vhost_user_details
94{
95 u32 context;
96 u32 sw_if_index;
97 u8 interface_name[64];
98 u32 virtio_net_hdr_sz;
99 u64 features;
100 u8 is_server;
101 u8 sock_filename[256];
102 u32 num_regions;
103 i32 sock_errno;
Pavel Kotucekf07dc9e2016-12-20 12:17:37 +0100104};
105
106define sw_interface_vhost_user_dump
107{
108 u32 client_index;
109 u32 context;
110};
111/*
112 * Local Variables:
113 * eval: (c-set-style "gnu")
114 * End:
115 */