| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_GENHD_H | 
 | 2 | #define _LINUX_GENHD_H | 
 | 3 |  | 
 | 4 | /* | 
 | 5 |  * 	genhd.h Copyright (C) 1992 Drew Eckhardt | 
 | 6 |  *	Generic hard disk header file by   | 
 | 7 |  * 		Drew Eckhardt | 
 | 8 |  * | 
 | 9 |  *		<drew@colorado.edu> | 
 | 10 |  */ | 
 | 11 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/types.h> | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 13 | #include <linux/kdev_t.h> | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 14 | #include <linux/rcupdate.h> | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 15 | #include <linux/slab.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 |  | 
| David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 17 | #ifdef CONFIG_BLOCK | 
 | 18 |  | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 19 | #define kobj_to_dev(k)		container_of((k), struct device, kobj) | 
| Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 20 | #define dev_to_disk(device)	container_of((device), struct gendisk, part0.__dev) | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 21 | #define dev_to_part(device)	container_of((device), struct hd_struct, __dev) | 
| Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 22 | #define disk_to_dev(disk)	(&(disk)->part0.__dev) | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 23 | #define part_to_dev(part)	(&((part)->__dev)) | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 24 |  | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 25 | extern struct device_type part_type; | 
 | 26 | extern struct kobject *block_depr; | 
 | 27 | extern struct class block_class; | 
 | 28 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | enum { | 
 | 30 | /* These three have identical behaviour; use the second one if DOS FDISK gets | 
 | 31 |    confused about extended/logical partitions starting past cylinder 1023. */ | 
 | 32 | 	DOS_EXTENDED_PARTITION = 5, | 
 | 33 | 	LINUX_EXTENDED_PARTITION = 0x85, | 
 | 34 | 	WIN98_EXTENDED_PARTITION = 0x0f, | 
 | 35 |  | 
| Fabio Massimo Di Nitto | d18d768 | 2007-02-10 23:50:00 -0800 | [diff] [blame] | 36 | 	SUN_WHOLE_DISK = DOS_EXTENDED_PARTITION, | 
 | 37 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | 	LINUX_SWAP_PARTITION = 0x82, | 
| Olaf Hering | 4419d1a | 2007-02-10 01:45:47 -0800 | [diff] [blame] | 39 | 	LINUX_DATA_PARTITION = 0x83, | 
 | 40 | 	LINUX_LVM_PARTITION = 0x8e, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | 	LINUX_RAID_PARTITION = 0xfd,	/* autodetect RAID partition */ | 
 | 42 |  | 
 | 43 | 	SOLARIS_X86_PARTITION =	LINUX_SWAP_PARTITION, | 
 | 44 | 	NEW_SOLARIS_X86_PARTITION = 0xbf, | 
 | 45 |  | 
 | 46 | 	DM6_AUX1PARTITION = 0x51,	/* no DDO:  use xlated geom */ | 
 | 47 | 	DM6_AUX3PARTITION = 0x53,	/* no DDO:  use xlated geom */ | 
 | 48 | 	DM6_PARTITION =	0x54,		/* has DDO: use xlated geom & offset */ | 
 | 49 | 	EZD_PARTITION =	0x55,		/* EZ-DRIVE */ | 
 | 50 |  | 
 | 51 | 	FREEBSD_PARTITION = 0xa5,	/* FreeBSD Partition ID */ | 
 | 52 | 	OPENBSD_PARTITION = 0xa6,	/* OpenBSD Partition ID */ | 
 | 53 | 	NETBSD_PARTITION = 0xa9,	/* NetBSD Partition ID */ | 
 | 54 | 	BSDI_PARTITION = 0xb7,		/* BSDI Partition ID */ | 
 | 55 | 	MINIX_PARTITION = 0x81,		/* Minix Partition ID */ | 
 | 56 | 	UNIXWARE_PARTITION = 0x63,	/* Same as GNU_HURD and SCO Unix */ | 
 | 57 | }; | 
 | 58 |  | 
| Tejun Heo | 689d6fa | 2008-08-25 19:56:16 +0900 | [diff] [blame] | 59 | #define DISK_MAX_PARTS			256 | 
| Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 60 | #define DISK_NAME_LEN			32 | 
| Tejun Heo | 689d6fa | 2008-08-25 19:56:16 +0900 | [diff] [blame] | 61 |  | 
| David Woodhouse | 34186ef | 2006-04-25 14:07:57 +0100 | [diff] [blame] | 62 | #include <linux/major.h> | 
 | 63 | #include <linux/device.h> | 
 | 64 | #include <linux/smp.h> | 
 | 65 | #include <linux/string.h> | 
 | 66 | #include <linux/fs.h> | 
