#ifndef LIST_I_H #define LIST_I_H #include #include #define list_head cds_list_head #define LIST_HEAD CDS_LIST_HEAD #define INIT_LIST_HEAD CDS_INIT_LIST_HEAD #define LIST_HEAD_INIT CDS_LIST_HEAD_INIT #define list_add cds_list_add #define list_add_tail cds_list_add_tail #define list_del cds_list_del #define list_del_init cds_list_del_init #define list_move cds_list_move #define list_replace cds_list_replace #define list_splice cds_list_splice #define list_entry cds_list_entry #define list_first_entry cds_list_first_entry #define list_for_each cds_list_for_each #define list_for_each_safe cds_list_for_each_safe #define list_for_each_prev cds_list_for_each_prev #define list_for_each_prev_safe cds_list_for_each_prev_safe #define list_for_each_entry cds_list_for_each_entry #define list_for_each_entry_safe cds_list_for_each_entry_safe #define list_for_each_entry_reverse cds_list_for_each_entry_reverse #define list_empty cds_list_empty #define list_replace_init cds_list_replace_init #define list_add_rcu cds_list_add_rcu #define list_add_tail_rcu cds_list_add_tail_rcu #define list_replace_rcu cds_list_replace_rcu #define list_del_rcu cds_list_del_rcu #define list_for_each_rcu cds_list_for_each_rcu #define list_for_each_entry_rcu cds_list_for_each_entry_rcu #endif /* LIST_I_H */ >packet-rx-pump-back net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-10 09:23:19 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-10 09:23:19 -0800
commitcd6628953e4216b65e7d91ab70ff8e5b65c9fde9 (patch)
tree2edd235752b9a668649f8a071159340128495e30 /tools/testing/selftests/efivarfs
parent810ac7b7558d7830e72d8dbf34b851fce39e08b0 (diff)
parentd33695fbfab73a4a6550fa5c2d0bacc68d7c5901 (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Pull networking fixes from David Miller: 1) Limit the number of can filters to avoid > MAX_ORDER allocations. Fix from Marc Kleine-Budde. 2) Limit GSO max size in netvsc driver to avoid problems with NVGRE configurations. From Stephen Hemminger. 3) Return proper error when memory allocation fails in ser_gigaset_init(), from Dan Carpenter. 4) Missing linkage undo in error paths of ipvlan_link_new(), from Gao Feng. 5) Missing necessayr SET_NETDEV_DEV in lantiq and cpmac drivers, from Florian Fainelli. 6) Handle probe deferral properly in smsc911x driver. * git://git.kernel.org/pub/scm/linux/kernel/git/davem/net: net: mlx5: Fix Kconfig help text net: smsc911x: back out silently on probe deferrals ibmveth: set correct gso_size and gso_type net: ethernet: cpmac: Call SET_NETDEV_DEV() net: ethernet: lantiq_etop: Call SET_NETDEV_DEV() vhost-vsock: fix orphan connection reset cxgb4/cxgb4vf: Assign netdev->dev_port with port ID driver: ipvlan: Unlink the upper dev when ipvlan_link_new failed ser_gigaset: return -ENOMEM on error instead of success NET: usb: cdc_mbim: add quirk for supporting Telit LE922A can: peak: fix bad memory access and free sequence phy: Don't increment MDIO bus refcount unless it's a different owner netvsc: reduce maximum GSO size drivers: net: cpsw-phy-sel: Clear RGMII_IDMODE on "rgmii" links can: raw: raw_setsockopt: limit number of can_filter that can be set
Diffstat (limited to 'tools/testing/selftests/efivarfs')