Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 #include <linux/bpf.h>
0004 #include <bpf/bpf_helpers.h>
0005 
0006 /* Dummy prog to test TC-BPF API */
0007 
0008 SEC("tc")
0009 int cls(struct __sk_buff *skb)
0010 {
0011     return 0;
0012 }