| Kristen Carlson Accardi | 8ce7ad7 | 2007-05-23 13:57:38 -0700 | [diff] [blame] | 67 | #include <linux/workqueue.h> | 
| David Woodhouse | 34186ef | 2006-04-25 14:07:57 +0100 | [diff] [blame] | 68 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | struct partition { | 
 | 70 | 	unsigned char boot_ind;		/* 0x80 - active */ | 
 | 71 | 	unsigned char head;		/* starting head */ | 
 | 72 | 	unsigned char sector;		/* starting sector */ | 
 | 73 | 	unsigned char cyl;		/* starting cylinder */ | 
 | 74 | 	unsigned char sys_ind;		/* What partition type */ | 
 | 75 | 	unsigned char end_head;		/* end head */ | 
 | 76 | 	unsigned char end_sector;	/* end sector */ | 
 | 77 | 	unsigned char end_cyl;		/* end cylinder */ | 
 | 78 | 	__le32 start_sect;	/* starting sector counting from 0 */ | 
 | 79 | 	__le32 nr_sects;		/* nr of sectors in partition */ | 
 | 80 | } __attribute__((packed)); | 
 | 81 |  | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 82 | struct disk_stats { | 
 | 83 | 	unsigned long sectors[2];	/* READs and WRITEs */ | 
 | 84 | 	unsigned long ios[2]; | 
 | 85 | 	unsigned long merges[2]; | 
 | 86 | 	unsigned long ticks[2]; | 
 | 87 | 	unsigned long io_ticks; | 
 | 88 | 	unsigned long time_in_queue; | 
 | 89 | }; | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 90 |  | 
 | 91 | #define PARTITION_META_INFO_VOLNAMELTH	64 | 
 | 92 | #define PARTITION_META_INFO_UUIDLTH	16 | 
 | 93 |  | 
 | 94 | struct partition_meta_info { | 
 | 95 | 	u8 uuid[PARTITION_META_INFO_UUIDLTH];	/* always big endian */ | 
 | 96 | 	u8 volname[PARTITION_META_INFO_VOLNAMELTH]; | 
 | 97 | }; | 
 | 98 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | struct hd_struct { | 
 | 100 | 	sector_t start_sect; | 
 | 101 | 	sector_t nr_sects; | 
| Martin K. Petersen | c72758f | 2009-05-22 17:17:53 -0400 | [diff] [blame] | 102 | 	sector_t alignment_offset; | 
| Martin K. Petersen | 86b3728 | 2009-11-10 11:50:21 +0100 | [diff] [blame] | 103 | 	unsigned int discard_alignment; | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 104 | 	struct device __dev; | 
| Jun'ichi Nomura | 6a4d44c | 2006-03-27 01:17:55 -0800 | [diff] [blame] | 105 | 	struct kobject *holder_dir; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | 	int policy, partno; | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 107 | 	struct partition_meta_info *info; | 
| Akinobu Mita | c17bb49 | 2006-12-08 02:39:46 -0800 | [diff] [blame] | 108 | #ifdef CONFIG_FAIL_MAKE_REQUEST | 
 | 109 | 	int make_it_fail; | 
 | 110 | #endif | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 111 | 	unsigned long stamp; | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 112 | 	int in_flight[2]; | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 113 | #ifdef	CONFIG_SMP | 
| Tejun Heo | 43cf38e | 2010-02-02 14:38:57 +0900 | [diff] [blame] | 114 | 	struct disk_stats __percpu *dkstats; | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 115 | #else | 
 | 116 | 	struct disk_stats dkstats; | 
 | 117 | #endif | 
| Jens Axboe | 6c23a96 | 2011-01-07 08:43:37 +0100 | [diff] [blame] | 118 | 	atomic_t ref; | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 119 | 	struct rcu_head rcu_head; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | }; | 
 | 121 |  | 
 | 122 | #define GENHD_FL_REMOVABLE			1 | 
| NeilBrown | 97fedbb | 2010-03-16 08:55:32 +0100 | [diff] [blame] | 123 | /* 2 is unused */ | 
| Kristen Carlson Accardi | 86ce18d | 2007-05-23 13:57:38 -0700 | [diff] [blame] | 124 | #define GENHD_FL_MEDIA_CHANGE_NOTIFY		4 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | #define GENHD_FL_CD				8 | 
 | 126 | #define GENHD_FL_UP				16 | 
 | 127 | #define GENHD_FL_SUPPRESS_PARTITION_INFO	32 | 
| Tejun Heo | 689d6fa | 2008-08-25 19:56:16 +0900 | [diff] [blame] | 128 | #define GENHD_FL_EXT_DEVT			64 /* allow extended devt */ | 
| Bartlomiej Zolnierkiewicz | db429e9 | 2009-06-07 13:52:52 +0200 | [diff] [blame] | 129 | #define GENHD_FL_NATIVE_CAPACITY		128 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 |  | 
| Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 131 | enum { | 
 | 132 | 	DISK_EVENT_MEDIA_CHANGE			= 1 << 0, /* media changed */ | 
 | 133 | 	DISK_EVENT_EJECT_REQUEST		= 1 << 1, /* eject requested */ | 
 | 134 | }; | 
 | 135 |  | 
| Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 136 | #define BLK_SCSI_MAX_CMDS	(256) | 
 | 137 | #define BLK_SCSI_CMD_PER_LONG	(BLK_SCSI_MAX_CMDS / (sizeof(long) * 8)) | 
 | 138 |  | 
 | 139 | struct blk_scsi_cmd_filter { | 
 | 140 | 	unsigned long read_ok[BLK_SCSI_CMD_PER_LONG]; | 
 | 141 | 	unsigned long write_ok[BLK_SCSI_CMD_PER_LONG]; | 
 | 142 | 	struct kobject kobj; | 
 | 143 | }; | 
 | 144 |  | 
 | 145 | struct disk_part_tbl { | 
 | 146 | 	struct rcu_head rcu_head; | 
 | 147 | 	int len; | 
| Arnd Bergmann | 4d2deb4 | 2010-02-24 20:01:56 +0100 | [diff] [blame] | 148 | 	struct hd_struct __rcu *last_lookup; | 
 | 149 | 	struct hd_struct __rcu *part[]; | 
| Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 150 | }; | 
 | 151 |  | 
| Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 152 | struct disk_events; | 
 | 153 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | struct gendisk { | 
| Tejun Heo | 689d6fa | 2008-08-25 19:56:16 +0900 | [diff] [blame] | 155 | 	/* major, first_minor and minors are input parameters only, | 
 | 156 | 	 * don't use directly.  Use disk_devt() and disk_max_parts(). | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 157 | 	 */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 158 | 	int major;			/* major number of driver */ | 
 | 159 | 	int first_minor; | 
 | 160 | 	int minors;                     /* maximum number of minors, =1 for | 
 | 161 |                                          * disks that can't be partitioned. */ | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 162 |  | 
| Tejun Heo | 3e1a7ff | 2008-08-25 19:56:17 +0900 | [diff] [blame] | 163 | 	char disk_name[DISK_NAME_LEN];	/* name of major driver */ | 
| Kay Sievers | e454cea | 2009-09-18 23:01:12 +0200 | [diff] [blame] | 164 | 	char *(*devnode)(struct gendisk *gd, mode_t *mode); | 
| Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 165 |  | 
 | 166 | 	unsigned int events;		/* supported events */ | 
 | 167 | 	unsigned int async_events;	/* async events, subset of all */ | 
 | 168 |  | 
| Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 169 | 	/* Array of pointers to partitions indexed by partno. | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 170 | 	 * Protected with matching bdev lock but stat and other | 
 | 171 | 	 * non-critical accesses use RCU.  Always access through | 
 | 172 | 	 * helpers. | 
 | 173 | 	 */ | 
| Arnd Bergmann | 4d2deb4 | 2010-02-24 20:01:56 +0100 | [diff] [blame] | 174 | 	struct disk_part_tbl __rcu *part_tbl; | 
| Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 175 | 	struct hd_struct part0; | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 176 |  | 
| Alexey Dobriyan | 83d5cde | 2009-09-21 17:01:13 -0700 | [diff] [blame] | 177 | 	const struct block_device_operations *fops; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | 	struct request_queue *queue; | 
 | 179 | 	void *private_data; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 |  | 
 | 181 | 	int flags; | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 182 | 	struct device *driverfs_dev;  // FIXME: remove | 
| Jun'ichi Nomura | 6a4d44c | 2006-03-27 01:17:55 -0800 | [diff] [blame] | 183 | 	struct kobject *slave_dir; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 184 |  | 
 | 185 | 	struct timer_rand_state *random; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | 	atomic_t sync_io;		/* RAID */ | 
| Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 187 | 	struct disk_events *ev; | 
| Martin K. Petersen | 7ba1ba1 | 2008-06-30 20:04:41 +0200 | [diff] [blame] | 188 | #ifdef  CONFIG_BLK_DEV_INTEGRITY | 
 | 189 | 	struct blk_integrity *integrity; | 
 | 190 | #endif | 
| Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 191 | 	int node_id; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | }; | 
 | 193 |  | 
| Tejun Heo | 310a2c1 | 2008-08-25 19:47:17 +0900 | [diff] [blame] | 194 | static inline struct gendisk *part_to_disk(struct hd_struct *part) | 
 | 195 | { | 
| Tejun Heo | 548b10e | 2008-08-29 09:01:47 +0200 | [diff] [blame] | 196 | 	if (likely(part)) { | 
 | 197 | 		if (part->partno) | 
 | 198 | 			return dev_to_disk(part_to_dev(part)->parent); | 
 | 199 | 		else | 
 | 200 | 			return dev_to_disk(part_to_dev(part)); | 
 | 201 | 	} | 
| Tejun Heo | 310a2c1 | 2008-08-25 19:47:17 +0900 | [diff] [blame] | 202 | 	return NULL; | 
 | 203 | } | 
 | 204 |  | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 205 | static inline void part_pack_uuid(const u8 *uuid_str, u8 *to) | 
 | 206 | { | 
 | 207 | 	int i; | 
 | 208 | 	for (i = 0; i < 16; ++i) { | 
 | 209 | 		*to++ = (hex_to_bin(*uuid_str) << 4) | | 
 | 210 | 			(hex_to_bin(*(uuid_str + 1))); | 
 | 211 | 		uuid_str += 2; | 
 | 212 | 		switch (i) { | 
 | 213 | 		case 3: | 
 | 214 | 		case 5: | 
 | 215 | 		case 7: | 
 | 216 | 		case 9: | 
 | 217 | 			uuid_str++; | 
 | 218 | 			continue; | 
 | 219 | 		} | 
 | 220 | 	} | 
 | 221 | } | 
 | 222 |  | 
 | 223 | static inline char *part_unpack_uuid(const u8 *uuid, char *out) | 
 | 224 | { | 
 | 225 | 	sprintf(out, "%pU", uuid); | 
 | 226 | 	return out; | 
 | 227 | } | 
 | 228 |  | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 229 | static inline int disk_max_parts(struct gendisk *disk) | 
 | 230 | { | 
| Tejun Heo | 689d6fa | 2008-08-25 19:56:16 +0900 | [diff] [blame] | 231 | 	if (disk->flags & GENHD_FL_EXT_DEVT) | 
 | 232 | 		return DISK_MAX_PARTS; | 
 | 233 | 	return disk->minors; | 
| Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 234 | } | 
 | 235 |  | 
 | 236 | static inline bool disk_partitionable(struct gendisk *disk) | 
 | 237 | { | 
 | 238 | 	return disk_max_parts(disk) > 1; | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 239 | } | 
 | 240 |  | 
 | 241 | static inline dev_t disk_devt(struct gendisk *disk) | 
 | 242 | { | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 243 | 	return disk_to_dev(disk)->devt; | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 244 | } | 
 | 245 |  | 
 | 246 | static inline dev_t part_devt(struct hd_struct *part) | 
 | 247 | { | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 248 | 	return part_to_dev(part)->devt; | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 249 | } | 
 | 250 |  | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 251 | extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno); | 
 | 252 |  | 
 | 253 | static inline void disk_put_part(struct hd_struct *part) | 
 | 254 | { | 
 | 255 | 	if (likely(part)) | 
| Tejun Heo | ed9e198 | 2008-08-25 19:56:05 +0900 | [diff] [blame] | 256 | 		put_device(part_to_dev(part)); | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 257 | } | 
 | 258 |  | 
 | 259 | /* | 
 | 260 |  * Smarter partition iterator without context limits. | 
 | 261 |  */ | 
 | 262 | #define DISK_PITER_REVERSE	(1 << 0) /* iterate in the reverse direction */ | 
 | 263 | #define DISK_PITER_INCL_EMPTY	(1 << 1) /* include 0-sized parts */ | 
