2 * Copyright (c) 2010 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
10 #define ODP_COMPAT_H 1
12 /* 32-bit ioctl compatibility definitions for datapath protocol. */
15 #include "openvswitch/datapath-protocol.h"
16 #include <linux/compat.h>
18 #define ODP_PORT_LIST32 _IOWR('O', 10, struct compat_odp_portvec)
19 #define ODP_PORT_GROUP_SET32 _IOR('O', 11, struct compat_odp_port_group)
20 #define ODP_PORT_GROUP_GET32 _IOWR('O', 12, struct compat_odp_port_group)
21 #define ODP_FLOW_GET32 _IOWR('O', 13, struct compat_odp_flow)
22 #define ODP_FLOW_PUT32 _IOWR('O', 14, struct compat_odp_flow)
23 #define ODP_FLOW_LIST32 _IOWR('O', 15, struct compat_odp_flowvec)
24 #define ODP_FLOW_DEL32 _IOWR('O', 17, struct compat_odp_flow)
25 #define ODP_EXECUTE32 _IOR('O', 18, struct compat_odp_execute)
26 #define ODP_FLOW_DEL32 _IOWR('O', 17, struct compat_odp_flow)
27 #define ODP_VPORT_ADD32 _IOR('O', 21, struct compat_odp_vport_add)
28 #define ODP_VPORT_MOD32 _IOR('O', 22, struct compat_odp_vport_mod)
30 struct compat_odp_portvec {
35 struct compat_odp_port_group {
37 u16 n_ports; /* Number of ports. */
38 u16 group; /* Group number. */
41 struct compat_odp_flow {
42 struct odp_flow_stats stats;
43 struct odp_flow_key key;
44 compat_uptr_t actions;
49 struct compat_odp_flow_put {
50 struct compat_odp_flow flow;
54 struct compat_odp_flowvec {
59 struct compat_odp_execute {
64 compat_uptr_t actions;
71 struct compat_odp_vport_add {
72 char port_type[VPORT_TYPE_SIZE];
73 char devname[16]; /* IFNAMSIZ */
77 struct compat_odp_vport_mod {
78 char devname[16]; /* IFNAMSIZ */
81 #endif /* CONFIG_COMPAT */
83 #endif /* odp-compat.h */