FD.io VPP  v19.08-27-gf4dcae4
Vector Packet Processing
qos_egress_map.h
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * Copyright (c) 2018 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 /**
19  * A QOS egress map translates from the COS bits stored in the packet's
20  * meta-data into a per-protocol COS value
21  */
22 
23 #ifndef __QOS_EGRESS_MAP_H__
24 #define __QOS_EGRESS_MAP_H__
25 
26 #include <vnet/qos/qos_types.h>
27 #include <vnet/dpo/dpo.h>
28 
29 /**
30  * An attempt at type safety
31  */
33 
34 /**
35  * For a given output source a table maps each value of every input source.
36  */
37 typedef struct qos_egress_map_t_
38 {
39  /**
40  * Required for pool_get_aligned
41  */
42  CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
43 
44  /**
45  * The array of output mapped values;
46  * output = eq_qos[input-source][input-value]
47  */
50 
51 extern u8 *format_qos_egress_map (u8 * s, va_list * args);
52 
53 /**
54  * Add a qos-egress map to an interface. If sw_if_index = ~0
55  * then the configuration is for the 'default' table.
56  * If the table is ~0, this is a removal.
57  * the egress mapping is applied. For example, is output is MPLS then
58  * the QoS markings will occur for MPLS packets.
59  */
62  qos_bits_t * values);
64 
65 /**
66  * Get the VPP QoS map index from the user's map-ID
67  */
70 
71 /**
72  * Walk each of the configured maps
73  */
75  const qos_egress_map_t * m,
76  void *c);
78 
79 /**
80  * Data-plane functions
81  */
82 
83 /**
84  * Pool from which to allocate map
85  */
87 
88 #endif
89 
90 /*
91  * fd.io coding-style-patch-verification: ON
92  *
93  * Local Variables:
94  * eval: (c-set-style "gnu")
95  * End:
96  */
struct qos_egress_map_t_ qos_egress_map_t
For a given output source a table maps each value of every input source.
CLIB_CACHE_LINE_ALIGN_MARK(cacheline0)
Required for pool_get_aligned.
qos_egress_map_id_t qos_egress_map_get_id(index_t qemi)
qos_egress_map_t * qem_pool
Data-plane functions.
u32 index_t
A Data-Path Object is an object that represents actions that are applied to packets are they are swit...
Definition: dpo.h:41
unsigned char u8
Definition: types.h:56
enum walk_rc_t_ walk_rc_t
Walk return code.
unsigned int u32
Definition: types.h:88
vl_api_qos_source_t input_source
Definition: qos.api:52
u8 * format_qos_egress_map(u8 *s, va_list *args)
void qos_egress_map_delete(qos_egress_map_id_t tid)
svmdb_client_t * c
enum qos_source_t_ qos_source_t
QoS types.
index_t qos_egress_map_find(qos_egress_map_id_t tid)
Get the VPP QoS map index from the user&#39;s map-ID.
walk_rc_t(* qos_egress_map_walk_cb_t)(qos_egress_map_id_t id, const qos_egress_map_t *m, void *c)
Walk each of the configured maps.
For a given output source a table maps each value of every input source.
void qos_egress_map_walk(qos_egress_map_walk_cb_t fn, void *c)
void qos_egress_map_update(qos_egress_map_id_t tid, qos_source_t input_source, qos_bits_t *values)
Add a qos-egress map to an interface.
u32 id
Definition: udp.api:45
qos_bits_t qem_output[QOS_N_SOURCES][256]
The array of output mapped values; output = eq_qos[input-source][input-value].
u8 qos_bits_t
Type, er, safety for us water based entities.
Definition: qos_types.h:68
u32 qos_egress_map_id_t
A QOS egress map translates from the COS bits stored in the packet&#39;s meta-data into a per-protocol CO...
#define QOS_N_SOURCES
The maximum number of sources.
Definition: qos_types.h:45