| Tejun Heo | b5d0b9d | 2008-09-03 09:06:42 +0200 | [diff] [blame] | 264 | #define DISK_PITER_INCL_PART0	(1 << 2) /* include partition 0 */ | 
| Tejun Heo | 71982a4 | 2009-04-17 08:34:48 +0200 | [diff] [blame] | 265 | #define DISK_PITER_INCL_EMPTY_PART0 (1 << 3) /* include empty partition 0 */ | 
| Tejun Heo | e71bf0d | 2008-09-03 09:03:02 +0200 | [diff] [blame] | 266 |  | 
 | 267 | struct disk_part_iter { | 
 | 268 | 	struct gendisk		*disk; | 
 | 269 | 	struct hd_struct	*part; | 
 | 270 | 	int			idx; | 
 | 271 | 	unsigned int		flags; | 
 | 272 | }; | 
 | 273 |  | 
 | 274 | extern void disk_part_iter_init(struct disk_part_iter *piter, | 
 | 275 | 				 struct gendisk *disk, unsigned int flags); | 
 | 276 | extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter); | 
 | 277 | extern void disk_part_iter_exit(struct disk_part_iter *piter); | 
 | 278 |  | 
 | 279 | extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, | 
 | 280 | 					     sector_t sector); | 
 | 281 |  | 
| Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 282 | /* | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 |  * Macros to operate on percpu disk statistics: | 
 | 284 |  * | 
| Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 285 |  * {disk|part|all}_stat_{add|sub|inc|dec}() modify the stat counters | 
 | 286 |  * and should be called between disk_stat_lock() and | 
 | 287 |  * disk_stat_unlock(). | 
 | 288 |  * | 
 | 289 |  * part_stat_read() can be called at any time. | 
 | 290 |  * | 
 | 291 |  * part_stat_{add|set_all}() and {init|free}_part_stats are for | 
 | 292 |  * internal use only. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 |  */ | 
 | 294 | #ifdef	CONFIG_SMP | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 295 | #define part_stat_lock()	({ rcu_read_lock(); get_cpu(); }) | 
 | 296 | #define part_stat_unlock()	do { put_cpu(); rcu_read_unlock(); } while (0) | 
| Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 297 |  | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 298 | #define __part_stat_add(cpu, part, field, addnd)			\ | 
 | 299 | 	(per_cpu_ptr((part)->dkstats, (cpu))->field += (addnd)) | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 300 |  | 
 | 301 | #define part_stat_read(part, field)					\ | 
 | 302 | ({									\ | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 303 | 	typeof((part)->dkstats->field) res = 0;				\ | 
| Stephen Hemminger | 7af92f8 | 2010-01-06 15:45:55 -0800 | [diff] [blame] | 304 | 	unsigned int _cpu;						\ | 
 | 305 | 	for_each_possible_cpu(_cpu)					\ | 
 | 306 | 		res += per_cpu_ptr((part)->dkstats, _cpu)->field;	\ | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 307 | 	res;								\ | 
 | 308 | }) | 
 | 309 |  | 
| Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 310 | static inline void part_stat_set_all(struct hd_struct *part, int value) | 
 | 311 | { | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 312 | 	int i; | 
| Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 313 |  | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 314 | 	for_each_possible_cpu(i) | 
 | 315 | 		memset(per_cpu_ptr(part->dkstats, i), value, | 
| Jens Axboe | 28f1370 | 2008-05-07 10:15:46 +0200 | [diff] [blame] | 316 | 				sizeof(struct disk_stats)); | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 317 | } | 
| Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 318 |  | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 319 | static inline int init_part_stats(struct hd_struct *part) | 
 | 320 | { | 
 | 321 | 	part->dkstats = alloc_percpu(struct disk_stats); | 
 | 322 | 	if (!part->dkstats) | 
 | 323 | 		return 0; | 
 | 324 | 	return 1; | 
 | 325 | } | 
 | 326 |  | 
 | 327 | static inline void free_part_stats(struct hd_struct *part) | 
 | 328 | { | 
 | 329 | 	free_percpu(part->dkstats); | 
 | 330 | } | 
 | 331 |  | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 332 | #else /* !CONFIG_SMP */ | 
 | 333 | #define part_stat_lock()	({ rcu_read_lock(); 0; }) | 
 | 334 | #define part_stat_unlock()	rcu_read_unlock() | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 |  | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 336 | #define __part_stat_add(cpu, part, field, addnd)				\ | 
 | 337 | 	((part)->dkstats.field += addnd) | 
 | 338 |  | 
 | 339 | #define part_stat_read(part, field)	((part)->dkstats.field) | 
 | 340 |  | 
 | 341 | static inline void part_stat_set_all(struct hd_struct *part, int value) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | { | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 343 | 	memset(&part->dkstats, value, sizeof(struct disk_stats)); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | } | 
