[PATCH v4 net-next 03/11] net: Remove superfluous setting of key_basic

2015-05-28 Thread Tom Herbert
key_basic is set twice in __skb_flow_dissect which seems unnecessary.
Remove second one.

Acked-by: Jiri Pirko j...@resnulli.us
Signed-off-by: Tom Herbert t...@herbertland.com
---
 net/core/flow_dissector.c | 6 --
 1 file changed, 6 deletions(-)

diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c
index 7f69916..0763795 100644
--- a/net/core/flow_dissector.c
+++ b/net/core/flow_dissector.c
@@ -343,12 +343,6 @@ flow_label:
break;
}
 
-   /* It is ensured by skb_flow_dissector_init() that basic key will
-* be always present.
-*/
-   key_basic = skb_flow_dissector_target(flow_dissector,
- FLOW_DISSECTOR_KEY_BASIC,
- target_container);
key_basic-n_proto = proto;
key_basic-ip_proto = ip_proto;
key_basic-thoff = (u16) nhoff;
-- 
1.8.1

--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH v4 net-next 03/11] net: Remove superfluous setting of key_basic

2015-05-22 Thread Jiri Pirko
Fri, May 22, 2015 at 02:11:38AM CEST, t...@herbertland.com wrote:
key_basic is set twice in __skb_flow_dissect which seems unnecessary.
Remove second one.

Signed-off-by: Tom Herbert t...@herbertland.com

I have the same patch in my queue :)

Acked-by: Jiri Pirko j...@resnulli.us
--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH v4 net-next 03/11] net: Remove superfluous setting of key_basic

2015-05-21 Thread Tom Herbert
key_basic is set twice in __skb_flow_dissect which seems unnecessary.
Remove second one.

Signed-off-by: Tom Herbert t...@herbertland.com
---
 net/core/flow_dissector.c | 6 --
 1 file changed, 6 deletions(-)

diff --git a/net/core/flow_dissector.c b/net/core/flow_dissector.c
index 4a2cb93..6aebe99 100644
--- a/net/core/flow_dissector.c
+++ b/net/core/flow_dissector.c
@@ -343,12 +343,6 @@ flow_label:
break;
}
 
-   /* It is ensured by skb_flow_dissector_init() that basic key will
-* be always present.
-*/
-   key_basic = skb_flow_dissector_target(flow_dissector,
- FLOW_DISSECTOR_KEY_BASIC,
- target_container);
key_basic-n_proto = proto;
key_basic-ip_proto = ip_proto;
key_basic-thoff = (u16) nhoff;
-- 
1.8.1

--
To unsubscribe from this list: send the line unsubscribe netdev in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html