forked from mirrors/linux
		
	We already moved all the functionality it provided in XDP samples helper userspace and kernel BPF object, so just delete the unneeded code. We also add generation of BPF skeleton and compilation using clang -target bpf for files ending with .bpf.c suffix (to denote that they use vmlinux.h). Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com> Signed-off-by: Alexei Starovoitov <ast@kernel.org> Link: https://lore.kernel.org/bpf/20210821002010.845777-14-memxor@gmail.com
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			C
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*  Copyright(c) 2017-2018 Jesper Dangaard Brouer, Red Hat Inc.
 | 
						|
 *
 | 
						|
 * XDP monitor tool, based on tracepoints
 | 
						|
 */
 | 
						|
#include "xdp_sample.bpf.h"
 | 
						|
 | 
						|
char _license[] SEC("license") = "GPL";
 |