| Jerome Marchand | ea5c48a | 2008-02-08 11:04:09 +0100 | [diff] [blame] | 345 |  | 
 | 346 | static inline int init_part_stats(struct hd_struct *part) | 
 | 347 | { | 
 | 348 | 	return 1; | 
 | 349 | } | 
 | 350 |  | 
 | 351 | static inline void free_part_stats(struct hd_struct *part) | 
 | 352 | { | 
 | 353 | } | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 354 |  | 
 | 355 | #endif /* CONFIG_SMP */ | 
 | 356 |  | 
 | 357 | #define part_stat_add(cpu, part, field, addnd)	do {			\ | 
 | 358 | 	__part_stat_add((cpu), (part), field, addnd);			\ | 
 | 359 | 	if ((part)->partno)						\ | 
 | 360 | 		__part_stat_add((cpu), &part_to_disk((part))->part0,	\ | 
 | 361 | 				field, addnd);				\ | 
 | 362 | } while (0) | 
 | 363 |  | 
 | 364 | #define part_stat_dec(cpu, gendiskp, field)				\ | 
 | 365 | 	part_stat_add(cpu, gendiskp, field, -1) | 
 | 366 | #define part_stat_inc(cpu, gendiskp, field)				\ | 
 | 367 | 	part_stat_add(cpu, gendiskp, field, 1) | 
 | 368 | #define part_stat_sub(cpu, gendiskp, field, subnd)			\ | 
 | 369 | 	part_stat_add(cpu, gendiskp, field, -subnd) | 
 | 370 |  | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 371 | static inline void part_inc_in_flight(struct hd_struct *part, int rw) | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 372 | { | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 373 | 	part->in_flight[rw]++; | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 374 | 	if (part->partno) | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 375 | 		part_to_disk(part)->part0.in_flight[rw]++; | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 376 | } | 
 | 377 |  | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 378 | static inline void part_dec_in_flight(struct hd_struct *part, int rw) | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 379 | { | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 380 | 	part->in_flight[rw]--; | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 381 | 	if (part->partno) | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 382 | 		part_to_disk(part)->part0.in_flight[rw]--; | 
 | 383 | } | 
 | 384 |  | 
 | 385 | static inline int part_in_flight(struct hd_struct *part) | 
 | 386 | { | 
 | 387 | 	return part->in_flight[0] + part->in_flight[1]; | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 388 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 |  | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 390 | static inline struct partition_meta_info *alloc_part_info(struct gendisk *disk) | 
 | 391 | { | 
 | 392 | 	if (disk) | 
 | 393 | 		return kzalloc_node(sizeof(struct partition_meta_info), | 
 | 394 | 				    GFP_KERNEL, disk->node_id); | 
 | 395 | 	return kzalloc(sizeof(struct partition_meta_info), GFP_KERNEL); | 
 | 396 | } | 
 | 397 |  | 
 | 398 | static inline void free_part_info(struct hd_struct *part) | 
 | 399 | { | 
 | 400 | 	kfree(part->info); | 
 | 401 | } | 
 | 402 |  | 
| Petros Koutoupis | d399228 | 2009-03-11 10:49:35 +0100 | [diff] [blame] | 403 | /* block/blk-core.c */ | 
| Tejun Heo | c995905 | 2008-08-25 19:47:21 +0900 | [diff] [blame] | 404 | extern void part_round_stats(int cpu, struct hd_struct *part); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 |  | 
| Petros Koutoupis | 32ca163 | 2009-03-10 08:25:54 +0100 | [diff] [blame] | 406 | /* block/genhd.c */ | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 407 | extern void add_disk(struct gendisk *disk); | 
 | 408 | extern void del_gendisk(struct gendisk *gp); | 
| Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 409 | extern struct gendisk *get_gendisk(dev_t dev, int *partno); | 
| Tejun Heo | f331c02 | 2008-09-03 09:01:48 +0200 | [diff] [blame] | 410 | extern struct block_device *bdget_disk(struct gendisk *disk, int partno); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 411 |  | 
 | 412 | extern void set_device_ro(struct block_device *bdev, int flag); | 
 | 413 | extern void set_disk_ro(struct gendisk *disk, int flag); | 
 | 414 |  | 
| Tejun Heo | b7db995 | 2008-08-25 19:56:10 +0900 | [diff] [blame] | 415 | static inline int get_disk_ro(struct gendisk *disk) | 
 | 416 | { | 
 | 417 | 	return disk->part0.policy; | 
 | 418 | } | 
 | 419 |  | 
| Tejun Heo | 77ea887 | 2010-12-08 20:57:37 +0100 | [diff] [blame] | 420 | extern void disk_block_events(struct gendisk *disk); | 
 | 421 | extern void disk_unblock_events(struct gendisk *disk); | 
 | 422 | extern void disk_check_events(struct gendisk *disk); | 
 | 423 | extern unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask); | 
 | 424 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | /* drivers/char/random.c */ | 
 | 426 | extern void add_disk_randomness(struct gendisk *disk); | 
 | 427 | extern void rand_initialize_disk(struct gendisk *disk); | 
 | 428 |  | 
 | 429 | static inline sector_t get_start_sect(struct block_device *bdev) | 
 | 430 | { | 
| Tejun Heo | 0762b8b | 2008-08-25 19:56:12 +0900 | [diff] [blame] | 431 | 	return bdev->bd_part->start_sect; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | } | 
 | 433 | static inline sector_t get_capacity(struct gendisk *disk) | 
 | 434 | { | 
| Tejun Heo | 80795ae | 2008-08-25 19:56:07 +0900 | [diff] [blame] | 435 | 	return disk->part0.nr_sects; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | } | 
 | 437 | static inline void set_capacity(struct gendisk *disk, sector_t size) | 
 | 438 | { | 
| Tejun Heo | 80795ae | 2008-08-25 19:56:07 +0900 | [diff] [blame] | 439 | 	disk->part0.nr_sects = size; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | } | 
 | 441 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | #ifdef CONFIG_SOLARIS_X86_PARTITION | 
 | 443 |  | 
