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_VPORT_LIST32 _IOWR('O', 10, struct compat_odp_portvec)
19 #define ODP_FLOW_GET32 _IOWR('O', 13, struct compat_odp_flowvec)
20 #define ODP_FLOW_PUT32 _IOWR('O', 14, struct compat_odp_flow)
21 #define ODP_FLOW_LIST32 _IOWR('O', 15, struct compat_odp_flowvec)
22 #define ODP_FLOW_DEL32 _IOWR('O', 17, struct compat_odp_flow)
23 #define ODP_EXECUTE32 _IOR('O', 18, struct compat_odp_execute)
24 #define ODP_FLOW_DEL32 _IOWR('O', 17, struct compat_odp_flow)
26 struct compat_odp_portvec {
31 struct compat_odp_flow {
32 struct odp_flow_stats stats;
33 struct odp_flow_key key;
34 compat_uptr_t actions;
39 struct compat_odp_flow_put {
40 struct compat_odp_flow flow;
44 struct compat_odp_flowvec {
49 struct compat_odp_execute {
50 compat_uptr_t actions;
56 #endif /* CONFIG_COMPAT */
58 #endif /* odp-compat.h */