blob: 6957350e122f2444173ff94e0d650e0dc01ef8c6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#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 Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/types.h>
Kay Sieversedfaa7c2007-05-21 22:08:01 +020013#include <linux/kdev_t.h>
Tejun Heoe71bf0d2008-09-03 09:03:02 +020014#include <linux/rcupdate.h>
Will Drewry6d1d8052010-08-31 15:47:05 -050015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
David Howells93614012006-09-30 20:45:40 +020017#ifdef CONFIG_BLOCK
18
Tejun Heoed9e1982008-08-25 19:56:05 +090019#define kobj_to_dev(k) container_of((k), struct device, kobj)
Tejun Heo548b10e2008-08-29 09:01:47 +020020#define dev_to_disk(device) container_of((device), struct gendisk, part0.__dev)
Tejun Heoed9e1982008-08-25 19:56:05 +090021#define dev_to_part(device) container_of((device), struct hd_struct, __dev)
Tejun Heo548b10e2008-08-29 09:01:47 +020022#define disk_to_dev(disk) (&(disk)->part0.__dev)
Tejun Heoed9e1982008-08-25 19:56:05 +090023#define part_to_dev(part) (&((part)->__dev))
Nao Nishijimaa72c5e52011-08-25 18:04:06 +090024#define alias_name(disk) ((disk)->alias ? (disk)->alias : \
25 (disk)->disk_name)
Kay Sieversedfaa7c2007-05-21 22:08:01 +020026
Kay Sieversedfaa7c2007-05-21 22:08:01 +020027extern struct device_type part_type;
28extern struct kobject *block_depr;
29extern struct class block_class;
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031enum {
32/* These three have identical behaviour; use the second one if DOS FDISK gets
33 confused about extended/logical partitions starting past cylinder 1023. */
34 DOS_EXTENDED_PARTITION = 5,
35 LINUX_EXTENDED_PARTITION = 0x85,
36 WIN98_EXTENDED_PARTITION = 0x0f,
37
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -080038 SUN_WHOLE_DISK = DOS_EXTENDED_PARTITION,
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 LINUX_SWAP_PARTITION = 0x82,
Olaf Hering4419d1a2007-02-10 01:45:47 -080041 LINUX_DATA_PARTITION = 0x83,
42 LINUX_LVM_PARTITION = 0x8e,
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 LINUX_RAID_PARTITION = 0xfd, /* autodetect RAID partition */
44
45 SOLARIS_X86_PARTITION = LINUX_SWAP_PARTITION,
46 NEW_SOLARIS_X86_PARTITION = 0xbf,
47
48 DM6_AUX1PARTITION = 0x51, /* no DDO: use xlated geom */
49 DM6_AUX3PARTITION = 0x53, /* no DDO: use xlated geom */
50 DM6_PARTITION = 0x54, /* has DDO: use xlated geom & offset */
51 EZD_PARTITION = 0x55, /* EZ-DRIVE */
52
53 FREEBSD_PARTITION = 0xa5, /* FreeBSD Partition ID */
54 OPENBSD_PARTITION = 0xa6, /* OpenBSD Partition ID */
55 NETBSD_PARTITION = 0xa9, /* NetBSD Partition ID */
56 BSDI_PARTITION = 0xb7, /* BSDI Partition ID */
57 MINIX_PARTITION = 0x81, /* Minix Partition ID */
58 UNIXWARE_PARTITION = 0x63, /* Same as GNU_HURD and SCO Unix */
59};
60
Tejun Heo689d6fa2008-08-25 19:56:16 +090061#define DISK_MAX_PARTS 256
Tejun Heo3e1a7ff2008-08-25 19:56:17 +090062#define DISK_NAME_LEN 32
Nao Nishijimaa72c5e52011-08-25 18:04:06 +090063#define ALIAS_LEN 256
Tejun Heo689d6fa2008-08-25 19:56:16 +090064
David Woodhouse34186ef2006-04-25 14:07:57 +010065#include <linux/major.h>
66#include <linux/device.h>
67#include <linux/smp.h>
68#include <linux/string.h>
69#include <linux/fs.h>
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -070070#include <linux/workqueue.h>
David Woodhouse34186ef2006-04-25 14:07:57 +010071
Linus Torvalds1da177e2005-04-16 15:20:36 -070072struct partition {
73 unsigned char boot_ind; /* 0x80 - active */
74 unsigned char head; /* starting head */
75 unsigned char sector; /* starting sector */
76 unsigned char cyl; /* starting cylinder */
77 unsigned char sys_ind; /* What partition type */
78 unsigned char end_head; /* end head */
79 unsigned char end_sector; /* end sector */
80 unsigned char end_cyl; /* end cylinder */
81 __le32 start_sect; /* starting sector counting from 0 */
82 __le32 nr_sects; /* nr of sectors in partition */
83} __attribute__((packed));
84
Jerome Marchandea5c48a2008-02-08 11:04:09 +010085struct disk_stats {
86 unsigned long sectors[2]; /* READs and WRITEs */
87 unsigned long ios[2];
88 unsigned long merges[2];
89 unsigned long ticks[2];
90 unsigned long io_ticks;
91 unsigned long time_in_queue;
92};
Will Drewry6d1d8052010-08-31 15:47:05 -050093
94#define PARTITION_META_INFO_VOLNAMELTH 64
95#define PARTITION_META_INFO_UUIDLTH 16
96
97struct partition_meta_info {
98 u8 uuid[PARTITION_META_INFO_UUIDLTH]; /* always big endian */
99 u8 volname[PARTITION_META_INFO_VOLNAMELTH];
100};
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102struct hd_struct {
103 sector_t start_sect;
104 sector_t nr_sects;
Martin K. Petersenc72758f2009-05-22 17:17:53 -0400105 sector_t alignment_offset;
Jens Axboea1706ac2011-05-30 07:42:51 +0200106 unsigned int discard_alignment;
Tejun Heoed9e1982008-08-25 19:56:05 +0900107 struct device __dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800108 struct kobject *holder_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 int policy, partno;
Will Drewry6d1d8052010-08-31 15:47:05 -0500110 struct partition_meta_info *info;
Akinobu Mitac17bb492006-12-08 02:39:46 -0800111#ifdef CONFIG_FAIL_MAKE_REQUEST
112 int make_it_fail;
113#endif
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100114 unsigned long stamp;
Shaohua Li1e9bb882011-03-22 08:35:35 +0100115 atomic_t in_flight[2];
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100116#ifdef CONFIG_SMP
Tejun Heo43cf38e2010-02-02 14:38:57 +0900117 struct disk_stats __percpu *dkstats;
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100118#else
119 struct disk_stats dkstats;
120#endif
Jens Axboe6c23a962011-01-07 08:43:37 +0100121 atomic_t ref;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200122 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123};
124
125#define GENHD_FL_REMOVABLE 1
NeilBrown97fedbb2010-03-16 08:55:32 +0100126/* 2 is unused */
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700127#define GENHD_FL_MEDIA_CHANGE_NOTIFY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128#define GENHD_FL_CD 8
129#define GENHD_FL_UP 16
130#define GENHD_FL_SUPPRESS_PARTITION_INFO 32
Tejun Heo689d6fa2008-08-25 19:56:16 +0900131#define GENHD_FL_EXT_DEVT 64 /* allow extended devt */
Bartlomiej Zolnierkiewiczdb429e92009-06-07 13:52:52 +0200132#define GENHD_FL_NATIVE_CAPACITY 128
Tejun Heod4dc2102011-04-21 20:54:46 +0200133#define GENHD_FL_BLOCK_EVENTS_ON_EXCL_WRITE 256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Tejun Heo77ea8872010-12-08 20:57:37 +0100135enum {
136 DISK_EVENT_MEDIA_CHANGE = 1 << 0, /* media changed */
137 DISK_EVENT_EJECT_REQUEST = 1 << 1, /* eject requested */
138};
139
Tejun Heo540eed52008-08-25 19:56:15 +0900140#define BLK_SCSI_MAX_CMDS (256)
141#define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
142
143struct blk_scsi_cmd_filter {
144 unsigned long read_ok[BLK_SCSI_CMD_PER_LONG];
145 unsigned long write_ok[BLK_SCSI_CMD_PER_LONG];
146 struct kobject kobj;
147};
148
149struct disk_part_tbl {
150 struct rcu_head rcu_head;
151 int len;
Arnd Bergmann4d2deb42010-02-24 20:01:56 +0100152 struct hd_struct __rcu *last_lookup;
153 struct hd_struct __rcu *part[];
Tejun Heo540eed52008-08-25 19:56:15 +0900154};
155
Tejun Heo77ea8872010-12-08 20:57:37 +0100156struct disk_events;
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158struct gendisk {
Tejun Heo689d6fa2008-08-25 19:56:16 +0900159 /* major, first_minor and minors are input parameters only,
160 * don't use directly. Use disk_devt() and disk_max_parts().
Tejun Heof331c022008-09-03 09:01:48 +0200161 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 int major; /* major number of driver */
163 int first_minor;
164 int minors; /* maximum number of minors, =1 for
165 * disks that can't be partitioned. */
Tejun Heof331c022008-09-03 09:01:48 +0200166
Tejun Heo3e1a7ff2008-08-25 19:56:17 +0900167 char disk_name[DISK_NAME_LEN]; /* name of major driver */
Nao Nishijimaa72c5e52011-08-25 18:04:06 +0900168 char *alias; /* alias name of disk */
Kay Sieverse454cea2009-09-18 23:01:12 +0200169 char *(*devnode)(struct gendisk *gd, mode_t *mode);
Tejun Heo77ea8872010-12-08 20:57:37 +0100170
171 unsigned int events; /* supported events */
172 unsigned int async_events; /* async events, subset of all */
173
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200174 /* Array of pointers to partitions indexed by partno.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200175 * Protected with matching bdev lock but stat and other
176 * non-critical accesses use RCU. Always access through
177 * helpers.
178 */
Arnd Bergmann4d2deb42010-02-24 20:01:56 +0100179 struct disk_part_tbl __rcu *part_tbl;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200180 struct hd_struct part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200181
Alexey Dobriyan83d5cde2009-09-21 17:01:13 -0700182 const struct block_device_operations *fops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 struct request_queue *queue;
184 void *private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185
186 int flags;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200187 struct device *driverfs_dev; // FIXME: remove
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800188 struct kobject *slave_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 struct timer_rand_state *random;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 atomic_t sync_io; /* RAID */
Tejun Heo77ea8872010-12-08 20:57:37 +0100192 struct disk_events *ev;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200193#ifdef CONFIG_BLK_DEV_INTEGRITY
194 struct blk_integrity *integrity;
195#endif
Tejun Heo540eed52008-08-25 19:56:15 +0900196 int node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197};
198
Tejun Heo310a2c12008-08-25 19:47:17 +0900199static inline struct gendisk *part_to_disk(struct hd_struct *part)
200{
Tejun Heo548b10e2008-08-29 09:01:47 +0200201 if (likely(part)) {
202 if (part->partno)
203 return dev_to_disk(part_to_dev(part)->parent);
204 else
205 return dev_to_disk(part_to_dev(part));
206 }
Tejun Heo310a2c12008-08-25 19:47:17 +0900207 return NULL;
208}
209
Will Drewry6d1d8052010-08-31 15:47:05 -0500210static inline void part_pack_uuid(const u8 *uuid_str, u8 *to)
211{
212 int i;
213 for (i = 0; i < 16; ++i) {
214 *to++ = (hex_to_bin(*uuid_str) << 4) |
215 (hex_to_bin(*(uuid_str + 1)));
216 uuid_str += 2;
217 switch (i) {
218 case 3:
219 case 5:
220 case 7:
221 case 9:
222 uuid_str++;
223 continue;
224 }
225 }
226}
227
228static inline char *part_unpack_uuid(const u8 *uuid, char *out)
229{
230 sprintf(out, "%pU", uuid);
231 return out;
232}
233
Tejun Heof331c022008-09-03 09:01:48 +0200234static inline int disk_max_parts(struct gendisk *disk)
235{
Tejun Heo689d6fa2008-08-25 19:56:16 +0900236 if (disk->flags & GENHD_FL_EXT_DEVT)
237 return DISK_MAX_PARTS;
238 return disk->minors;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200239}
240
241static inline bool disk_partitionable(struct gendisk *disk)
242{
243 return disk_max_parts(disk) > 1;
Tejun Heof331c022008-09-03 09:01:48 +0200244}
245
246static inline dev_t disk_devt(struct gendisk *disk)
247{
Tejun Heoed9e1982008-08-25 19:56:05 +0900248 return disk_to_dev(disk)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200249}
250
251static inline dev_t part_devt(struct hd_struct *part)
252{
Tejun Heoed9e1982008-08-25 19:56:05 +0900253 return part_to_dev(part)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200254}
255
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200256extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno);
257
258static inline void disk_put_part(struct hd_struct *part)
259{
260 if (likely(part))
Tejun Heoed9e1982008-08-25 19:56:05 +0900261 put_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200262}
263
264/*
265 * Smarter partition iterator without context limits.
266 */
267#define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */
268#define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200269#define DISK_PITER_INCL_PART0 (1 << 2) /* include partition 0 */
Tejun Heo71982a42009-04-17 08:34:48 +0200270#define DISK_PITER_INCL_EMPTY_PART0 (1 << 3) /* include empty partition 0 */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200271
272struct disk_part_iter {
273 struct gendisk *disk;
274 struct hd_struct *part;
275 int idx;
276 unsigned int flags;
277};
278
279extern void disk_part_iter_init(struct disk_part_iter *piter,
280 struct gendisk *disk, unsigned int flags);
281extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter);
282extern void disk_part_iter_exit(struct disk_part_iter *piter);
283
284extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
285 sector_t sector);
286
Tejun Heoc9959052008-08-25 19:47:21 +0900287/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 * Macros to operate on percpu disk statistics:
289 *
Tejun Heoc9959052008-08-25 19:47:21 +0900290 * {disk|part|all}_stat_{add|sub|inc|dec}() modify the stat counters
291 * and should be called between disk_stat_lock() and
292 * disk_stat_unlock().
293 *
294 * part_stat_read() can be called at any time.
295 *
296 * part_stat_{add|set_all}() and {init|free}_part_stats are for
297 * internal use only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 */
299#ifdef CONFIG_SMP
Tejun Heo074a7ac2008-08-25 19:56:14 +0900300#define part_stat_lock() ({ rcu_read_lock(); get_cpu(); })
301#define part_stat_unlock() do { put_cpu(); rcu_read_unlock(); } while (0)
Tejun Heoc9959052008-08-25 19:47:21 +0900302
Tejun Heo074a7ac2008-08-25 19:56:14 +0900303#define __part_stat_add(cpu, part, field, addnd) \
304 (per_cpu_ptr((part)->dkstats, (cpu))->field += (addnd))
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100305
306#define part_stat_read(part, field) \
307({ \
Tejun Heo074a7ac2008-08-25 19:56:14 +0900308 typeof((part)->dkstats->field) res = 0; \
Stephen Hemminger7af92f82010-01-06 15:45:55 -0800309 unsigned int _cpu; \
310 for_each_possible_cpu(_cpu) \
311 res += per_cpu_ptr((part)->dkstats, _cpu)->field; \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100312 res; \
313})
314
Jens Axboe28f13702008-05-07 10:15:46 +0200315static inline void part_stat_set_all(struct hd_struct *part, int value)
316{
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100317 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200318
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100319 for_each_possible_cpu(i)
320 memset(per_cpu_ptr(part->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200321 sizeof(struct disk_stats));
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100322}
Tejun Heoc9959052008-08-25 19:47:21 +0900323
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100324static inline int init_part_stats(struct hd_struct *part)
325{
326 part->dkstats = alloc_percpu(struct disk_stats);
327 if (!part->dkstats)
328 return 0;
329 return 1;
330}
331
332static inline void free_part_stats(struct hd_struct *part)
333{
334 free_percpu(part->dkstats);
335}
336
Tejun Heo074a7ac2008-08-25 19:56:14 +0900337#else /* !CONFIG_SMP */
338#define part_stat_lock() ({ rcu_read_lock(); 0; })
339#define part_stat_unlock() rcu_read_unlock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Tejun Heo074a7ac2008-08-25 19:56:14 +0900341#define __part_stat_add(cpu, part, field, addnd) \
342 ((part)->dkstats.field += addnd)
343
344#define part_stat_read(part, field) ((part)->dkstats.field)
345
346static inline void part_stat_set_all(struct hd_struct *part, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347{
Tejun Heo074a7ac2008-08-25 19:56:14 +0900348 memset(&part->dkstats, value, sizeof(struct disk_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100350
351static inline int init_part_stats(struct hd_struct *part)
352{
353 return 1;
354}
355
356static inline void free_part_stats(struct hd_struct *part)
357{
358}
Tejun Heo074a7ac2008-08-25 19:56:14 +0900359
360#endif /* CONFIG_SMP */
361
362#define part_stat_add(cpu, part, field, addnd) do { \
363 __part_stat_add((cpu), (part), field, addnd); \
364 if ((part)->partno) \
365 __part_stat_add((cpu), &part_to_disk((part))->part0, \
366 field, addnd); \
367} while (0)
368
369#define part_stat_dec(cpu, gendiskp, field) \
370 part_stat_add(cpu, gendiskp, field, -1)
371#define part_stat_inc(cpu, gendiskp, field) \
372 part_stat_add(cpu, gendiskp, field, 1)
373#define part_stat_sub(cpu, gendiskp, field, subnd) \
374 part_stat_add(cpu, gendiskp, field, -subnd)
375
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200376static inline void part_inc_in_flight(struct hd_struct *part, int rw)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900377{
Shaohua Li1e9bb882011-03-22 08:35:35 +0100378 atomic_inc(&part->in_flight[rw]);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900379 if (part->partno)
Shaohua Li1e9bb882011-03-22 08:35:35 +0100380 atomic_inc(&part_to_disk(part)->part0.in_flight[rw]);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900381}
382
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200383static inline void part_dec_in_flight(struct hd_struct *part, int rw)
Tejun Heo074a7ac2008-08-25 19:56:14 +0900384{
Shaohua Li1e9bb882011-03-22 08:35:35 +0100385 atomic_dec(&part->in_flight[rw]);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900386 if (part->partno)
Shaohua Li1e9bb882011-03-22 08:35:35 +0100387 atomic_dec(&part_to_disk(part)->part0.in_flight[rw]);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200388}
389
390static inline int part_in_flight(struct hd_struct *part)
391{
Shaohua Li1e9bb882011-03-22 08:35:35 +0100392 return atomic_read(&part->in_flight[0]) + atomic_read(&part->in_flight[1]);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900393}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Will Drewry6d1d8052010-08-31 15:47:05 -0500395static inline struct partition_meta_info *alloc_part_info(struct gendisk *disk)
396{
397 if (disk)
398 return kzalloc_node(sizeof(struct partition_meta_info),
399 GFP_KERNEL, disk->node_id);
400 return kzalloc(sizeof(struct partition_meta_info), GFP_KERNEL);
401}
402
403static inline void free_part_info(struct hd_struct *part)
404{
405 kfree(part->info);
406}
407
Petros Koutoupisd3992282009-03-11 10:49:35 +0100408/* block/blk-core.c */
Tejun Heoc9959052008-08-25 19:47:21 +0900409extern void part_round_stats(int cpu, struct hd_struct *part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Petros Koutoupis32ca1632009-03-10 08:25:54 +0100411/* block/genhd.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412extern void add_disk(struct gendisk *disk);
413extern void del_gendisk(struct gendisk *gp);
Tejun Heocf771cb2008-09-03 09:01:09 +0200414extern struct gendisk *get_gendisk(dev_t dev, int *partno);
Tejun Heof331c022008-09-03 09:01:48 +0200415extern struct block_device *bdget_disk(struct gendisk *disk, int partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417extern void set_device_ro(struct block_device *bdev, int flag);
418extern void set_disk_ro(struct gendisk *disk, int flag);
419
Tejun Heob7db9952008-08-25 19:56:10 +0900420static inline int get_disk_ro(struct gendisk *disk)
421{
422 return disk->part0.policy;
423}
424
Tejun Heo77ea8872010-12-08 20:57:37 +0100425extern void disk_block_events(struct gendisk *disk);
426extern void disk_unblock_events(struct gendisk *disk);
Tejun Heo85ef06d2011-07-01 16:17:47 +0200427extern void disk_flush_events(struct gendisk *disk, unsigned int mask);
Tejun Heo77ea8872010-12-08 20:57:37 +0100428extern unsigned int disk_clear_events(struct gendisk *disk, unsigned int mask);
429
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430/* drivers/char/random.c */
431extern void add_disk_randomness(struct gendisk *disk);
432extern void rand_initialize_disk(struct gendisk *disk);
433
434static inline sector_t get_start_sect(struct block_device *bdev)
435{
Tejun Heo0762b8b2008-08-25 19:56:12 +0900436 return bdev->bd_part->start_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438static inline sector_t get_capacity(struct gendisk *disk)
439{
Tejun Heo80795ae2008-08-25 19:56:07 +0900440 return disk->part0.nr_sects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442static inline void set_capacity(struct gendisk *disk, sector_t size)
443{
Tejun Heo80795ae2008-08-25 19:56:07 +0900444 disk->part0.nr_sects = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447#ifdef CONFIG_SOLARIS_X86_PARTITION
448
Mark Fortescueb84d8792007-07-25 18:30:08 -0700449#define SOLARIS_X86_NUMSLICE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
451
452struct solaris_x86_slice {
453 __le16 s_tag; /* ID tag of partition */
454 __le16 s_flag; /* permission flags */
455 __le32 s_start; /* start sector no of partition */
456 __le32 s_size; /* # of blocks in partition */
457};
458
459struct solaris_x86_vtoc {
460 unsigned int v_bootinfo[3]; /* info needed by mboot (unsupported) */
461 __le32 v_sanity; /* to verify vtoc sanity */
462 __le32 v_version; /* layout version */
463 char v_volume[8]; /* volume name */
464 __le16 v_sectorsz; /* sector size in bytes */
465 __le16 v_nparts; /* number of partitions */
466 unsigned int v_reserved[10]; /* free space */
467 struct solaris_x86_slice
468 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
469 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
470 char v_asciilabel[128]; /* for compatibility */
471};
472
473#endif /* CONFIG_SOLARIS_X86_PARTITION */
474
475#ifdef CONFIG_BSD_DISKLABEL
476/*
477 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
478 * updated by Marc Espie <Marc.Espie@openbsd.org>
479 */
480
481/* check against BSD src/sys/sys/disklabel.h for consistency */
482
483#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
484#define BSD_MAXPARTITIONS 16
485#define OPENBSD_MAXPARTITIONS 16
486#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
487struct bsd_disklabel {
488 __le32 d_magic; /* the magic number */
489 __s16 d_type; /* drive type */
490 __s16 d_subtype; /* controller/d_type specific */
491 char d_typename[16]; /* type name, e.g. "eagle" */
492 char d_packname[16]; /* pack identifier */
493 __u32 d_secsize; /* # of bytes per sector */
494 __u32 d_nsectors; /* # of data sectors per track */
495 __u32 d_ntracks; /* # of tracks per cylinder */
496 __u32 d_ncylinders; /* # of data cylinders per unit */
497 __u32 d_secpercyl; /* # of data sectors per cylinder */
498 __u32 d_secperunit; /* # of data sectors per unit */
499 __u16 d_sparespertrack; /* # of spare sectors per track */
500 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
501 __u32 d_acylinders; /* # of alt. cylinders per unit */
502 __u16 d_rpm; /* rotational speed */
503 __u16 d_interleave; /* hardware sector interleave */
504 __u16 d_trackskew; /* sector 0 skew, per track */
505 __u16 d_cylskew; /* sector 0 skew, per cylinder */
506 __u32 d_headswitch; /* head switch time, usec */
507 __u32 d_trkseek; /* track-to-track seek, usec */
508 __u32 d_flags; /* generic flags */
509#define NDDATA 5
510 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
511#define NSPARE 5
512 __u32 d_spare[NSPARE]; /* reserved for future use */
513 __le32 d_magic2; /* the magic number (again) */
514 __le16 d_checksum; /* xor of data incl. partitions */
515
516 /* filesystem and partition information: */
517 __le16 d_npartitions; /* number of partitions in following */
518 __le32 d_bbsize; /* size of boot area at sn0, bytes */
519 __le32 d_sbsize; /* max size of fs superblock, bytes */
520 struct bsd_partition { /* the partition table */
521 __le32 p_size; /* number of sectors in partition */
522 __le32 p_offset; /* starting sector */
523 __le32 p_fsize; /* filesystem basic fragment size */
524 __u8 p_fstype; /* filesystem type, see below */
525 __u8 p_frag; /* filesystem fragments per block */
526 __le16 p_cpg; /* filesystem cylinders per group */
527 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
528};
529
530#endif /* CONFIG_BSD_DISKLABEL */
531
532#ifdef CONFIG_UNIXWARE_DISKLABEL
533/*
534 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
535 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
536 */
537
538#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
539#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
540#define UNIXWARE_NUMSLICE 16
541#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
542
543struct unixware_slice {
544 __le16 s_label; /* label */
545 __le16 s_flags; /* permission flags */
546 __le32 start_sect; /* starting sector */
547 __le32 nr_sects; /* number of sectors in slice */
548};
549
550struct unixware_disklabel {
551 __le32 d_type; /* drive type */
552 __le32 d_magic; /* the magic number */
553 __le32 d_version; /* version number */
554 char d_serial[12]; /* serial number of the device */
555 __le32 d_ncylinders; /* # of data cylinders per device */
556 __le32 d_ntracks; /* # of tracks per cylinder */
557 __le32 d_nsectors; /* # of data sectors per track */
558 __le32 d_secsize; /* # of bytes per sector */
559 __le32 d_part_start; /* # of first sector of this partition */
560 __le32 d_unknown1[12]; /* ? */
561 __le32 d_alt_tbl; /* byte offset of alternate table */
562 __le32 d_alt_len; /* byte length of alternate table */
563 __le32 d_phys_cyl; /* # of physical cylinders per device */
564 __le32 d_phys_trk; /* # of physical tracks per cylinder */
565 __le32 d_phys_sec; /* # of physical sectors per track */
566 __le32 d_phys_bytes; /* # of physical bytes per sector */
567 __le32 d_unknown2; /* ? */
568 __le32 d_unknown3; /* ? */
569 __le32 d_pad[8]; /* pad */
570
571 struct unixware_vtoc {
572 __le32 v_magic; /* the magic number */
573 __le32 v_version; /* version number */
574 char v_name[8]; /* volume name */
575 __le16 v_nslices; /* # of slices */
576 __le16 v_unknown1; /* ? */
577 __le32 v_reserved[10]; /* reserved */
578 struct unixware_slice
579 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
580 } vtoc;
581
582}; /* 408 */
583
584#endif /* CONFIG_UNIXWARE_DISKLABEL */
585
586#ifdef CONFIG_MINIX_SUBPARTITION
587# define MINIX_NR_SUBPARTITIONS 4
588#endif /* CONFIG_MINIX_SUBPARTITION */
589
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -0800590#define ADDPART_FLAG_NONE 0
591#define ADDPART_FLAG_RAID 1
592#define ADDPART_FLAG_WHOLEDISK 2
593
Tejun Heobcce3de2008-08-25 19:47:22 +0900594extern int blk_alloc_devt(struct hd_struct *part, dev_t *devt);
595extern void blk_free_devt(dev_t devt);
Tejun Heocf771cb2008-09-03 09:01:09 +0200596extern dev_t blk_lookup_devt(const char *name, int partno);
597extern char *disk_name (struct gendisk *hd, int partno, char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Tejun Heo540eed52008-08-25 19:56:15 +0900599extern int disk_expand_part_tbl(struct gendisk *disk, int target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
Tejun Heoba329292008-11-10 15:29:58 +0900601extern struct hd_struct * __must_check add_partition(struct gendisk *disk,
602 int partno, sector_t start,
Will Drewry6d1d8052010-08-31 15:47:05 -0500603 sector_t len, int flags,
604 struct partition_meta_info
605 *info);
Jens Axboe6c23a962011-01-07 08:43:37 +0100606extern void __delete_partition(struct hd_struct *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607extern void delete_partition(struct gendisk *, int);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700608extern void printk_all_partitions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Christoph Lameter19460892005-06-23 00:08:19 -0700610extern struct gendisk *alloc_disk_node(int minors, int node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611extern struct gendisk *alloc_disk(int minors);
612extern struct kobject *get_disk(struct gendisk *disk);
613extern void put_disk(struct gendisk *disk);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200614extern void blk_register_region(dev_t devt, unsigned long range,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct module *module,
616 struct kobject *(*probe)(dev_t, int *, void *),
617 int (*lock)(dev_t, void *),
618 void *data);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200619extern void blk_unregister_region(dev_t devt, unsigned long range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Tejun Heoe5610522008-08-25 19:56:09 +0900621extern ssize_t part_size_show(struct device *dev,
622 struct device_attribute *attr, char *buf);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900623extern ssize_t part_stat_show(struct device *dev,
624 struct device_attribute *attr, char *buf);
Nikanth Karthikesan316d3152009-10-06 20:16:55 +0200625extern ssize_t part_inflight_show(struct device *dev,
626 struct device_attribute *attr, char *buf);
Tejun Heoeddb2e22008-08-25 19:56:13 +0900627#ifdef CONFIG_FAIL_MAKE_REQUEST
628extern ssize_t part_fail_show(struct device *dev,
629 struct device_attribute *attr, char *buf);
630extern ssize_t part_fail_store(struct device *dev,
631 struct device_attribute *attr,
632 const char *buf, size_t count);
633#endif /* CONFIG_FAIL_MAKE_REQUEST */
Tejun Heoe5610522008-08-25 19:56:09 +0900634
Jens Axboe6c23a962011-01-07 08:43:37 +0100635static inline void hd_ref_init(struct hd_struct *part)
636{
637 atomic_set(&part->ref, 1);
638 smp_mb();
639}
640
641static inline void hd_struct_get(struct hd_struct *part)
642{
643 atomic_inc(&part->ref);
644 smp_mb__after_atomic_inc();
645}
646
647static inline int hd_struct_try_get(struct hd_struct *part)
648{
649 return atomic_inc_not_zero(&part->ref);
650}
651
652static inline void hd_struct_put(struct hd_struct *part)
653{
654 if (atomic_dec_and_test(&part->ref))
655 __delete_partition(part);
656}
657
Jens Axboe87c1efb2007-05-11 13:29:54 +0200658#else /* CONFIG_BLOCK */
659
660static inline void printk_all_partitions(void) { }
661
Tejun Heocf771cb2008-09-03 09:01:09 +0200662static inline dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200663{
664 dev_t devt = MKDEV(0, 0);
665 return devt;
666}
667
Jens Axboe87c1efb2007-05-11 13:29:54 +0200668#endif /* CONFIG_BLOCK */
David Howells93614012006-09-30 20:45:40 +0200669
David Woodhousea8ae50b2008-03-12 17:52:56 +0100670#endif /* _LINUX_GENHD_H */