Le 30/09/2015 23:25, Eric W. Biederman a écrit :
In preparation for the ipv4 and ipv6 fragmentation code taking a net
parameter pass a struct net into ovs_fragment where the v4 and v6
fragmentation code is called.

Signed-off-by: "Eric W. Biederman" <ebied...@xmission.com>
---
[snip]
@@ -748,6 +748,7 @@ static void do_output(struct datapath *dp, struct sk_buff 
*skb, int out_port,
                if (likely(!mru || (skb->len <= mru + ETH_HLEN))) {
                        ovs_vport_send(vport, skb);
                } else if (mru <= vport->dev->mtu) {
+                       struct net *net = read_pnet(&dp->net);
nit: add an empty line after variables declaration.

                        __be16 ethertype = key->eth.type;

                        if (!is_flow_key_valid(key)) {
[snip]
--
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

Reply via email to