actions.c (09ce069dff607f86dcdeb541d20734a8f42478c5) | actions.c (7d5437c709ded4f152cb8b305d17972d6707f20c) |
---|---|
1/* 2 * Copyright (c) 2007-2012 Nicira, Inc. 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of version 2 of the GNU General Public 6 * License as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, but --- 422 unchanged lines hidden (view full) --- 431 case OVS_KEY_ATTR_PRIORITY: 432 skb->priority = nla_get_u32(nested_attr); 433 break; 434 435 case OVS_KEY_ATTR_SKB_MARK: 436 skb->mark = nla_get_u32(nested_attr); 437 break; 438 | 1/* 2 * Copyright (c) 2007-2012 Nicira, Inc. 3 * 4 * This program is free software; you can redistribute it and/or 5 * modify it under the terms of version 2 of the GNU General Public 6 * License as published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, but --- 422 unchanged lines hidden (view full) --- 431 case OVS_KEY_ATTR_PRIORITY: 432 skb->priority = nla_get_u32(nested_attr); 433 break; 434 435 case OVS_KEY_ATTR_SKB_MARK: 436 skb->mark = nla_get_u32(nested_attr); 437 break; 438 |
439 case OVS_KEY_ATTR_IPV4_TUNNEL: 440 OVS_CB(skb)->tun_key = nla_data(nested_attr); 441 break; 442 |
|
439 case OVS_KEY_ATTR_ETHERNET: 440 err = set_eth_addr(skb, nla_data(nested_attr)); 441 break; 442 443 case OVS_KEY_ATTR_IPV4: 444 err = set_ipv4(skb, nla_data(nested_attr)); 445 break; 446 --- 90 unchanged lines hidden --- | 443 case OVS_KEY_ATTR_ETHERNET: 444 err = set_eth_addr(skb, nla_data(nested_attr)); 445 break; 446 447 case OVS_KEY_ATTR_IPV4: 448 err = set_ipv4(skb, nla_data(nested_attr)); 449 break; 450 --- 90 unchanged lines hidden --- |