Skip to content

Commit 1d68e9a

Browse files
committed
Sort linux's *_SUPER_MAGIC definitions
1 parent cd6001c commit 1d68e9a

File tree

1 file changed

+5
-5
lines changed
  • src/unix/linux_like/linux/gnu

1 file changed

+5
-5
lines changed

src/unix/linux_like/linux/gnu/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -664,6 +664,8 @@ pub const NI_MAXHOST: ::socklen_t = 1025;
664664

665665
pub const ADFS_SUPER_MAGIC: ::c_long = 0x0000adf5;
666666
pub const AFFS_SUPER_MAGIC: ::c_long = 0x0000adff;
667+
pub const CGROUP2_SUPER_MAGIC: ::c_long = 0x63677270;
668+
pub const CGROUP_SUPER_MAGIC: ::c_long = 0x27e0eb;
667669
pub const CODA_SUPER_MAGIC: ::c_long = 0x73757245;
668670
pub const CRAMFS_MAGIC: ::c_long = 0x28cd3d45;
669671
pub const EFS_SUPER_MAGIC: ::c_long = 0x00414a53;
@@ -674,10 +676,10 @@ pub const HPFS_SUPER_MAGIC: ::c_long = 0xf995e849;
674676
pub const HUGETLBFS_MAGIC: ::c_long = 0x958458f6;
675677
pub const ISOFS_SUPER_MAGIC: ::c_long = 0x00009660;
676678
pub const JFFS2_SUPER_MAGIC: ::c_long = 0x000072b6;
677-
pub const MINIX_SUPER_MAGIC: ::c_long = 0x0000137f;
678-
pub const MINIX_SUPER_MAGIC2: ::c_long = 0x0000138f;
679-
pub const MINIX2_SUPER_MAGIC: ::c_long = 0x00002468;
680679
pub const MINIX2_SUPER_MAGIC2: ::c_long = 0x00002478;
680+
pub const MINIX2_SUPER_MAGIC: ::c_long = 0x00002468;
681+
pub const MINIX_SUPER_MAGIC2: ::c_long = 0x0000138f;
682+
pub const MINIX_SUPER_MAGIC: ::c_long = 0x0000137f;
681683
pub const MSDOS_SUPER_MAGIC: ::c_long = 0x00004d44;
682684
pub const NCP_SUPER_MAGIC: ::c_long = 0x0000564c;
683685
pub const NFS_SUPER_MAGIC: ::c_long = 0x00006969;
@@ -688,8 +690,6 @@ pub const REISERFS_SUPER_MAGIC: ::c_long = 0x52654973;
688690
pub const SMB_SUPER_MAGIC: ::c_long = 0x0000517b;
689691
pub const TMPFS_MAGIC: ::c_long = 0x01021994;
690692
pub const USBDEVICE_SUPER_MAGIC: ::c_long = 0x00009fa2;
691-
pub const CGROUP_SUPER_MAGIC: ::c_long = 0x27e0eb;
692-
pub const CGROUP2_SUPER_MAGIC: ::c_long = 0x63677270;
693693

694694
pub const CPU_SETSIZE: ::c_int = 0x400;
695695

0 commit comments

Comments
 (0)