Warning: This file is not a C or C++ file. It does not have highlighting.
1 | /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ |
---|---|
2 | #ifndef _UAPI_PAPR_PLATFORM_DUMP_H_ |
3 | #define _UAPI_PAPR_PLATFORM_DUMP_H_ |
4 | |
5 | #include <linux/types.h> |
6 | #include <asm/ioctl.h> |
7 | #include <asm/papr-miscdev.h> |
8 | |
9 | /* |
10 | * ioctl for /dev/papr-platform-dump. Returns a platform-dump handle fd |
11 | * corresponding to dump tag. |
12 | */ |
13 | #define PAPR_PLATFORM_DUMP_IOC_CREATE_HANDLE _IOW(PAPR_MISCDEV_IOC_ID, 6, __u64) |
14 | #define PAPR_PLATFORM_DUMP_IOC_INVALIDATE _IOW(PAPR_MISCDEV_IOC_ID, 7, __u64) |
15 | |
16 | #endif /* _UAPI_PAPR_PLATFORM_DUMP_H_ */ |
17 |
Warning: This file is not a C or C++ file. It does not have highlighting.