block: move the *_PARTITION enum out of genhd.h
authorChristoph Hellwig <hch@lst.de>
Tue, 24 Mar 2020 07:25:27 +0000 (08:25 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 24 Mar 2020 13:57:08 +0000 (07:57 -0600)
The enum containing the *_PARTITION symbolic names is only relevant
for the partition parser.  More specifically most values are MSDOS
partition table system indicators and thus should go straight into
msdos.c.  One value is only used by the sun partition parser, and the
sun and sgi partition parsers use the same value as the x86 Linux
RAID indicator to also indicate RAID autodetection.  Duplicate them
in sun.c and sgi.c given that the different partition types use
entirely different values otherwise.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
block/partitions/sgi.c
block/partitions/sun.c
include/linux/genhd.h
include/linux/msdos_partition.h

index 927cf501603e79e6c474eb9a95d8c50bb1e34d46..4273f1bb0515164da2aeb77154bd3775eaf1402a 100644 (file)
@@ -9,6 +9,10 @@
 
 #define SGI_LABEL_MAGIC 0x0be5a941
 
+enum {
+       LINUX_RAID_PARTITION = 0xfd,    /* autodetect RAID partition */
+};
+
 struct sgi_disklabel {
        __be32 magic_mushroom;          /* Big fat spliff... */
        __be16 root_part_num;           /* Root partition number */
index 28b44100f2b1ce2ab226e16eb4edaa520f14cedc..47dc53eccf7783dd1dbac00f5e0353d0a1b82a13 100644 (file)
 #define SUN_LABEL_MAGIC          0xDABE
 #define SUN_VTOC_SANITY          0x600DDEEE
 
+enum {
+       SUN_WHOLE_DISK = 5,
+       LINUX_RAID_PARTITION = 0xfd,    /* autodetect RAID partition */
+};
+
 int sun_partition(struct parsed_partitions *state)
 {
        int i;
index 3d84da9ec0fa7a3220e08151f83cd4658f30f75c..3050b0ee9cc75c72b4c368321afe5400b52d02e2 100644 (file)
@@ -30,36 +30,6 @@ extern struct device_type part_type;
 extern struct kobject *block_depr;
 extern struct class block_class;
 
-enum {
-/* These three have identical behaviour; use the second one if DOS FDISK gets
-   confused about extended/logical partitions starting past cylinder 1023. */
-       DOS_EXTENDED_PARTITION = 5,
-       LINUX_EXTENDED_PARTITION = 0x85,
-       WIN98_EXTENDED_PARTITION = 0x0f,
-
-       SUN_WHOLE_DISK = DOS_EXTENDED_PARTITION,
-
-       LINUX_SWAP_PARTITION = 0x82,
-       LINUX_DATA_PARTITION = 0x83,
-       LINUX_LVM_PARTITION = 0x8e,
-       LINUX_RAID_PARTITION = 0xfd,    /* autodetect RAID partition */
-
-       SOLARIS_X86_PARTITION = LINUX_SWAP_PARTITION,
-       NEW_SOLARIS_X86_PARTITION = 0xbf,
-
-       DM6_AUX1PARTITION = 0x51,       /* no DDO:  use xlated geom */
-       DM6_AUX3PARTITION = 0x53,       /* no DDO:  use xlated geom */
-       DM6_PARTITION = 0x54,           /* has DDO: use xlated geom & offset */
-       EZD_PARTITION = 0x55,           /* EZ-DRIVE */
-
-       FREEBSD_PARTITION = 0xa5,       /* FreeBSD Partition ID */
-       OPENBSD_PARTITION = 0xa6,       /* OpenBSD Partition ID */
-       NETBSD_PARTITION = 0xa9,        /* NetBSD Partition ID */
-       BSDI_PARTITION = 0xb7,          /* BSDI Partition ID */
-       MINIX_PARTITION = 0x81,         /* Minix Partition ID */
-       UNIXWARE_PARTITION = 0x63,      /* Same as GNU_HURD and SCO Unix */
-};
-
 #define DISK_MAX_PARTS                 256
 #define DISK_NAME_LEN                  32
 
index a8e2c1b4bc66235e64eaee258be365e574ff4abe..e151af072cd15dbea57403f345154bb05f37e405 100644 (file)
@@ -17,4 +17,35 @@ struct msdos_partition {
        __le32 nr_sects;        /* nr of sectors in partition */
 } __packed;
 
+enum msdos_sys_ind {
+       /*
+        * These three have identical behaviour; use the second one if DOS FDISK
+        * gets confused about extended/logical partitions starting past
+        * cylinder 1023.
+        */
+       DOS_EXTENDED_PARTITION = 5,
+       LINUX_EXTENDED_PARTITION = 0x85,
+       WIN98_EXTENDED_PARTITION = 0x0f,
+
+       LINUX_SWAP_PARTITION = 0x82,
+       LINUX_DATA_PARTITION = 0x83,
+       LINUX_LVM_PARTITION = 0x8e,
+       LINUX_RAID_PARTITION = 0xfd,    /* autodetect RAID partition */
+
+       SOLARIS_X86_PARTITION = LINUX_SWAP_PARTITION,
+       NEW_SOLARIS_X86_PARTITION = 0xbf,
+
+       DM6_AUX1PARTITION = 0x51,       /* no DDO:  use xlated geom */
+       DM6_AUX3PARTITION = 0x53,       /* no DDO:  use xlated geom */
+       DM6_PARTITION = 0x54,           /* has DDO: use xlated geom & offset */
+       EZD_PARTITION = 0x55,           /* EZ-DRIVE */
+
+       FREEBSD_PARTITION = 0xa5,       /* FreeBSD Partition ID */
+       OPENBSD_PARTITION = 0xa6,       /* OpenBSD Partition ID */
+       NETBSD_PARTITION = 0xa9,        /* NetBSD Partition ID */
+       BSDI_PARTITION = 0xb7,          /* BSDI Partition ID */
+       MINIX_PARTITION = 0x81,         /* Minix Partition ID */
+       UNIXWARE_PARTITION = 0x63,      /* Same as GNU_HURD and SCO Unix */
+};
+
 #endif /* LINUX_MSDOS_PARTITION_H */