serial: exar: Fix GPIO configuration for Sealevel cards based on XR17V35X
[linux/fpc-iii.git] / kernel / bpf / sysfs_btf.c
blob3b495773de5aef29ec5d5e7e0400a1a668f1edfe
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Provide kernel BTF information for introspection and use by eBPF tools.
4 */
5 #include <linux/kernel.h>
6 #include <linux/module.h>
7 #include <linux/kobject.h>
8 #include <linux/init.h>
9 #include <linux/sysfs.h>
11 /* See scripts/link-vmlinux.sh, gen_btf() func for details */
12 extern char __weak __start_BTF[];
13 extern char __weak __stop_BTF[];
15 static ssize_t
16 btf_vmlinux_read(struct file *file, struct kobject *kobj,
17 struct bin_attribute *bin_attr,
18 char *buf, loff_t off, size_t len)
20 memcpy(buf, __start_BTF + off, len);
21 return len;
24 static struct bin_attribute bin_attr_btf_vmlinux __ro_after_init = {
25 .attr = { .name = "vmlinux", .mode = 0444, },
26 .read = btf_vmlinux_read,
29 static struct kobject *btf_kobj;
31 static int __init btf_vmlinux_init(void)
33 if (!__start_BTF)
34 return 0;
36 btf_kobj = kobject_create_and_add("btf", kernel_kobj);
37 if (!btf_kobj)
38 return -ENOMEM;
40 bin_attr_btf_vmlinux.size = __stop_BTF - __start_BTF;
42 return sysfs_create_bin_file(btf_kobj, &bin_attr_btf_vmlinux);
45 subsys_initcall(btf_vmlinux_init);