#include <stdio.h> #include "api/fs/fs.h" #include "util/group.h" /* * Check whether we can use a group for top down. * Without a group may get bad results due to multiplexing. */
bool arch_topdown_check_group(bool *warn) { int n; if (sysctl__read_int("kernel/nmi_watchdog", &n) < 0) return false; if (n > 0) { *warn = true; return false; } return true; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
andi kleen | andi kleen | 46 | 100.00% | 1 | 100.00% |
Total | 46 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
andi kleen | andi kleen | 15 | 100.00% | 1 | 100.00% |
Total | 15 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
andi kleen | andi kleen | 71 | 100.00% | 1 | 100.00% |
Total | 71 | 100.00% | 1 | 100.00% |