#ifndef PROTOS_H #define PROTOS_H struct protocol; extern struct protocol arp_ops; extern struct protocol ethernet_ops; extern struct protocol icmpv4_ops; extern struct protocol icmpv6_ops; extern struct protocol igmp_ops; extern struct protocol ip_auth_ops; extern struct protocol ip_esp_ops; extern struct protocol ipv4_ops; extern struct protocol ipv6_ops; extern struct protocol ipv6_dest_opts_ops; extern struct protocol ipv6_fragm_ops; extern struct protocol ipv6_hop_by_hop_ops; extern struct protocol ipv6_in_ipv4_ops; extern struct protocol ipv6_mobility_ops; extern struct protocol ipv6_no_next_header_ops; extern struct protocol ipv6_routing_ops; extern struct protocol lldp_ops; extern struct protocol none_ops; extern struct protocol tcp_ops; extern struct protocol udp_ops; extern struct protocol vlan_ops; extern struct protocol ieee80211_ops; extern struct protocol QinQ_ops; extern struct protocol mpls_uc_ops; extern struct protocol nlmsg_ops; #endif /* PROTOS_H */ 45e2'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2017-01-20 12:28:02 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2017-01-20 12:28:02 -0800
commite3737b9145636e884d7185176cbe76a3f2c645e2 (patch)
tree6975956beddec515ebaa2fa88ddb3812a6f421fa /tools
parentcca112ecf259e24096bc18b736c3ae985e81ac72 (diff)
parentd61b7f972dab2a7d187c38254845546dfc8eed85 (diff)
Merge branch 'for-linus' of git://git.kernel.dk/linux-block
Pull block fixes from Jens Axboe: "Just two small fixes for this -rc. One is just killing an unused variable from Keith, but the other fixes a performance regression for nbd in this series, where we inadvertently flipped when we set MSG_MORE when outputting data" * 'for-linus' of git://git.kernel.dk/linux-block: nbd: only set MSG_MORE when we have more to send blk-mq: Remove unused variable
Diffstat (limited to 'tools')