treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / tools / perf / util / cap.h
blob051dc590ceeebca6a77d9ece65cd159ceb59a31b
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __PERF_CAP_H
3 #define __PERF_CAP_H
5 #include <stdbool.h>
6 #include <linux/capability.h>
7 #include <linux/compiler.h>
9 #ifdef HAVE_LIBCAP_SUPPORT
11 #include <sys/capability.h>
13 bool perf_cap__capable(cap_value_t cap);
15 #else
17 #include <unistd.h>
18 #include <sys/types.h>
20 static inline bool perf_cap__capable(int cap __maybe_unused)
22 return geteuid() == 0;
25 #endif /* HAVE_LIBCAP_SUPPORT */
27 /* For older systems */
28 #ifndef CAP_SYSLOG
29 #define CAP_SYSLOG 34
30 #endif
32 #endif /* __PERF_CAP_H */