~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/samples/bpf/spintest.bpf.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /samples/bpf/spintest.bpf.c (Version linux-6.12-rc7) and /samples/bpf/spintest.bpf.c (Version linux-6.9.12)


  1 /* Copyright (c) 2016, Facebook                     1 /* Copyright (c) 2016, Facebook
  2  *                                                  2  *
  3  * This program is free software; you can redi      3  * This program is free software; you can redistribute it and/or
  4  * modify it under the terms of version 2 of t      4  * modify it under the terms of version 2 of the GNU General Public
  5  * License as published by the Free Software F      5  * License as published by the Free Software Foundation.
  6  */                                                 6  */
  7 #include "vmlinux.h"                                7 #include "vmlinux.h"
  8 #include <linux/version.h>                          8 #include <linux/version.h>
  9 #include <bpf/bpf_helpers.h>                        9 #include <bpf/bpf_helpers.h>
 10 #include <bpf/bpf_tracing.h>                       10 #include <bpf/bpf_tracing.h>
 11                                                    11 
 12 #ifndef PERF_MAX_STACK_DEPTH                       12 #ifndef PERF_MAX_STACK_DEPTH
 13 #define PERF_MAX_STACK_DEPTH         127           13 #define PERF_MAX_STACK_DEPTH         127
 14 #endif                                             14 #endif
 15                                                    15 
 16 struct {                                           16 struct {
 17         __uint(type, BPF_MAP_TYPE_HASH);           17         __uint(type, BPF_MAP_TYPE_HASH);
 18         __type(key, long);                         18         __type(key, long);
 19         __type(value, long);                       19         __type(value, long);
 20         __uint(max_entries, 1024);                 20         __uint(max_entries, 1024);
 21 } my_map SEC(".maps");                             21 } my_map SEC(".maps");
 22 struct {                                           22 struct {
 23         __uint(type, BPF_MAP_TYPE_PERCPU_HASH)     23         __uint(type, BPF_MAP_TYPE_PERCPU_HASH);
 24         __uint(key_size, sizeof(long));            24         __uint(key_size, sizeof(long));
 25         __uint(value_size, sizeof(long));          25         __uint(value_size, sizeof(long));
 26         __uint(max_entries, 1024);                 26         __uint(max_entries, 1024);
 27 } my_map2 SEC(".maps");                            27 } my_map2 SEC(".maps");
 28                                                    28 
 29 struct {                                           29 struct {
 30         __uint(type, BPF_MAP_TYPE_STACK_TRACE)     30         __uint(type, BPF_MAP_TYPE_STACK_TRACE);
 31         __uint(key_size, sizeof(u32));             31         __uint(key_size, sizeof(u32));
 32         __uint(value_size, PERF_MAX_STACK_DEPT     32         __uint(value_size, PERF_MAX_STACK_DEPTH * sizeof(u64));
 33         __uint(max_entries, 10000);                33         __uint(max_entries, 10000);
 34 } stackmap SEC(".maps");                           34 } stackmap SEC(".maps");
 35                                                    35 
 36 #define PROG(foo) \                                36 #define PROG(foo) \
 37 int foo(struct pt_regs *ctx) \                     37 int foo(struct pt_regs *ctx) \
 38 { \                                                38 { \
 39         long v = PT_REGS_IP(ctx), *val; \          39         long v = PT_REGS_IP(ctx), *val; \
 40 \                                                  40 \
 41         val = bpf_map_lookup_elem(&my_map, &v)     41         val = bpf_map_lookup_elem(&my_map, &v); \
 42         bpf_map_update_elem(&my_map, &v, &v, B     42         bpf_map_update_elem(&my_map, &v, &v, BPF_ANY); \
 43         bpf_map_update_elem(&my_map2, &v, &v,      43         bpf_map_update_elem(&my_map2, &v, &v, BPF_ANY); \
 44         bpf_map_delete_elem(&my_map2, &v); \       44         bpf_map_delete_elem(&my_map2, &v); \
 45         bpf_get_stackid(ctx, &stackmap, BPF_F_     45         bpf_get_stackid(ctx, &stackmap, BPF_F_REUSE_STACKID); \
 46         return 0; \                                46         return 0; \
 47 }                                                  47 }
 48                                                    48 
 49 /* add kprobes to all possible *spin* function     49 /* add kprobes to all possible *spin* functions */
 50 SEC("kprobe.multi/spin_*lock*")PROG(spin_lock)     50 SEC("kprobe.multi/spin_*lock*")PROG(spin_lock)
 51 SEC("kprobe.multi/*_spin_on_owner")PROG(spin_o     51 SEC("kprobe.multi/*_spin_on_owner")PROG(spin_on_owner)
 52 SEC("kprobe.multi/_raw_spin_*lock*")PROG(raw_s     52 SEC("kprobe.multi/_raw_spin_*lock*")PROG(raw_spin_lock)
 53                                                    53 
 54 /* and to inner bpf helpers */                     54 /* and to inner bpf helpers */
 55 SEC("kprobe/htab_map_update_elem")PROG(p15)        55 SEC("kprobe/htab_map_update_elem")PROG(p15)
 56 SEC("kprobe/__htab_percpu_map_update_elem")PRO     56 SEC("kprobe/__htab_percpu_map_update_elem")PROG(p16)
 57 SEC("kprobe/htab_map_alloc")PROG(p17)              57 SEC("kprobe/htab_map_alloc")PROG(p17)
 58                                                    58 
 59 char _license[] SEC("license") = "GPL";            59 char _license[] SEC("license") = "GPL";
 60 u32 _version SEC("version") = LINUX_VERSION_CO     60 u32 _version SEC("version") = LINUX_VERSION_CODE;
 61                                                    61 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php