Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/s390/include/uapi/asm/chpid.h
26481 views
1
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2
/*
3
* Copyright IBM Corp. 2007, 2012
4
* Author(s): Peter Oberparleiter <[email protected]>
5
*/
6
7
#ifndef _UAPI_ASM_S390_CHPID_H
8
#define _UAPI_ASM_S390_CHPID_H
9
10
#include <linux/string.h>
11
#include <linux/types.h>
12
13
#define __MAX_CHPID 255
14
15
struct chp_id {
16
__u8 reserved1;
17
__u8 cssid;
18
__u8 reserved2;
19
__u8 id;
20
} __attribute__((packed));
21
22
23
#endif /* _UAPI_ASM_S390_CHPID_H */
24
25