| Mark Fortescue | b84d879 | 2007-07-25 18:30:08 -0700 | [diff] [blame] | 444 | #define SOLARIS_X86_NUMSLICE	16 | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | #define SOLARIS_X86_VTOC_SANE	(0x600DDEEEUL) | 
 | 446 |  | 
 | 447 | struct solaris_x86_slice { | 
 | 448 | 	__le16 s_tag;		/* ID tag of partition */ | 
 | 449 | 	__le16 s_flag;		/* permission flags */ | 
 | 450 | 	__le32 s_start;		/* start sector no of partition */ | 
 | 451 | 	__le32 s_size;		/* # of blocks in partition */ | 
 | 452 | }; | 
 | 453 |  | 
 | 454 | struct solaris_x86_vtoc { | 
 | 455 | 	unsigned int v_bootinfo[3];	/* info needed by mboot (unsupported) */ | 
 | 456 | 	__le32 v_sanity;		/* to verify vtoc sanity */ | 
 | 457 | 	__le32 v_version;		/* layout version */ | 
 | 458 | 	char	v_volume[8];		/* volume name */ | 
 | 459 | 	__le16	v_sectorsz;		/* sector size in bytes */ | 
 | 460 | 	__le16	v_nparts;		/* number of partitions */ | 
 | 461 | 	unsigned int v_reserved[10];	/* free space */ | 
 | 462 | 	struct solaris_x86_slice | 
 | 463 | 		v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */ | 
 | 464 | 	unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */ | 
 | 465 | 	char	v_asciilabel[128];	/* for compatibility */ | 
 | 466 | }; | 
 | 467 |  | 
 | 468 | #endif /* CONFIG_SOLARIS_X86_PARTITION */ | 
 | 469 |  | 
 | 470 | #ifdef CONFIG_BSD_DISKLABEL | 
 | 471 | /* | 
 | 472 |  * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il> | 
 | 473 |  * updated by Marc Espie <Marc.Espie@openbsd.org> | 
 | 474 |  */ | 
 | 475 |  | 
 | 476 | /* check against BSD src/sys/sys/disklabel.h for consistency */ | 
 | 477 |  | 
 | 478 | #define BSD_DISKMAGIC	(0x82564557UL)	/* The disk magic number */ | 
 | 479 | #define BSD_MAXPARTITIONS	16 | 
 | 480 | #define OPENBSD_MAXPARTITIONS	16 | 
 | 481 | #define BSD_FS_UNUSED		0	/* disklabel unused partition entry ID */ | 
 | 482 | struct bsd_disklabel { | 
 | 483 | 	__le32	d_magic;		/* the magic number */ | 
 | 484 | 	__s16	d_type;			/* drive type */ | 
 | 485 | 	__s16	d_subtype;		/* controller/d_type specific */ | 
 | 486 | 	char	d_typename[16];		/* type name, e.g. "eagle" */ | 
 | 487 | 	char	d_packname[16];			/* pack identifier */  | 
 | 488 | 	__u32	d_secsize;		/* # of bytes per sector */ | 
 | 489 | 	__u32	d_nsectors;		/* # of data sectors per track */ | 
 | 490 | 	__u32	d_ntracks;		/* # of tracks per cylinder */ | 
 | 491 | 	__u32	d_ncylinders;		/* # of data cylinders per unit */ | 
 | 492 | 	__u32	d_secpercyl;		/* # of data sectors per cylinder */ | 
 | 493 | 	__u32	d_secperunit;		/* # of data sectors per unit */ | 
 | 494 | 	__u16	d_sparespertrack;	/* # of spare sectors per track */ | 
 | 495 | 	__u16	d_sparespercyl;		/* # of spare sectors per cylinder */ | 
 | 496 | 	__u32	d_acylinders;		/* # of alt. cylinders per unit */ | 
 | 497 | 	__u16	d_rpm;			/* rotational speed */ | 
 | 498 | 	__u16	d_interleave;		/* hardware sector interleave */ | 
 | 499 | 	__u16	d_trackskew;		/* sector 0 skew, per track */ | 
 | 500 | 	__u16	d_cylskew;		/* sector 0 skew, per cylinder */ | 
 | 501 | 	__u32	d_headswitch;		/* head switch time, usec */ | 
 | 502 | 	__u32	d_trkseek;		/* track-to-track seek, usec */ | 
 | 503 | 	__u32	d_flags;		/* generic flags */ | 
 | 504 | #define NDDATA 5 | 
 | 505 | 	__u32	d_drivedata[NDDATA];	/* drive-type specific information */ | 
 | 506 | #define NSPARE 5 | 
 | 507 | 	__u32	d_spare[NSPARE];	/* reserved for future use */ | 
 | 508 | 	__le32	d_magic2;		/* the magic number (again) */ | 
 | 509 | 	__le16	d_checksum;		/* xor of data incl. partitions */ | 
 | 510 |  | 
 | 511 | 			/* filesystem and partition information: */ | 
 | 512 | 	__le16	d_npartitions;		/* number of partitions in following */ | 
 | 513 | 	__le32	d_bbsize;		/* size of boot area at sn0, bytes */ | 
 | 514 | 	__le32	d_sbsize;		/* max size of fs superblock, bytes */ | 
 | 515 | 	struct	bsd_partition {		/* the partition table */ | 
 | 516 | 		__le32	p_size;		/* number of sectors in partition */ | 
 | 517 | 		__le32	p_offset;	/* starting sector */ | 
 | 518 | 		__le32	p_fsize;	/* filesystem basic fragment size */ | 
 | 519 | 		__u8	p_fstype;	/* filesystem type, see below */ | 
 | 520 | 		__u8	p_frag;		/* filesystem fragments per block */ | 
 | 521 | 		__le16	p_cpg;		/* filesystem cylinders per group */ | 
 | 522 | 	} d_partitions[BSD_MAXPARTITIONS];	/* actually may be more */ | 
 | 523 | }; | 
 | 524 |  | 
 | 525 | #endif	/* CONFIG_BSD_DISKLABEL */ | 
 | 526 |  | 
 | 527 | #ifdef CONFIG_UNIXWARE_DISKLABEL | 
 | 528 | /* | 
 | 529 |  * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl> | 
 | 530 |  * and Krzysztof G. Baranowski <kgb@knm.org.pl> | 
 | 531 |  */ | 
 | 532 |  | 
 | 533 | #define UNIXWARE_DISKMAGIC     (0xCA5E600DUL)	/* The disk magic number */ | 
 | 534 | #define UNIXWARE_DISKMAGIC2    (0x600DDEEEUL)	/* The slice table magic nr */ | 
 | 535 | #define UNIXWARE_NUMSLICE      16 | 
 | 536 | #define UNIXWARE_FS_UNUSED     0		/* Unused slice entry ID */ | 
 | 537 |  | 
 | 538 | struct unixware_slice { | 
 | 539 | 	__le16   s_label;	/* label */ | 
 | 540 | 	__le16   s_flags;	/* permission flags */ | 
 | 541 | 	__le32   start_sect;	/* starting sector */ | 
 | 542 | 	__le32   nr_sects;	/* number of sectors in slice */ | 
 | 543 | }; | 
 | 544 |  | 
 | 545 | struct unixware_disklabel { | 
 | 546 | 	__le32   d_type;               	/* drive type */ | 
 | 547 | 	__le32   d_magic;                /* the magic number */ | 
 | 548 | 	__le32   d_version;              /* version number */ | 
 | 549 | 	char    d_serial[12];           /* serial number of the device */ | 
 | 550 | 	__le32   d_ncylinders;           /* # of data cylinders per device */ | 
 | 551 | 	__le32   d_ntracks;              /* # of tracks per cylinder */ | 
 | 552 | 	__le32   d_nsectors;             /* # of data sectors per track */ | 
 | 553 | 	__le32   d_secsize;              /* # of bytes per sector */ | 
 | 554 | 	__le32   d_part_start;           /* # of first sector of this partition */ | 
 | 555 | 	__le32   d_unknown1[12];         /* ? */ | 
 | 556 |  	__le32	d_alt_tbl;              /* byte offset of alternate table */ | 
 | 557 |  	__le32	d_alt_len;              /* byte length of alternate table */ | 
 | 558 |  	__le32	d_phys_cyl;             /* # of physical cylinders per device */ | 
 | 559 |  	__le32	d_phys_trk;             /* # of physical tracks per cylinder */ | 
 | 560 |  	__le32	d_phys_sec;             /* # of physical sectors per track */ | 
 | 561 |  	__le32	d_phys_bytes;           /* # of physical bytes per sector */ | 
 | 562 |  	__le32	d_unknown2;             /* ? */ | 
 | 563 | 	__le32   d_unknown3;             /* ? */ | 
 | 564 | 	__le32	d_pad[8];               /* pad */ | 
 | 565 |  | 
 | 566 | 	struct unixware_vtoc { | 
 | 567 | 		__le32	v_magic;		/* the magic number */ | 
 | 568 | 		__le32	v_version;		/* version number */ | 
 | 569 | 		char	v_name[8];		/* volume name */ | 
 | 570 | 		__le16	v_nslices;		/* # of slices */ | 
 | 571 | 		__le16	v_unknown1;		/* ? */ | 
 | 572 | 		__le32	v_reserved[10];		/* reserved */ | 
 | 573 | 		struct unixware_slice | 
 | 574 | 			v_slice[UNIXWARE_NUMSLICE];	/* slice headers */ | 
 | 575 | 	} vtoc; | 
 | 576 |  | 
 | 577 | };  /* 408 */ | 
 | 578 |  | 
 | 579 | #endif /* CONFIG_UNIXWARE_DISKLABEL */ | 
 | 580 |  | 
 | 581 | #ifdef CONFIG_MINIX_SUBPARTITION | 
 | 582 | #   define MINIX_NR_SUBPARTITIONS  4 | 
 | 583 | #endif /* CONFIG_MINIX_SUBPARTITION */ | 
 | 584 |  | 
