[go: up one dir, main page]

File: mce.c

package info (click to toggle)
trinity 1.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 3,252 kB
  • ctags: 2,738
  • sloc: ansic: 24,011; sh: 322; makefile: 141
file content (29 lines) | stat: -rw-r--r-- 634 bytes parent folder | download | duplicates (6)
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
29
#include <linux/ioctl.h>

#include "utils.h"
#include "ioctls.h"

#define MCE_GET_RECORD_LEN   _IOR('M', 1, int)
#define MCE_GET_LOG_LEN      _IOR('M', 2, int)
#define MCE_GETCLEAR_FLAGS   _IOR('M', 3, int)

static const struct ioctl mce_ioctls[] = {
	IOCTL(MCE_GET_RECORD_LEN),
	IOCTL(MCE_GET_LOG_LEN),
	IOCTL(MCE_GETCLEAR_FLAGS),
};

static const char *const mce_devs[] = {
	"mcelog",
};

static const struct ioctl_group mce_grp = {
	.devtype = DEV_MISC,
	.devs = mce_devs,
	.devs_cnt = ARRAY_SIZE(mce_devs),
	.sanitise = pick_random_ioctl,
	.ioctls = mce_ioctls,
	.ioctls_cnt = ARRAY_SIZE(mce_ioctls),
};

REG_IOCTL_GROUP(mce_grp)