chpid.h 393 B

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