| Fabio Massimo Di Nitto | d18d768 | 2007-02-10 23:50:00 -0800 | [diff] [blame] | 585 | #define ADDPART_FLAG_NONE	0 | 
 | 586 | #define ADDPART_FLAG_RAID	1 | 
 | 587 | #define ADDPART_FLAG_WHOLEDISK	2 | 
 | 588 |  | 
| Tejun Heo | bcce3de | 2008-08-25 19:47:22 +0900 | [diff] [blame] | 589 | extern int blk_alloc_devt(struct hd_struct *part, dev_t *devt); | 
 | 590 | extern void blk_free_devt(dev_t devt); | 
| Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 591 | extern dev_t blk_lookup_devt(const char *name, int partno); | 
 | 592 | extern char *disk_name (struct gendisk *hd, int partno, char *buf); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 593 |  | 
| Tejun Heo | 540eed5 | 2008-08-25 19:56:15 +0900 | [diff] [blame] | 594 | extern int disk_expand_part_tbl(struct gendisk *disk, int target); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev); | 
| Tejun Heo | ba32929 | 2008-11-10 15:29:58 +0900 | [diff] [blame] | 596 | extern struct hd_struct * __must_check add_partition(struct gendisk *disk, | 
 | 597 | 						     int partno, sector_t start, | 
| Will Drewry | 6d1d805 | 2010-08-31 15:47:05 -0500 | [diff] [blame] | 598 | 						     sector_t len, int flags, | 
 | 599 | 						     struct partition_meta_info | 
 | 600 | 						       *info); | 
