hc
2023-11-22 983d7f83616922a6439b4352d1b3af488ee27f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// SPDX-License-Identifier: GPL-2.0
#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;
}
 
void arch_topdown_group_warn(void)
{
   fprintf(stderr,
       "nmi_watchdog enabled with topdown. May give wrong results.\n"
       "Disable with echo 0 > /proc/sys/kernel/nmi_watchdog\n");
}