diff options
author | Lorand Jakab <lojakab@cisco.com> | 2013-06-03 13:01:14 -0400 |
---|---|---|
committer | Jesse Gross <jesse@nicira.com> | 2013-06-14 18:09:10 -0400 |
commit | 34d94f2102fb361030569eb983751ed80742f6e9 (patch) | |
tree | b7c02ec783cdcf5a294c8aabe060e4044ac58567 /net/openvswitch | |
parent | 91b7514cdff406ad8f63d09b74f664c37bed2e01 (diff) |
openvswitch: fix variable names in comment
Signed-off-by: Lorand Jakab <lojakab@cisco.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/flow.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/openvswitch/flow.c b/net/openvswitch/flow.c index b15321a2228c..33df0913358d 100644 --- a/net/openvswitch/flow.c +++ b/net/openvswitch/flow.c | |||
@@ -590,10 +590,10 @@ out: | |||
590 | * - skb->network_header: just past the Ethernet header, or just past the | 590 | * - skb->network_header: just past the Ethernet header, or just past the |
591 | * VLAN header, to the first byte of the Ethernet payload. | 591 | * VLAN header, to the first byte of the Ethernet payload. |
592 | * | 592 | * |
593 | * - skb->transport_header: If key->dl_type is ETH_P_IP or ETH_P_IPV6 | 593 | * - skb->transport_header: If key->eth.type is ETH_P_IP or ETH_P_IPV6 |
594 | * on output, then just past the IP header, if one is present and | 594 | * on output, then just past the IP header, if one is present and |
595 | * of a correct length, otherwise the same as skb->network_header. | 595 | * of a correct length, otherwise the same as skb->network_header. |
596 | * For other key->dl_type values it is left untouched. | 596 | * For other key->eth.type values it is left untouched. |
597 | */ | 597 | */ |
598 | int ovs_flow_extract(struct sk_buff *skb, u16 in_port, struct sw_flow_key *key, | 598 | int ovs_flow_extract(struct sk_buff *skb, u16 in_port, struct sw_flow_key *key, |
599 | int *key_lenp) | 599 | int *key_lenp) |