mirror of
https://github.com/openvswitch/ovs
synced 2025-09-01 23:05:29 +00:00
flow: Get rid of flow_t typedef.
When userspace and the kernel were using the same structure for flows, flow_t was a useful way to indicate that a structure was really a userspace flow instead of a kernel one, but now it's better to just write "struct flow" for consistency, since OVS doesn't use typedefs for structs elsewhere. Acked-by: Jesse Gross <jesse@nicira.com>
This commit is contained in:
@@ -835,7 +835,7 @@ dpif_netdev_execute(struct dpif *dpif,
|
||||
struct dp_netdev *dp = get_dp_netdev(dpif);
|
||||
struct ofpbuf copy;
|
||||
bool mutates;
|
||||
flow_t key;
|
||||
struct flow key;
|
||||
int error;
|
||||
|
||||
if (packet->size < ETH_HEADER_LEN || packet->size > UINT16_MAX) {
|
||||
|
Reference in New Issue
Block a user