Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16-rc6 16 lines 528 B view raw
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_ */