chpid.h 456 B

123456789101112131415161718192021222324
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * Copyright IBM Corp. 2007, 2012
  4. * Author(s): Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
  5. */
  6. #ifndef _UAPI_ASM_S390_CHPID_H
  7. #define _UAPI_ASM_S390_CHPID_H
  8. #include <linux/string.h>
  9. #include <linux/types.h>
  10. #define __MAX_CHPID 255
  11. struct chp_id {
  12. __u8 reserved1;
  13. __u8 cssid;
  14. __u8 reserved2;
  15. __u8 id;
  16. } __attribute__((packed));
  17. #endif /* _UAPI_ASM_S390_CHPID_H */