mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 03:05:21 +07:00
07be038209
To provide access to the set-partition-resource-parameter interface to user space add a new attribute to hypfs/debugfs: * s390_hypsfs/diag_304 The data for the query-partition-resource-parameters command can be access by a read on the attribute. All other diagnose 0x304 requests need to be submitted via ioctl with CAP_SYS_ADMIN rights. Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
26 lines
412 B
C
26 lines
412 B
C
/*
|
|
* IOCTL interface for hypfs
|
|
*
|
|
* Copyright IBM Corp. 2013
|
|
*
|
|
* Author: Martin Schwidefsky <schwidefsky@de.ibm.com>
|
|
*/
|
|
|
|
#ifndef _ASM_HYPFS_CTL_H
|
|
#define _ASM_HYPFS_CTL_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct hypfs_diag304 {
|
|
__u32 args[2];
|
|
__u64 data;
|
|
__u64 rc;
|
|
} __attribute__((packed));
|
|
|
|
#define HYPFS_IOCTL_MAGIC 0x10
|
|
|
|
#define HYPFS_DIAG304 \
|
|
_IOWR(HYPFS_IOCTL_MAGIC, 0x20, struct hypfs_diag304)
|
|
|
|
#endif
|