2 * Copyright (c) 2009, 2010 Nicira Networks.
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:
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
23 #include "openflow/openflow.h"
24 #include "openvswitch/datapath-protocol.h"
29 /* The kernel datapaths limits actions to those that fit in a single page of
30 * memory, so there is no point in allocating more than that. */
31 enum { MAX_ODP_ACTIONS = 4096 / sizeof(union odp_action) };
33 /* odp_actions_add() assumes that MAX_ODP_ACTIONS is a power of 2. */
34 BUILD_ASSERT_DECL(IS_POW2(MAX_ODP_ACTIONS));
38 union odp_action actions[MAX_ODP_ACTIONS];
42 odp_actions_init(struct odp_actions *actions)
44 actions->n_actions = 0;
47 union odp_action *odp_actions_add(struct odp_actions *actions, uint16_t type);
50 odp_actions_overflow(const struct odp_actions *actions)
52 return actions->n_actions > MAX_ODP_ACTIONS;
55 static inline uint16_t
56 ofp_port_to_odp_port(uint16_t ofp_port)
68 static inline uint16_t
69 odp_port_to_ofp_port(uint16_t odp_port)
81 void format_odp_action(struct ds *, const union odp_action *);
82 void format_odp_actions(struct ds *, const union odp_action *actions,
84 void format_odp_flow_stats(struct ds *, const struct odp_flow_stats *);
85 void format_odp_flow(struct ds *, const struct odp_flow *);
87 #endif /* odp-util.h */