Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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