From: Jesse Gross Date: Wed, 9 Nov 2011 22:13:44 +0000 (-0800) Subject: datapath: Fix comment formatting. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1672b4cc137bc93b82d79d642fdc43420e82d0f;p=openvswitch datapath: Fix comment formatting. A few of the recently added fields in struct sw_flow_key had comments that weren't properly aligned. Signed-off-by: Jesse Gross Acked-by: Ben Pfaff --- diff --git a/datapath/flow.h b/datapath/flow.h index c08d3dfe..43360cc6 100644 --- a/datapath/flow.h +++ b/datapath/flow.h @@ -45,8 +45,8 @@ struct sw_flow_key { struct { u8 proto; /* IP protocol or lower 8 bits of ARP opcode. */ u8 tos; /* IP ToS. */ - u8 ttl; /* IP TTL/hop limit. */ - u8 frag; /* One of OVS_FRAG_TYPE_*. */ + u8 ttl; /* IP TTL/hop limit. */ + u8 frag; /* One of OVS_FRAG_TYPE_*. */ } ip; union { struct { @@ -70,7 +70,7 @@ struct sw_flow_key { struct in6_addr src; /* IPv6 source address. */ struct in6_addr dst; /* IPv6 destination address. */ } addr; - __be32 label; /* IPv6 flow label. */ + __be32 label; /* IPv6 flow label. */ struct { __be16 src; /* TCP/UDP source port. */ __be16 dst; /* TCP/UDP destination port. */