X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fopenvswitch%2Fdatapath-protocol.h;h=19826332419efef93a54679e2c5e7390cea0f66d;hb=959a2ecdc8a5ffe53e74456ff6eb1ec25092db75;hp=ce187efa1a90cffb6a360cd5d8fc346b634e83c4;hpb=4e256b6bf053a0c4ef9a599f83e647daca3b21a6;p=openvswitch diff --git a/include/openvswitch/datapath-protocol.h b/include/openvswitch/datapath-protocol.h index ce187efa..19826332 100644 --- a/include/openvswitch/datapath-protocol.h +++ b/include/openvswitch/datapath-protocol.h @@ -117,30 +117,47 @@ struct odp_stats { #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 - format of messages read from datapath fd. + * @type: One of the %_ODPL_* constants. + * @length: Total length of message, including this header. + * @port: Port that received the packet embedded in this message. + * @reserved: Not currently used. Should be set to 0. + * @arg: Argument value whose meaning depends on @type. + * + * For @type == %_ODPL_MISS_NR, the header is followed by packet data. The + * @arg member is unused and set to 0. + * + * For @type == %_ODPL_ACTION_NR, the header is followed by packet data. The + * @arg member is copied from the &struct odp_action_controller that caused + * the &struct odp_msg to be composed. + * + * For @type == %_ODPL_SFLOW_NR, the header is followed by &struct + * odp_sflow_sample_header, then by an array of &union odp_action (the number + * of which is specified in &struct odp_sflow_sample_header), then by packet + * data. + */ struct odp_msg { - __u32 type; /* _ODPL_MISS_NR or _ODPL_ACTION_NR. */ - __u32 length; /* Message length, including header. */ - __u16 port; /* Port on which frame was received. */ + __u32 type; + __u32 length; + __u16 port; __u16 reserved; - __u32 arg; /* Argument value specified in action. */ - - /* - * 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. - */ + __u32 arg; }; -/* Header added to sFlow sampled packet. */ +/** + * struct odp_sflow_sample_header - header added to sFlow sampled packet. + * @sample_pool: Number of packets that were candidates for sFlow sampling, + * regardless of whether they were actually chosen and sent down to userspace. + * @n_actions: Number of "union odp_action"s immediately following this header. + * + * This header follows &struct odp_msg when that structure's @type is + * %_ODPL_SFLOW_NR, and it is itself followed by an array of &union odp_action + * (the number of which is specified in @n_actions) and then by packet data. + */ 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. */ + __u32 sample_pool; + __u32 n_actions; }; #define ODP_PORT_INTERNAL (1 << 0) /* This port is simulated. */ @@ -184,7 +201,7 @@ struct odp_flow_key { __u8 dl_dst[ETH_ALEN]; /* Ethernet destination address. */ __u8 nw_proto; /* IP protocol or lower 8 bits of ARP opcode. */ - __u8 reserved; /* Pad to 64 bits. */ + __u8 dl_vlan_pcp; /* Input VLAN priority. */ }; /* Flags for ODP_FLOW. */ @@ -230,9 +247,10 @@ struct odp_flowvec { #define ODPAT_SET_DL_DST 7 /* Ethernet destination address. */ #define ODPAT_SET_NW_SRC 8 /* IP source address. */ #define ODPAT_SET_NW_DST 9 /* IP destination address. */ -#define ODPAT_SET_TP_SRC 10 /* TCP/UDP source port. */ -#define ODPAT_SET_TP_DST 11 /* TCP/UDP destination port. */ -#define ODPAT_N_ACTIONS 12 +#define ODPAT_SET_NW_TOS 10 /* IP ToS/DSCP field (6 bits). */ +#define ODPAT_SET_TP_SRC 11 /* TCP/UDP source port. */ +#define ODPAT_SET_TP_DST 12 /* TCP/UDP destination port. */ +#define ODPAT_N_ACTIONS 13 struct odp_action_output { __u16 type; /* ODPAT_OUTPUT. */ @@ -284,6 +302,14 @@ struct odp_action_nw_addr { __be32 nw_addr; /* IP address. */ }; +struct odp_action_nw_tos { + __u16 type; /* ODPAT_SET_NW_TOS. */ + __u8 nw_tos; /* IP ToS/DSCP field (6 bits). */ + __u8 reserved1; + __u16 reserved2; + __u16 reserved3; +}; + /* Action structure for ODPAT_SET_TP_SRC/DST. */ struct odp_action_tp_port { __u16 type; /* ODPAT_SET_TP_SRC/DST. */ @@ -301,6 +327,7 @@ union odp_action { struct odp_action_vlan_pcp vlan_pcp; struct odp_action_dl_addr dl_addr; struct odp_action_nw_addr nw_addr; + struct odp_action_nw_tos nw_tos; struct odp_action_tp_port tp_port; };