20 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2#ifndef __CAP_HELPERS_H3#define __CAP_HELPERS_H4 5#include <linux/types.h>6#include <linux/capability.h>7 8#ifndef CAP_PERFMON9#define CAP_PERFMON 3810#endif11 12#ifndef CAP_BPF13#define CAP_BPF 3914#endif15 16int cap_enable_effective(__u64 caps, __u64 *old_caps);17int cap_disable_effective(__u64 caps, __u64 *old_caps);18 19#endif20