FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
dpdk.api
Go to the documentation of this file.
1 /*
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 
16 /** \brief DPDK interface HQoS pipe profile set request
17  @param client_index - opaque cookie to identify the sender
18  @param context - sender context, to match reply w/ request
19  @param sw_if_index - the interface
20  @param subport - subport ID
21  @param pipe - pipe ID within its subport
22  @param profile - pipe profile ID
23 */
24 autoreply define sw_interface_set_dpdk_hqos_pipe {
31 };
32 
33 /** \brief DPDK interface HQoS subport parameters set request
34  @param client_index - opaque cookie to identify the sender
35  @param context - sender context, to match reply w/ request
36  @param sw_if_index - the interface
37  @param subport - subport ID
38  @param tb_rate - subport token bucket rate (measured in bytes/second)
39  @param tb_size - subport token bucket size (measured in credits)
40  @param tc_rate - subport traffic class 0 .. 3 rates (measured in bytes/second)
41  @param tc_period - enforcement period for rates (measured in milliseconds)
42 */
43 autoreply define sw_interface_set_dpdk_hqos_subport {
50  u32 tc_rate[4];
52 };
53 
54 /** \brief DPDK interface HQoS tctbl entry set request
55  @param client_index - opaque cookie to identify the sender
56  @param context - sender context, to match reply w/ request
57  @param sw_if_index - the interface
58  @param entry - entry index ID
59  @param tc - traffic class (0 .. 3)
60  @param queue - traffic class queue (0 .. 3)
61 */
62 autoreply define sw_interface_set_dpdk_hqos_tctbl {
69 };
70 
71 /*
72  * Local Variables:
73  * eval: (c-set-style "gnu")
74  * End:
75  */
76 
unsigned int u32
Definition: types.h:88