mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	Commit bb0ad1987e ("ipv6: fib6_rules: support for match on sport, dport
and ip proto") added support for protocol and ports to FIB rules.
Update the FIB lookup tracepoint to dump the parameters.
Signed-off-by: David Ahern <dsahern@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
		
	
			
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * consolidates trace point definitions
 | 
						|
 *
 | 
						|
 * Copyright (C) 2009 Neil Horman <nhorman@tuxdriver.com>
 | 
						|
 */
 | 
						|
 | 
						|
#include <linux/netdevice.h>
 | 
						|
#include <linux/etherdevice.h>
 | 
						|
#include <linux/string.h>
 | 
						|
#include <linux/if_arp.h>
 | 
						|
#include <linux/inetdevice.h>
 | 
						|
#include <linux/inet.h>
 | 
						|
#include <linux/interrupt.h>
 | 
						|
#include <linux/export.h>
 | 
						|
#include <linux/netpoll.h>
 | 
						|
#include <linux/sched.h>
 | 
						|
#include <linux/delay.h>
 | 
						|
#include <linux/rcupdate.h>
 | 
						|
#include <linux/types.h>
 | 
						|
#include <linux/workqueue.h>
 | 
						|
#include <linux/netlink.h>
 | 
						|
#include <linux/net_dropmon.h>
 | 
						|
#include <linux/slab.h>
 | 
						|
 | 
						|
#include <asm/unaligned.h>
 | 
						|
#include <asm/bitops.h>
 | 
						|
 | 
						|
#define CREATE_TRACE_POINTS
 | 
						|
#include <trace/events/skb.h>
 | 
						|
#include <trace/events/net.h>
 | 
						|
#include <trace/events/napi.h>
 | 
						|
#include <trace/events/sock.h>
 | 
						|
#include <trace/events/udp.h>
 | 
						|
#include <trace/events/tcp.h>
 | 
						|
#include <trace/events/fib.h>
 | 
						|
#include <trace/events/qdisc.h>
 | 
						|
#if IS_ENABLED(CONFIG_BRIDGE)
 | 
						|
#include <trace/events/bridge.h>
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(br_fdb_add);
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(br_fdb_external_learn_add);
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(fdb_delete);
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(br_fdb_update);
 | 
						|
#endif
 | 
						|
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(kfree_skb);
 | 
						|
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(napi_poll);
 | 
						|
 | 
						|
EXPORT_TRACEPOINT_SYMBOL_GPL(tcp_send_reset);
 |