X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fopenvswitch%2Fdatapath-protocol.h;h=2ae0c828671aeb04544f8a2e0676763334d53451;hb=72b0630028e94a24d92a7c14cd7bce96a252a3f5;hp=bbc29f6d0e55753e560894a937c8952f211ef1c2;hpb=a26ef51703333b9ab337ba13f397c28c062422fd;p=openvswitch diff --git a/include/openvswitch/datapath-protocol.h b/include/openvswitch/datapath-protocol.h index bbc29f6d..2ae0c828 100644 --- a/include/openvswitch/datapath-protocol.h +++ b/include/openvswitch/datapath-protocol.h @@ -37,7 +37,7 @@ * ---------------------------------------------------------------------- */ -/* Protocol between secchan and datapath. */ +/* Protocol between userspace and kernel datapath. */ #ifndef OPENVSWITCH_DATAPATH_PROTOCOL_H #define OPENVSWITCH_DATAPATH_PROTOCOL_H 1 @@ -70,14 +70,15 @@ #define ODP_PORT_GROUP_GET _IOWR('O', 12, struct odp_port_group) #define ODP_FLOW_GET _IOWR('O', 13, struct odp_flow) -#define ODP_FLOW_GET_MULTIPLE _IOWR('O', 14, struct odp_flowvec) +#define ODP_FLOW_PUT _IOWR('O', 14, struct odp_flow) #define ODP_FLOW_LIST _IOWR('O', 15, struct odp_flowvec) - #define ODP_FLOW_FLUSH _IO('O', 16) -#define ODP_FLOW_PUT _IOWR('O', 17, struct odp_flow) -#define ODP_FLOW_DEL _IOWR('O', 18, struct odp_flow) +#define ODP_FLOW_DEL _IOWR('O', 17, struct odp_flow) + +#define ODP_EXECUTE _IOR('O', 18, struct odp_execute) -#define ODP_EXECUTE _IOR('O', 19, struct odp_execute) +#define ODP_SET_SFLOW_PROBABILITY _IOR('O', 20, int) +#define ODP_GET_SFLOW_PROBABILITY _IOW('O', 21, int) struct odp_stats { /* Flows. */ @@ -100,6 +101,7 @@ struct odp_stats { /* Queues. */ __u16 max_miss_queue; /* Max length of ODPL_MISS queue. */ __u16 max_action_queue; /* Max length of ODPL_ACTION queue. */ + __u16 max_sflow_queue; /* Max length of ODPL_SFLOW queue. */ }; /* Logical ports. */ @@ -111,7 +113,9 @@ struct odp_stats { #define ODPL_MISS (1 << _ODPL_MISS_NR) #define _ODPL_ACTION_NR 1 /* Packet output to ODPP_CONTROLLER. */ #define ODPL_ACTION (1 << _ODPL_ACTION_NR) -#define ODPL_ALL (ODPL_MISS | ODPL_ACTION) +#define _ODPL_SFLOW_NR 2 /* sFlow samples. */ +#define ODPL_SFLOW (1 << _ODPL_SFLOW_NR) +#define ODPL_ALL (ODPL_MISS | ODPL_ACTION | ODPL_SFLOW) /* Format of messages read from datapath fd. */ struct odp_msg { @@ -120,7 +124,23 @@ struct odp_msg { __u16 port; /* Port on which frame was received. */ __u16 reserved; __u32 arg; /* Argument value specified in action. */ - /* Followed by packet data. */ + + /* + * Followed by: + * + * ODPL_MISS, ODPL_ACTION: packet data. + * + * ODPL_SFLOW: "struct odp_sflow_sample_header", followed by + * an array of "union odp_action"s, followed by packet data. + */ +}; + +/* Header added to sFlow sampled packet. */ +struct odp_sflow_sample_header { + __u64 sample_pool; /* Number of potentially sampled packets. */ + __u32 n_actions; /* Number of following "union odp_action"s. */ + __u32 reserved; /* Pad up to 64-bit boundary. */ + /* Followed by n_action "union odp_action"s. */ }; #define ODP_PORT_INTERNAL (1 << 0) /* This port is simulated. */ @@ -149,7 +169,7 @@ struct odp_flow_stats { __u32 used_nsec; __u8 tcp_flags; __u8 ip_tos; - __u16 reserved; + __u16 error; /* Used by ODP_FLOW_GET. */ }; struct odp_flow_key { @@ -167,11 +187,15 @@ struct odp_flow_key { __u8 reserved; /* Pad to 64 bits. */ }; +/* Flags for ODP_FLOW. */ +#define ODPFF_ZERO_TCP_FLAGS (1 << 0) /* Zero the TCP flags. */ + struct odp_flow { struct odp_flow_stats stats; struct odp_flow_key key; union odp_action *actions; __u32 n_actions; + __u32 flags; }; /* Flags for ODP_FLOW_PUT. */