Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/x86/include/uapi/asm/ist.h
26495 views
1
/* SPDX-License-Identifier: GPL-2.0+ WITH Linux-syscall-note */
2
/*
3
* Include file for the interface to IST BIOS
4
* Copyright 2002 Andy Grover <[email protected]>
5
*
6
* This program is free software; you can redistribute it and/or modify it
7
* under the terms of the GNU General Public License as published by the
8
* Free Software Foundation; either version 2, or (at your option) any
9
* later version.
10
*
11
* This program is distributed in the hope that it will be useful, but
12
* WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
* General Public License for more details.
15
*/
16
#ifndef _UAPI_ASM_X86_IST_H
17
#define _UAPI_ASM_X86_IST_H
18
19
20
21
#include <linux/types.h>
22
23
struct ist_info {
24
__u32 signature;
25
__u32 command;
26
__u32 event;
27
__u32 perf_level;
28
};
29
30
#endif /* _UAPI_ASM_X86_IST_H */
31
32