schid.h 380 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. #ifndef _UAPIASM_SCHID_H
  3. #define _UAPIASM_SCHID_H
  4. #include <linux/types.h>
  5. #ifndef __ASSEMBLY__
  6. struct subchannel_id {
  7. __u32 cssid : 8;
  8. __u32 : 4;
  9. __u32 m : 1;
  10. __u32 ssid : 2;
  11. __u32 one : 1;
  12. __u32 sch_no : 16;
  13. } __attribute__ ((packed, aligned(4)));
  14. #endif /* __ASSEMBLY__ */
  15. #endif /* _UAPIASM_SCHID_H */