blob: 1cf828148ec63dabc51cb91b3f1b0313badf73e5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
David Howells93614012006-09-30 20:45:40 +020016#ifdef CONFIG_BLOCK
17
Tejun Heoed9e1982008-08-25 19:56:05 +090018#define kobj_to_dev(k) container_of((k), struct device, kobj)
19#define dev_to_disk(device) container_of((device), struct gendisk, __dev)
20#define dev_to_part(device) container_of((device), struct hd_struct, __dev)
21#define disk_to_dev(disk) (&((disk)->__dev))
22#define part_to_dev(part) (&((part)->__dev))
Kay Sieversedfaa7c2007-05-21 22:08:01 +020023
Kay Sieversedfaa7c2007-05-21 22:08:01 +020024extern struct device_type part_type;
25extern struct kobject *block_depr;
26extern struct class block_class;
27
Adrian Bunka0db7012008-03-04 11:23:50 +010028extern const struct seq_operations partitions_op;
29extern const struct seq_operations diskstats_op;
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
David Woodhouse34186ef2006-04-25 14:07:57 +010061#include <linux/major.h>
62#include <linux/device.h>
63#include <linux/smp.h>
64#include <linux/string.h>
65#include <linux/fs.h>
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -070066#include <linux/workqueue.h>
David Woodhouse34186ef2006-04-25 14:07:57 +010067
Linus Torvalds1da177e2005-04-16 15:20:36 -070068struct partition {
69 unsigned char boot_ind; /* 0x80 - active */
70 unsigned char head; /* starting head */
71 unsigned char sector; /* starting sector */
72 unsigned char cyl; /* starting cylinder */
73 unsigned char sys_ind; /* What partition type */
74 unsigned char end_head; /* end head */
75 unsigned char end_sector; /* end sector */
76 unsigned char end_cyl; /* end cylinder */
77 __le32 start_sect; /* starting sector counting from 0 */
78 __le32 nr_sects; /* nr of sectors in partition */
79} __attribute__((packed));
80
Jerome Marchandea5c48a2008-02-08 11:04:09 +010081struct disk_stats {
82 unsigned long sectors[2]; /* READs and WRITEs */
83 unsigned long ios[2];
84 unsigned long merges[2];
85 unsigned long ticks[2];
86 unsigned long io_ticks;
87 unsigned long time_in_queue;
88};
89
Linus Torvalds1da177e2005-04-16 15:20:36 -070090struct hd_struct {
91 sector_t start_sect;
92 sector_t nr_sects;
Tejun Heoed9e1982008-08-25 19:56:05 +090093 struct device __dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -080094 struct kobject *holder_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 int policy, partno;
Akinobu Mitac17bb492006-12-08 02:39:46 -080096#ifdef CONFIG_FAIL_MAKE_REQUEST
97 int make_it_fail;
98#endif
Jerome Marchandea5c48a2008-02-08 11:04:09 +010099 unsigned long stamp;
100 int in_flight;
101#ifdef CONFIG_SMP
102 struct disk_stats *dkstats;
103#else
104 struct disk_stats dkstats;
105#endif
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200106 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107};
108
109#define GENHD_FL_REMOVABLE 1
110#define GENHD_FL_DRIVERFS 2
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700111#define GENHD_FL_MEDIA_CHANGE_NOTIFY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define GENHD_FL_CD 8
113#define GENHD_FL_UP 16
114#define GENHD_FL_SUPPRESS_PARTITION_INFO 32
Akinobu Mitac17bb492006-12-08 02:39:46 -0800115#define GENHD_FL_FAIL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117struct gendisk {
Tejun Heobcce3de2008-08-25 19:47:22 +0900118 /* major, first_minor, minors and ext_minors are input
119 * parameters only, don't use directly. Use disk_devt() and
120 * disk_max_parts().
Tejun Heof331c022008-09-03 09:01:48 +0200121 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 int major; /* major number of driver */
123 int first_minor;
124 int minors; /* maximum number of minors, =1 for
125 * disks that can't be partitioned. */
Tejun Heobcce3de2008-08-25 19:47:22 +0900126 int ext_minors; /* number of extended dynamic minors */
Tejun Heof331c022008-09-03 09:01:48 +0200127
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 char disk_name[32]; /* name of major driver */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200129
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200130 /* Array of pointers to partitions indexed by partno.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200131 * Protected with matching bdev lock but stat and other
132 * non-critical accesses use RCU. Always access through
133 * helpers.
134 */
135 struct hd_struct **__part;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200136 struct hd_struct part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct block_device_operations *fops;
139 struct request_queue *queue;
140 void *private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 int flags;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200143 struct device *driverfs_dev; // FIXME: remove
Tejun Heoed9e1982008-08-25 19:56:05 +0900144 struct device __dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800145 struct kobject *holder_dir;
146 struct kobject *slave_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148 struct timer_rand_state *random;
149 int policy;
150
151 atomic_t sync_io; /* RAID */
Chen, Kenneth W20e5c812005-10-13 21:48:42 +0200152 unsigned long stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 int in_flight;
154#ifdef CONFIG_SMP
155 struct disk_stats *dkstats;
156#else
157 struct disk_stats dkstats;
158#endif
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -0700159 struct work_struct async_notify;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200160#ifdef CONFIG_BLK_DEV_INTEGRITY
161 struct blk_integrity *integrity;
162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
Tejun Heo310a2c12008-08-25 19:47:17 +0900165static inline struct gendisk *part_to_disk(struct hd_struct *part)
166{
167 if (likely(part))
Tejun Heoed9e1982008-08-25 19:56:05 +0900168 return dev_to_disk(part_to_dev(part)->parent);
Tejun Heo310a2c12008-08-25 19:47:17 +0900169 return NULL;
170}
171
Tejun Heof331c022008-09-03 09:01:48 +0200172static inline int disk_max_parts(struct gendisk *disk)
173{
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200174 return disk->minors + disk->ext_minors;
175}
176
177static inline bool disk_partitionable(struct gendisk *disk)
178{
179 return disk_max_parts(disk) > 1;
Tejun Heof331c022008-09-03 09:01:48 +0200180}
181
182static inline dev_t disk_devt(struct gendisk *disk)
183{
Tejun Heoed9e1982008-08-25 19:56:05 +0900184 return disk_to_dev(disk)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200185}
186
187static inline dev_t part_devt(struct hd_struct *part)
188{
Tejun Heoed9e1982008-08-25 19:56:05 +0900189 return part_to_dev(part)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200190}
191
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200192extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno);
193
194static inline void disk_put_part(struct hd_struct *part)
195{
196 if (likely(part))
Tejun Heoed9e1982008-08-25 19:56:05 +0900197 put_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200198}
199
200/*
201 * Smarter partition iterator without context limits.
202 */
203#define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */
204#define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200205#define DISK_PITER_INCL_PART0 (1 << 2) /* include partition 0 */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200206
207struct disk_part_iter {
208 struct gendisk *disk;
209 struct hd_struct *part;
210 int idx;
211 unsigned int flags;
212};
213
214extern void disk_part_iter_init(struct disk_part_iter *piter,
215 struct gendisk *disk, unsigned int flags);
216extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter);
217extern void disk_part_iter_exit(struct disk_part_iter *piter);
218
219extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
220 sector_t sector);
221
Tejun Heoc9959052008-08-25 19:47:21 +0900222/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 * Macros to operate on percpu disk statistics:
224 *
Tejun Heoc9959052008-08-25 19:47:21 +0900225 * {disk|part|all}_stat_{add|sub|inc|dec}() modify the stat counters
226 * and should be called between disk_stat_lock() and
227 * disk_stat_unlock().
228 *
229 * part_stat_read() can be called at any time.
230 *
231 * part_stat_{add|set_all}() and {init|free}_part_stats are for
232 * internal use only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
234#ifdef CONFIG_SMP
Tejun Heoc9959052008-08-25 19:47:21 +0900235#define disk_stat_lock() ({ rcu_read_lock(); get_cpu(); })
236#define disk_stat_unlock() do { put_cpu(); rcu_read_unlock(); } while (0)
237
238#define disk_stat_add(cpu, gendiskp, field, addnd) \
239 (per_cpu_ptr(gendiskp->dkstats, cpu)->field += addnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
241#define disk_stat_read(gendiskp, field) \
242({ \
243 typeof(gendiskp->dkstats->field) res = 0; \
244 int i; \
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800245 for_each_possible_cpu(i) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 res += per_cpu_ptr(gendiskp->dkstats, i)->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 res; \
248})
249
Tejun Heoc9959052008-08-25 19:47:21 +0900250static inline void disk_stat_set_all(struct gendisk *gendiskp, int value)
251{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200253
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800254 for_each_possible_cpu(i)
Andrew Morton394e3902006-03-23 03:01:05 -0800255 memset(per_cpu_ptr(gendiskp->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200256 sizeof(struct disk_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100258
Tejun Heoc9959052008-08-25 19:47:21 +0900259#define part_stat_add(cpu, part, field, addnd) \
260 (per_cpu_ptr(part->dkstats, cpu)->field += addnd)
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100261
Tejun Heoc9959052008-08-25 19:47:21 +0900262#define all_stat_add(cpu, gendiskp, part, field, addnd, sector) \
263({ \
264 if (part) \
265 part_stat_add(cpu, part, field, addnd); \
266 disk_stat_add(cpu, gendiskp, field, addnd); \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100267})
268
269#define part_stat_read(part, field) \
270({ \
271 typeof(part->dkstats->field) res = 0; \
272 int i; \
273 for_each_possible_cpu(i) \
274 res += per_cpu_ptr(part->dkstats, i)->field; \
275 res; \
276})
277
Jens Axboe28f13702008-05-07 10:15:46 +0200278static inline void part_stat_set_all(struct hd_struct *part, int value)
279{
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100280 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200281
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100282 for_each_possible_cpu(i)
283 memset(per_cpu_ptr(part->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200284 sizeof(struct disk_stats));
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100285}
Tejun Heoc9959052008-08-25 19:47:21 +0900286
David Woodhousea8ae50b2008-03-12 17:52:56 +0100287#else /* !CONFIG_SMP */
Tejun Heoc9959052008-08-25 19:47:21 +0900288#define disk_stat_lock() ({ rcu_read_lock(); 0; })
289#define disk_stat_unlock() rcu_read_unlock()
290
291#define disk_stat_add(cpu, gendiskp, field, addnd) \
292 (gendiskp->dkstats.field += addnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293#define disk_stat_read(gendiskp, field) (gendiskp->dkstats.field)
294
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100295static inline void disk_stat_set_all(struct gendisk *gendiskp, int value)
296{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 memset(&gendiskp->dkstats, value, sizeof (struct disk_stats));
298}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100299
Tejun Heoc9959052008-08-25 19:47:21 +0900300#define part_stat_add(cpu, part, field, addnd) \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100301 (part->dkstats.field += addnd)
302
Tejun Heoc9959052008-08-25 19:47:21 +0900303#define all_stat_add(cpu, gendiskp, part, field, addnd, sector) \
304({ \
305 if (part) \
306 part_stat_add(cpu, part, field, addnd); \
307 disk_stat_add(cpu, gendiskp, field, addnd); \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100308})
309
310#define part_stat_read(part, field) (part->dkstats.field)
311
312static inline void part_stat_set_all(struct hd_struct *part, int value)
313{
314 memset(&part->dkstats, value, sizeof(struct disk_stats));
315}
316
David Woodhousea8ae50b2008-03-12 17:52:56 +0100317#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
Tejun Heoc9959052008-08-25 19:47:21 +0900319#define disk_stat_dec(cpu, gendiskp, field) \
320 disk_stat_add(cpu, gendiskp, field, -1)
321#define disk_stat_inc(cpu, gendiskp, field) \
322 disk_stat_add(cpu, gendiskp, field, 1)
323#define disk_stat_sub(cpu, gendiskp, field, subnd) \
324 disk_stat_add(cpu, gendiskp, field, -subnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Tejun Heoc9959052008-08-25 19:47:21 +0900326#define part_stat_dec(cpu, gendiskp, field) \
327 part_stat_add(cpu, gendiskp, field, -1)
328#define part_stat_inc(cpu, gendiskp, field) \
329 part_stat_add(cpu, gendiskp, field, 1)
330#define part_stat_sub(cpu, gendiskp, field, subnd) \
331 part_stat_add(cpu, gendiskp, field, -subnd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Tejun Heoc9959052008-08-25 19:47:21 +0900333#define all_stat_dec(cpu, gendiskp, field, sector) \
334 all_stat_add(cpu, gendiskp, field, -1, sector)
335#define all_stat_inc(cpu, gendiskp, part, field, sector) \
336 all_stat_add(cpu, gendiskp, part, field, 1, sector)
337#define all_stat_sub(cpu, gendiskp, part, field, subnd, sector) \
338 all_stat_add(cpu, gendiskp, part, field, -subnd, sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/* Inlines to alloc and free disk stats in struct gendisk */
341#ifdef CONFIG_SMP
342static inline int init_disk_stats(struct gendisk *disk)
343{
344 disk->dkstats = alloc_percpu(struct disk_stats);
345 if (!disk->dkstats)
346 return 0;
347 return 1;
348}
349
350static inline void free_disk_stats(struct gendisk *disk)
351{
352 free_percpu(disk->dkstats);
353}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100354
355static inline int init_part_stats(struct hd_struct *part)
356{
357 part->dkstats = alloc_percpu(struct disk_stats);
358 if (!part->dkstats)
359 return 0;
360 return 1;
361}
362
363static inline void free_part_stats(struct hd_struct *part)
364{
365 free_percpu(part->dkstats);
366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368#else /* CONFIG_SMP */
369static inline int init_disk_stats(struct gendisk *disk)
370{
371 return 1;
372}
373
374static inline void free_disk_stats(struct gendisk *disk)
375{
376}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100377
378static inline int init_part_stats(struct hd_struct *part)
379{
380 return 1;
381}
382
383static inline void free_part_stats(struct hd_struct *part)
384{
385}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#endif /* CONFIG_SMP */
387
388/* drivers/block/ll_rw_blk.c */
Tejun Heoc9959052008-08-25 19:47:21 +0900389extern void disk_round_stats(int cpu, struct gendisk *disk);
390extern void part_round_stats(int cpu, struct hd_struct *part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392/* drivers/block/genhd.c */
Neil Hormanac204272005-06-23 00:09:11 -0700393extern int get_blkdev_list(char *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394extern void add_disk(struct gendisk *disk);
395extern void del_gendisk(struct gendisk *gp);
396extern void unlink_gendisk(struct gendisk *gp);
Tejun Heocf771cb2008-09-03 09:01:09 +0200397extern struct gendisk *get_gendisk(dev_t dev, int *partno);
Tejun Heof331c022008-09-03 09:01:48 +0200398extern struct block_device *bdget_disk(struct gendisk *disk, int partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400extern void set_device_ro(struct block_device *bdev, int flag);
401extern void set_disk_ro(struct gendisk *disk, int flag);
402
403/* drivers/char/random.c */
404extern void add_disk_randomness(struct gendisk *disk);
405extern void rand_initialize_disk(struct gendisk *disk);
406
407static inline sector_t get_start_sect(struct block_device *bdev)
408{
409 return bdev->bd_contains == bdev ? 0 : bdev->bd_part->start_sect;
410}
411static inline sector_t get_capacity(struct gendisk *disk)
412{
Tejun Heo80795ae2008-08-25 19:56:07 +0900413 return disk->part0.nr_sects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414}
415static inline void set_capacity(struct gendisk *disk, sector_t size)
416{
Tejun Heo80795ae2008-08-25 19:56:07 +0900417 disk->part0.nr_sects = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420#ifdef CONFIG_SOLARIS_X86_PARTITION
421
Mark Fortescueb84d8792007-07-25 18:30:08 -0700422#define SOLARIS_X86_NUMSLICE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
424
425struct solaris_x86_slice {
426 __le16 s_tag; /* ID tag of partition */
427 __le16 s_flag; /* permission flags */
428 __le32 s_start; /* start sector no of partition */
429 __le32 s_size; /* # of blocks in partition */
430};
431
432struct solaris_x86_vtoc {
433 unsigned int v_bootinfo[3]; /* info needed by mboot (unsupported) */
434 __le32 v_sanity; /* to verify vtoc sanity */
435 __le32 v_version; /* layout version */
436 char v_volume[8]; /* volume name */
437 __le16 v_sectorsz; /* sector size in bytes */
438 __le16 v_nparts; /* number of partitions */
439 unsigned int v_reserved[10]; /* free space */
440 struct solaris_x86_slice
441 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
442 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
443 char v_asciilabel[128]; /* for compatibility */
444};
445
446#endif /* CONFIG_SOLARIS_X86_PARTITION */
447
448#ifdef CONFIG_BSD_DISKLABEL
449/*
450 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
451 * updated by Marc Espie <Marc.Espie@openbsd.org>
452 */
453
454/* check against BSD src/sys/sys/disklabel.h for consistency */
455
456#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
457#define BSD_MAXPARTITIONS 16
458#define OPENBSD_MAXPARTITIONS 16
459#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
460struct bsd_disklabel {
461 __le32 d_magic; /* the magic number */
462 __s16 d_type; /* drive type */
463 __s16 d_subtype; /* controller/d_type specific */
464 char d_typename[16]; /* type name, e.g. "eagle" */
465 char d_packname[16]; /* pack identifier */
466 __u32 d_secsize; /* # of bytes per sector */
467 __u32 d_nsectors; /* # of data sectors per track */
468 __u32 d_ntracks; /* # of tracks per cylinder */
469 __u32 d_ncylinders; /* # of data cylinders per unit */
470 __u32 d_secpercyl; /* # of data sectors per cylinder */
471 __u32 d_secperunit; /* # of data sectors per unit */
472 __u16 d_sparespertrack; /* # of spare sectors per track */
473 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
474 __u32 d_acylinders; /* # of alt. cylinders per unit */
475 __u16 d_rpm; /* rotational speed */
476 __u16 d_interleave; /* hardware sector interleave */
477 __u16 d_trackskew; /* sector 0 skew, per track */
478 __u16 d_cylskew; /* sector 0 skew, per cylinder */
479 __u32 d_headswitch; /* head switch time, usec */
480 __u32 d_trkseek; /* track-to-track seek, usec */
481 __u32 d_flags; /* generic flags */
482#define NDDATA 5
483 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
484#define NSPARE 5
485 __u32 d_spare[NSPARE]; /* reserved for future use */
486 __le32 d_magic2; /* the magic number (again) */
487 __le16 d_checksum; /* xor of data incl. partitions */
488
489 /* filesystem and partition information: */
490 __le16 d_npartitions; /* number of partitions in following */
491 __le32 d_bbsize; /* size of boot area at sn0, bytes */
492 __le32 d_sbsize; /* max size of fs superblock, bytes */
493 struct bsd_partition { /* the partition table */
494 __le32 p_size; /* number of sectors in partition */
495 __le32 p_offset; /* starting sector */
496 __le32 p_fsize; /* filesystem basic fragment size */
497 __u8 p_fstype; /* filesystem type, see below */
498 __u8 p_frag; /* filesystem fragments per block */
499 __le16 p_cpg; /* filesystem cylinders per group */
500 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
501};
502
503#endif /* CONFIG_BSD_DISKLABEL */
504
505#ifdef CONFIG_UNIXWARE_DISKLABEL
506/*
507 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
508 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
509 */
510
511#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
512#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
513#define UNIXWARE_NUMSLICE 16
514#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
515
516struct unixware_slice {
517 __le16 s_label; /* label */
518 __le16 s_flags; /* permission flags */
519 __le32 start_sect; /* starting sector */
520 __le32 nr_sects; /* number of sectors in slice */
521};
522
523struct unixware_disklabel {
524 __le32 d_type; /* drive type */
525 __le32 d_magic; /* the magic number */
526 __le32 d_version; /* version number */
527 char d_serial[12]; /* serial number of the device */
528 __le32 d_ncylinders; /* # of data cylinders per device */
529 __le32 d_ntracks; /* # of tracks per cylinder */
530 __le32 d_nsectors; /* # of data sectors per track */
531 __le32 d_secsize; /* # of bytes per sector */
532 __le32 d_part_start; /* # of first sector of this partition */
533 __le32 d_unknown1[12]; /* ? */
534 __le32 d_alt_tbl; /* byte offset of alternate table */
535 __le32 d_alt_len; /* byte length of alternate table */
536 __le32 d_phys_cyl; /* # of physical cylinders per device */
537 __le32 d_phys_trk; /* # of physical tracks per cylinder */
538 __le32 d_phys_sec; /* # of physical sectors per track */
539 __le32 d_phys_bytes; /* # of physical bytes per sector */
540 __le32 d_unknown2; /* ? */
541 __le32 d_unknown3; /* ? */
542 __le32 d_pad[8]; /* pad */
543
544 struct unixware_vtoc {
545 __le32 v_magic; /* the magic number */
546 __le32 v_version; /* version number */
547 char v_name[8]; /* volume name */
548 __le16 v_nslices; /* # of slices */
549 __le16 v_unknown1; /* ? */
550 __le32 v_reserved[10]; /* reserved */
551 struct unixware_slice
552 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
553 } vtoc;
554
555}; /* 408 */
556
557#endif /* CONFIG_UNIXWARE_DISKLABEL */
558
559#ifdef CONFIG_MINIX_SUBPARTITION
560# define MINIX_NR_SUBPARTITIONS 4
561#endif /* CONFIG_MINIX_SUBPARTITION */
562
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -0800563#define ADDPART_FLAG_NONE 0
564#define ADDPART_FLAG_RAID 1
565#define ADDPART_FLAG_WHOLEDISK 2
566
Tejun Heobcce3de2008-08-25 19:47:22 +0900567extern int blk_alloc_devt(struct hd_struct *part, dev_t *devt);
568extern void blk_free_devt(dev_t devt);
Tejun Heocf771cb2008-09-03 09:01:09 +0200569extern dev_t blk_lookup_devt(const char *name, int partno);
570extern char *disk_name (struct gendisk *hd, int partno, char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
Abdel Benamrouched805dda2008-07-25 01:48:25 -0700573extern int __must_check add_partition(struct gendisk *, int, sector_t, sector_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574extern void delete_partition(struct gendisk *, int);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700575extern void printk_all_partitions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Christoph Lameter19460892005-06-23 00:08:19 -0700577extern struct gendisk *alloc_disk_node(int minors, int node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578extern struct gendisk *alloc_disk(int minors);
Tejun Heobcce3de2008-08-25 19:47:22 +0900579extern struct gendisk *alloc_disk_ext_node(int minors, int ext_minrs,
580 int node_id);
581extern struct gendisk *alloc_disk_ext(int minors, int ext_minors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582extern struct kobject *get_disk(struct gendisk *disk);
583extern void put_disk(struct gendisk *disk);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200584extern void blk_register_region(dev_t devt, unsigned long range,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 struct module *module,
586 struct kobject *(*probe)(dev_t, int *, void *),
587 int (*lock)(dev_t, void *),
588 void *data);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200589extern void blk_unregister_region(dev_t devt, unsigned long range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
Jens Axboe87c1efb2007-05-11 13:29:54 +0200591#else /* CONFIG_BLOCK */
592
593static inline void printk_all_partitions(void) { }
594
Tejun Heocf771cb2008-09-03 09:01:09 +0200595static inline dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200596{
597 dev_t devt = MKDEV(0, 0);
598 return devt;
599}
600
Jens Axboe87c1efb2007-05-11 13:29:54 +0200601#endif /* CONFIG_BLOCK */
David Howells93614012006-09-30 20:45:40 +0200602
David Woodhousea8ae50b2008-03-12 17:52:56 +0100603#endif /* _LINUX_GENHD_H */