]> git.proxmox.com Git - mirror_ovs.git/blame - lib/odp-util.h
uuid: Fix warnings carelessly introduced a few commits ago.
[mirror_ovs.git] / lib / odp-util.h
CommitLineData
064af421 1/*
3762274e 2 * Copyright (c) 2009, 2010 Nicira Networks.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16
17#ifndef ODP_UTIL_H
18#define ODP_UTIL_H 1
19
20#include <stdbool.h>
3762274e 21#include <stddef.h>
064af421
BP
22#include <stdint.h>
23#include "openflow/openflow.h"
24#include "openvswitch/datapath-protocol.h"
25
26struct ds;
27
28/* The kernel datapaths limits actions to those that fit in a single page of
29 * memory, so there is no point in allocating more than that. */
30enum { MAX_ODP_ACTIONS = 4096 / sizeof(union odp_action) };
31
32struct odp_actions {
33 size_t n_actions;
34 union odp_action actions[MAX_ODP_ACTIONS];
35};
36
37static inline void
38odp_actions_init(struct odp_actions *actions)
39{
40 actions->n_actions = 0;
41}
42
43union odp_action *odp_actions_add(struct odp_actions *actions, uint16_t type);
44
45static inline bool
46odp_actions_overflow(const struct odp_actions *actions)
47{
48 return actions->n_actions > MAX_ODP_ACTIONS;
49}
50
51static inline uint16_t
52ofp_port_to_odp_port(uint16_t ofp_port)
53{
54 switch (ofp_port) {
55 case OFPP_LOCAL:
56 return ODPP_LOCAL;
57 case OFPP_NONE:
58 return ODPP_NONE;
59 default:
60 return ofp_port;
61 }
62}
63
64static inline uint16_t
65odp_port_to_ofp_port(uint16_t odp_port)
66{
67 switch (odp_port) {
68 case ODPP_LOCAL:
69 return OFPP_LOCAL;
70 case ODPP_NONE:
71 return OFPP_NONE;
72 default:
73 return odp_port;
74 }
75}
76
77void format_odp_action(struct ds *, const union odp_action *);
78void format_odp_actions(struct ds *, const union odp_action *actions,
79 size_t n_actions);
80void format_odp_flow_stats(struct ds *, const struct odp_flow_stats *);
81void format_odp_flow(struct ds *, const struct odp_flow *);
82
83#endif /* odp-util.h */