| Jens Axboe | 6c23a96 | 2011-01-07 08:43:37 +0100 | [diff] [blame] | 601 | extern void __delete_partition(struct hd_struct *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | extern void delete_partition(struct gendisk *, int); | 
| Dave Gilbert | dd2a345 | 2007-05-09 02:33:24 -0700 | [diff] [blame] | 603 | extern void printk_all_partitions(void); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 604 |  | 
| Christoph Lameter | 1946089 | 2005-06-23 00:08:19 -0700 | [diff] [blame] | 605 | extern struct gendisk *alloc_disk_node(int minors, int node_id); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 606 | extern struct gendisk *alloc_disk(int minors); | 
 | 607 | extern struct kobject *get_disk(struct gendisk *disk); | 
 | 608 | extern void put_disk(struct gendisk *disk); | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 609 | extern void blk_register_region(dev_t devt, unsigned long range, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 610 | 			struct module *module, | 
 | 611 | 			struct kobject *(*probe)(dev_t, int *, void *), | 
 | 612 | 			int (*lock)(dev_t, void *), | 
 | 613 | 			void *data); | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 614 | extern void blk_unregister_region(dev_t devt, unsigned long range); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 |  | 
| Tejun Heo | e561052 | 2008-08-25 19:56:09 +0900 | [diff] [blame] | 616 | extern ssize_t part_size_show(struct device *dev, | 
 | 617 | 			      struct device_attribute *attr, char *buf); | 
| Tejun Heo | 074a7ac | 2008-08-25 19:56:14 +0900 | [diff] [blame] | 618 | extern ssize_t part_stat_show(struct device *dev, | 
 | 619 | 			      struct device_attribute *attr, char *buf); | 
| Nikanth Karthikesan | 316d315 | 2009-10-06 20:16:55 +0200 | [diff] [blame] | 620 | extern ssize_t part_inflight_show(struct device *dev, | 
 | 621 | 			      struct device_attribute *attr, char *buf); | 
| Tejun Heo | eddb2e2 | 2008-08-25 19:56:13 +0900 | [diff] [blame] | 622 | #ifdef CONFIG_FAIL_MAKE_REQUEST | 
 | 623 | extern ssize_t part_fail_show(struct device *dev, | 
 | 624 | 			      struct device_attribute *attr, char *buf); | 
 | 625 | extern ssize_t part_fail_store(struct device *dev, | 
 | 626 | 			       struct device_attribute *attr, | 
 | 627 | 			       const char *buf, size_t count); | 
 | 628 | #endif /* CONFIG_FAIL_MAKE_REQUEST */ | 
| Tejun Heo | e561052 | 2008-08-25 19:56:09 +0900 | [diff] [blame] | 629 |  | 
| Jens Axboe | 6c23a96 | 2011-01-07 08:43:37 +0100 | [diff] [blame] | 630 | static inline void hd_ref_init(struct hd_struct *part) | 
 | 631 | { | 
 | 632 | 	atomic_set(&part->ref, 1); | 
 | 633 | 	smp_mb(); | 
 | 634 | } | 
 | 635 |  | 
 | 636 | static inline void hd_struct_get(struct hd_struct *part) | 
 | 637 | { | 
 | 638 | 	atomic_inc(&part->ref); | 
 | 639 | 	smp_mb__after_atomic_inc(); | 
 | 640 | } | 
 | 641 |  | 
 | 642 | static inline int hd_struct_try_get(struct hd_struct *part) | 
 | 643 | { | 
 | 644 | 	return atomic_inc_not_zero(&part->ref); | 
 | 645 | } | 
 | 646 |  | 
 | 647 | static inline void hd_struct_put(struct hd_struct *part) | 
 | 648 | { | 
 | 649 | 	if (atomic_dec_and_test(&part->ref)) | 
 | 650 | 		__delete_partition(part); | 
 | 651 | } | 
 | 652 |  | 
| Jens Axboe | 87c1efb | 2007-05-11 13:29:54 +0200 | [diff] [blame] | 653 | #else /* CONFIG_BLOCK */ | 
 | 654 |  | 
 | 655 | static inline void printk_all_partitions(void) { } | 
 | 656 |  | 
| Tejun Heo | cf771cb | 2008-09-03 09:01:09 +0200 | [diff] [blame] | 657 | static inline dev_t blk_lookup_devt(const char *name, int partno) | 
| Kay Sievers | edfaa7c | 2007-05-21 22:08:01 +0200 | [diff] [blame] | 658 | { | 
 | 659 | 	dev_t devt = MKDEV(0, 0); | 
 | 660 | 	return devt; | 
 | 661 | } | 
 | 662 |  | 
| Jens Axboe | 87c1efb | 2007-05-11 13:29:54 +0200 | [diff] [blame] | 663 | #endif /* CONFIG_BLOCK */ | 
| David Howells | 9361401 | 2006-09-30 20:45:40 +0200 | [diff] [blame] | 664 |  | 
| David Woodhouse | a8ae50b | 2008-03-12 17:52:56 +0100 | [diff] [blame] | 665 | #endif /* _LINUX_GENHD_H */ |