blob: 7fbba19e076bedf62b31664c9aaf227953b6e4a6 [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
Kay Sieversedfaa7c2007-05-21 22:08:01 +020018#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
Kay Sieversedfaa7c2007-05-21 22:08:01 +020022extern struct device_type part_type;
23extern struct kobject *block_depr;
24extern struct class block_class;
25
Adrian Bunka0db7012008-03-04 11:23:50 +010026extern const struct seq_operations partitions_op;
27extern const struct seq_operations diskstats_op;
28
Linus Torvalds1da177e2005-04-16 15:20:36 -070029enum {
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 Nittod18d7682007-02-10 23:50:00 -080036 SUN_WHOLE_DISK = DOS_EXTENDED_PARTITION,
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 LINUX_SWAP_PARTITION = 0x82,
Olaf Hering4419d1a2007-02-10 01:45:47 -080039 LINUX_DATA_PARTITION = 0x83,
40 LINUX_LVM_PARTITION = 0x8e,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 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
David Woodhouse34186ef2006-04-25 14:07:57 +010059#include <linux/major.h>
60#include <linux/device.h>
61#include <linux/smp.h>
62#include <linux/string.h>
63#include <linux/fs.h>
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -070064#include <linux/workqueue.h>
David Woodhouse34186ef2006-04-25 14:07:57 +010065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066struct partition {
67 unsigned char boot_ind; /* 0x80 - active */
68 unsigned char head; /* starting head */
69 unsigned char sector; /* starting sector */
70 unsigned char cyl; /* starting cylinder */
71 unsigned char sys_ind; /* What partition type */
72 unsigned char end_head; /* end head */
73 unsigned char end_sector; /* end sector */
74 unsigned char end_cyl; /* end cylinder */
75 __le32 start_sect; /* starting sector counting from 0 */
76 __le32 nr_sects; /* nr of sectors in partition */
77} __attribute__((packed));
78
Jerome Marchandea5c48a2008-02-08 11:04:09 +010079struct disk_stats {
80 unsigned long sectors[2]; /* READs and WRITEs */
81 unsigned long ios[2];
82 unsigned long merges[2];
83 unsigned long ticks[2];
84 unsigned long io_ticks;
85 unsigned long time_in_queue;
86};
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088struct hd_struct {
89 sector_t start_sect;
90 sector_t nr_sects;
Kay Sieversedfaa7c2007-05-21 22:08:01 +020091 struct device dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -080092 struct kobject *holder_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 int policy, partno;
Akinobu Mitac17bb492006-12-08 02:39:46 -080094#ifdef CONFIG_FAIL_MAKE_REQUEST
95 int make_it_fail;
96#endif
Jerome Marchandea5c48a2008-02-08 11:04:09 +010097 unsigned long stamp;
98 int in_flight;
99#ifdef CONFIG_SMP
100 struct disk_stats *dkstats;
101#else
102 struct disk_stats dkstats;
103#endif
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200104 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105};
106
107#define GENHD_FL_REMOVABLE 1
108#define GENHD_FL_DRIVERFS 2
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700109#define GENHD_FL_MEDIA_CHANGE_NOTIFY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#define GENHD_FL_CD 8
111#define GENHD_FL_UP 16
112#define GENHD_FL_SUPPRESS_PARTITION_INFO 32
Akinobu Mitac17bb492006-12-08 02:39:46 -0800113#define GENHD_FL_FAIL 64
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115struct gendisk {
Tejun Heof331c022008-09-03 09:01:48 +0200116 /* major, first_minor and minors are input parameters only,
117 * don't use directly. Use disk_devt() and disk_max_parts().
118 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 int major; /* major number of driver */
120 int first_minor;
121 int minors; /* maximum number of minors, =1 for
122 * disks that can't be partitioned. */
Tejun Heof331c022008-09-03 09:01:48 +0200123
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 char disk_name[32]; /* name of major driver */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200125
126 /* Array of pointers to partitions indexed by partno - 1.
127 * Protected with matching bdev lock but stat and other
128 * non-critical accesses use RCU. Always access through
129 * helpers.
130 */
131 struct hd_struct **__part;
132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 struct block_device_operations *fops;
134 struct request_queue *queue;
135 void *private_data;
136 sector_t capacity;
137
138 int flags;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200139 struct device *driverfs_dev; // FIXME: remove
140 struct device dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800141 struct kobject *holder_dir;
142 struct kobject *slave_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 struct timer_rand_state *random;
145 int policy;
146
147 atomic_t sync_io; /* RAID */
Chen, Kenneth W20e5c812005-10-13 21:48:42 +0200148 unsigned long stamp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 int in_flight;
150#ifdef CONFIG_SMP
151 struct disk_stats *dkstats;
152#else
153 struct disk_stats dkstats;
154#endif
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -0700155 struct work_struct async_notify;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200156#ifdef CONFIG_BLK_DEV_INTEGRITY
157 struct blk_integrity *integrity;
158#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159};
160
Tejun Heo310a2c12008-08-25 19:47:17 +0900161static inline struct gendisk *part_to_disk(struct hd_struct *part)
162{
163 if (likely(part))
164 return dev_to_disk((part)->dev.parent);
165 return NULL;
166}
167
Tejun Heof331c022008-09-03 09:01:48 +0200168static inline int disk_max_parts(struct gendisk *disk)
169{
170 return disk->minors - 1;
171}
172
173static inline dev_t disk_devt(struct gendisk *disk)
174{
175 return disk->dev.devt;
176}
177
178static inline dev_t part_devt(struct hd_struct *part)
179{
180 return part->dev.devt;
181}
182
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200183extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno);
184
185static inline void disk_put_part(struct hd_struct *part)
186{
187 if (likely(part))
188 put_device(&part->dev);
189}
190
191/*
192 * Smarter partition iterator without context limits.
193 */
194#define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */
195#define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */
196
197struct disk_part_iter {
198 struct gendisk *disk;
199 struct hd_struct *part;
200 int idx;
201 unsigned int flags;
202};
203
204extern void disk_part_iter_init(struct disk_part_iter *piter,
205 struct gendisk *disk, unsigned int flags);
206extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter);
207extern void disk_part_iter_exit(struct disk_part_iter *piter);
208
209extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
210 sector_t sector);
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/*
213 * Macros to operate on percpu disk statistics:
214 *
215 * The __ variants should only be called in critical sections. The full
216 * variants disable/enable preemption.
217 */
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219#ifdef CONFIG_SMP
220#define __disk_stat_add(gendiskp, field, addnd) \
221 (per_cpu_ptr(gendiskp->dkstats, smp_processor_id())->field += addnd)
222
223#define disk_stat_read(gendiskp, field) \
224({ \
225 typeof(gendiskp->dkstats->field) res = 0; \
226 int i; \
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800227 for_each_possible_cpu(i) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 res += per_cpu_ptr(gendiskp->dkstats, i)->field; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 res; \
230})
231
232static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) {
233 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200234
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -0800235 for_each_possible_cpu(i)
Andrew Morton394e3902006-03-23 03:01:05 -0800236 memset(per_cpu_ptr(gendiskp->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200237 sizeof(struct disk_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100239
240#define __part_stat_add(part, field, addnd) \
241 (per_cpu_ptr(part->dkstats, smp_processor_id())->field += addnd)
242
Jens Axboe28f13702008-05-07 10:15:46 +0200243#define __all_stat_add(gendiskp, part, field, addnd, sector) \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100244({ \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100245 if (part) \
246 __part_stat_add(part, field, addnd); \
247 __disk_stat_add(gendiskp, field, addnd); \
248})
249
250#define part_stat_read(part, field) \
251({ \
252 typeof(part->dkstats->field) res = 0; \
253 int i; \
254 for_each_possible_cpu(i) \
255 res += per_cpu_ptr(part->dkstats, i)->field; \
256 res; \
257})
258
Jens Axboe28f13702008-05-07 10:15:46 +0200259static inline void part_stat_set_all(struct hd_struct *part, int value)
260{
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100261 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200262
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100263 for_each_possible_cpu(i)
264 memset(per_cpu_ptr(part->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200265 sizeof(struct disk_stats));
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100266}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David Woodhousea8ae50b2008-03-12 17:52:56 +0100268#else /* !CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#define __disk_stat_add(gendiskp, field, addnd) \
270 (gendiskp->dkstats.field += addnd)
271#define disk_stat_read(gendiskp, field) (gendiskp->dkstats.field)
272
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100273static inline void disk_stat_set_all(struct gendisk *gendiskp, int value)
274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 memset(&gendiskp->dkstats, value, sizeof (struct disk_stats));
276}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100277
278#define __part_stat_add(part, field, addnd) \
279 (part->dkstats.field += addnd)
280
Jens Axboe28f13702008-05-07 10:15:46 +0200281#define __all_stat_add(gendiskp, part, field, addnd, sector) \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100282({ \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100283 if (part) \
284 part->dkstats.field += addnd; \
285 __disk_stat_add(gendiskp, field, addnd); \
286})
287
288#define part_stat_read(part, field) (part->dkstats.field)
289
290static inline void part_stat_set_all(struct hd_struct *part, int value)
291{
292 memset(&part->dkstats, value, sizeof(struct disk_stats));
293}
294
David Woodhousea8ae50b2008-03-12 17:52:56 +0100295#endif /* CONFIG_SMP */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
297#define disk_stat_add(gendiskp, field, addnd) \
298 do { \
299 preempt_disable(); \
300 __disk_stat_add(gendiskp, field, addnd); \
301 preempt_enable(); \
302 } while (0)
303
304#define __disk_stat_dec(gendiskp, field) __disk_stat_add(gendiskp, field, -1)
305#define disk_stat_dec(gendiskp, field) disk_stat_add(gendiskp, field, -1)
306
307#define __disk_stat_inc(gendiskp, field) __disk_stat_add(gendiskp, field, 1)
308#define disk_stat_inc(gendiskp, field) disk_stat_add(gendiskp, field, 1)
309
310#define __disk_stat_sub(gendiskp, field, subnd) \
311 __disk_stat_add(gendiskp, field, -subnd)
312#define disk_stat_sub(gendiskp, field, subnd) \
313 disk_stat_add(gendiskp, field, -subnd)
314
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100315#define part_stat_add(gendiskp, field, addnd) \
316 do { \
317 preempt_disable(); \
318 __part_stat_add(gendiskp, field, addnd);\
319 preempt_enable(); \
320 } while (0)
321
322#define __part_stat_dec(gendiskp, field) __part_stat_add(gendiskp, field, -1)
323#define part_stat_dec(gendiskp, field) part_stat_add(gendiskp, field, -1)
324
325#define __part_stat_inc(gendiskp, field) __part_stat_add(gendiskp, field, 1)
326#define part_stat_inc(gendiskp, field) part_stat_add(gendiskp, field, 1)
327
328#define __part_stat_sub(gendiskp, field, subnd) \
329 __part_stat_add(gendiskp, field, -subnd)
330#define part_stat_sub(gendiskp, field, subnd) \
331 part_stat_add(gendiskp, field, -subnd)
332
Jens Axboe28f13702008-05-07 10:15:46 +0200333#define all_stat_add(gendiskp, part, field, addnd, sector) \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100334 do { \
335 preempt_disable(); \
Jens Axboe28f13702008-05-07 10:15:46 +0200336 __all_stat_add(gendiskp, part, field, addnd, sector); \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100337 preempt_enable(); \
338 } while (0)
339
340#define __all_stat_dec(gendiskp, field, sector) \
341 __all_stat_add(gendiskp, field, -1, sector)
342#define all_stat_dec(gendiskp, field, sector) \
343 all_stat_add(gendiskp, field, -1, sector)
344
Jens Axboe28f13702008-05-07 10:15:46 +0200345#define __all_stat_inc(gendiskp, part, field, sector) \
346 __all_stat_add(gendiskp, part, field, 1, sector)
347#define all_stat_inc(gendiskp, part, field, sector) \
348 all_stat_add(gendiskp, part, field, 1, sector)
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100349
Jens Axboe28f13702008-05-07 10:15:46 +0200350#define __all_stat_sub(gendiskp, part, field, subnd, sector) \
351 __all_stat_add(gendiskp, part, field, -subnd, sector)
352#define all_stat_sub(gendiskp, part, field, subnd, sector) \
353 all_stat_add(gendiskp, part, field, -subnd, sector)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
355/* Inlines to alloc and free disk stats in struct gendisk */
356#ifdef CONFIG_SMP
357static inline int init_disk_stats(struct gendisk *disk)
358{
359 disk->dkstats = alloc_percpu(struct disk_stats);
360 if (!disk->dkstats)
361 return 0;
362 return 1;
363}
364
365static inline void free_disk_stats(struct gendisk *disk)
366{
367 free_percpu(disk->dkstats);
368}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100369
370static inline int init_part_stats(struct hd_struct *part)
371{
372 part->dkstats = alloc_percpu(struct disk_stats);
373 if (!part->dkstats)
374 return 0;
375 return 1;
376}
377
378static inline void free_part_stats(struct hd_struct *part)
379{
380 free_percpu(part->dkstats);
381}
382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#else /* CONFIG_SMP */
384static inline int init_disk_stats(struct gendisk *disk)
385{
386 return 1;
387}
388
389static inline void free_disk_stats(struct gendisk *disk)
390{
391}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100392
393static inline int init_part_stats(struct hd_struct *part)
394{
395 return 1;
396}
397
398static inline void free_part_stats(struct hd_struct *part)
399{
400}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#endif /* CONFIG_SMP */
402
403/* drivers/block/ll_rw_blk.c */
404extern void disk_round_stats(struct gendisk *disk);
Jerome Marchand6f2576a2008-02-08 11:04:35 +0100405extern void part_round_stats(struct hd_struct *part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407/* drivers/block/genhd.c */
Neil Hormanac204272005-06-23 00:09:11 -0700408extern int get_blkdev_list(char *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409extern void add_disk(struct gendisk *disk);
410extern void del_gendisk(struct gendisk *gp);
411extern void unlink_gendisk(struct gendisk *gp);
Tejun Heocf771cb2008-09-03 09:01:09 +0200412extern struct gendisk *get_gendisk(dev_t dev, int *partno);
Tejun Heof331c022008-09-03 09:01:48 +0200413extern struct block_device *bdget_disk(struct gendisk *disk, int partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
415extern void set_device_ro(struct block_device *bdev, int flag);
416extern void set_disk_ro(struct gendisk *disk, int flag);
417
418/* drivers/char/random.c */
419extern void add_disk_randomness(struct gendisk *disk);
420extern void rand_initialize_disk(struct gendisk *disk);
421
422static inline sector_t get_start_sect(struct block_device *bdev)
423{
424 return bdev->bd_contains == bdev ? 0 : bdev->bd_part->start_sect;
425}
426static inline sector_t get_capacity(struct gendisk *disk)
427{
428 return disk->capacity;
429}
430static inline void set_capacity(struct gendisk *disk, sector_t size)
431{
432 disk->capacity = size;
433}
434
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#ifdef CONFIG_SOLARIS_X86_PARTITION
436
Mark Fortescueb84d8792007-07-25 18:30:08 -0700437#define SOLARIS_X86_NUMSLICE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
439
440struct solaris_x86_slice {
441 __le16 s_tag; /* ID tag of partition */
442 __le16 s_flag; /* permission flags */
443 __le32 s_start; /* start sector no of partition */
444 __le32 s_size; /* # of blocks in partition */
445};
446
447struct solaris_x86_vtoc {
448 unsigned int v_bootinfo[3]; /* info needed by mboot (unsupported) */
449 __le32 v_sanity; /* to verify vtoc sanity */
450 __le32 v_version; /* layout version */
451 char v_volume[8]; /* volume name */
452 __le16 v_sectorsz; /* sector size in bytes */
453 __le16 v_nparts; /* number of partitions */
454 unsigned int v_reserved[10]; /* free space */
455 struct solaris_x86_slice
456 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
457 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
458 char v_asciilabel[128]; /* for compatibility */
459};
460
461#endif /* CONFIG_SOLARIS_X86_PARTITION */
462
463#ifdef CONFIG_BSD_DISKLABEL
464/*
465 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
466 * updated by Marc Espie <Marc.Espie@openbsd.org>
467 */
468
469/* check against BSD src/sys/sys/disklabel.h for consistency */
470
471#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
472#define BSD_MAXPARTITIONS 16
473#define OPENBSD_MAXPARTITIONS 16
474#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
475struct bsd_disklabel {
476 __le32 d_magic; /* the magic number */
477 __s16 d_type; /* drive type */
478 __s16 d_subtype; /* controller/d_type specific */
479 char d_typename[16]; /* type name, e.g. "eagle" */
480 char d_packname[16]; /* pack identifier */
481 __u32 d_secsize; /* # of bytes per sector */
482 __u32 d_nsectors; /* # of data sectors per track */
483 __u32 d_ntracks; /* # of tracks per cylinder */
484 __u32 d_ncylinders; /* # of data cylinders per unit */
485 __u32 d_secpercyl; /* # of data sectors per cylinder */
486 __u32 d_secperunit; /* # of data sectors per unit */
487 __u16 d_sparespertrack; /* # of spare sectors per track */
488 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
489 __u32 d_acylinders; /* # of alt. cylinders per unit */
490 __u16 d_rpm; /* rotational speed */
491 __u16 d_interleave; /* hardware sector interleave */
492 __u16 d_trackskew; /* sector 0 skew, per track */
493 __u16 d_cylskew; /* sector 0 skew, per cylinder */
494 __u32 d_headswitch; /* head switch time, usec */
495 __u32 d_trkseek; /* track-to-track seek, usec */
496 __u32 d_flags; /* generic flags */
497#define NDDATA 5
498 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
499#define NSPARE 5
500 __u32 d_spare[NSPARE]; /* reserved for future use */
501 __le32 d_magic2; /* the magic number (again) */
502 __le16 d_checksum; /* xor of data incl. partitions */
503
504 /* filesystem and partition information: */
505 __le16 d_npartitions; /* number of partitions in following */
506 __le32 d_bbsize; /* size of boot area at sn0, bytes */
507 __le32 d_sbsize; /* max size of fs superblock, bytes */
508 struct bsd_partition { /* the partition table */
509 __le32 p_size; /* number of sectors in partition */
510 __le32 p_offset; /* starting sector */
511 __le32 p_fsize; /* filesystem basic fragment size */
512 __u8 p_fstype; /* filesystem type, see below */
513 __u8 p_frag; /* filesystem fragments per block */
514 __le16 p_cpg; /* filesystem cylinders per group */
515 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
516};
517
518#endif /* CONFIG_BSD_DISKLABEL */
519
520#ifdef CONFIG_UNIXWARE_DISKLABEL
521/*
522 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
523 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
524 */
525
526#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
527#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
528#define UNIXWARE_NUMSLICE 16
529#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
530
531struct unixware_slice {
532 __le16 s_label; /* label */
533 __le16 s_flags; /* permission flags */
534 __le32 start_sect; /* starting sector */
535 __le32 nr_sects; /* number of sectors in slice */
536};
537
538struct unixware_disklabel {
539 __le32 d_type; /* drive type */
540 __le32 d_magic; /* the magic number */
541 __le32 d_version; /* version number */
542 char d_serial[12]; /* serial number of the device */
543 __le32 d_ncylinders; /* # of data cylinders per device */
544 __le32 d_ntracks; /* # of tracks per cylinder */
545 __le32 d_nsectors; /* # of data sectors per track */
546 __le32 d_secsize; /* # of bytes per sector */
547 __le32 d_part_start; /* # of first sector of this partition */
548 __le32 d_unknown1[12]; /* ? */
549 __le32 d_alt_tbl; /* byte offset of alternate table */
550 __le32 d_alt_len; /* byte length of alternate table */
551 __le32 d_phys_cyl; /* # of physical cylinders per device */
552 __le32 d_phys_trk; /* # of physical tracks per cylinder */
553 __le32 d_phys_sec; /* # of physical sectors per track */
554 __le32 d_phys_bytes; /* # of physical bytes per sector */
555 __le32 d_unknown2; /* ? */
556 __le32 d_unknown3; /* ? */
557 __le32 d_pad[8]; /* pad */
558
559 struct unixware_vtoc {
560 __le32 v_magic; /* the magic number */
561 __le32 v_version; /* version number */
562 char v_name[8]; /* volume name */
563 __le16 v_nslices; /* # of slices */
564 __le16 v_unknown1; /* ? */
565 __le32 v_reserved[10]; /* reserved */
566 struct unixware_slice
567 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
568 } vtoc;
569
570}; /* 408 */
571
572#endif /* CONFIG_UNIXWARE_DISKLABEL */
573
574#ifdef CONFIG_MINIX_SUBPARTITION
575# define MINIX_NR_SUBPARTITIONS 4
576#endif /* CONFIG_MINIX_SUBPARTITION */
577
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -0800578#define ADDPART_FLAG_NONE 0
579#define ADDPART_FLAG_RAID 1
580#define ADDPART_FLAG_WHOLEDISK 2
581
Tejun Heocf771cb2008-09-03 09:01:09 +0200582extern dev_t blk_lookup_devt(const char *name, int partno);
583extern char *disk_name (struct gendisk *hd, int partno, char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
Abdel Benamrouched805dda2008-07-25 01:48:25 -0700586extern int __must_check add_partition(struct gendisk *, int, sector_t, sector_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587extern void delete_partition(struct gendisk *, int);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700588extern void printk_all_partitions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Christoph Lameter19460892005-06-23 00:08:19 -0700590extern struct gendisk *alloc_disk_node(int minors, int node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591extern struct gendisk *alloc_disk(int minors);
592extern struct kobject *get_disk(struct gendisk *disk);
593extern void put_disk(struct gendisk *disk);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200594extern void blk_register_region(dev_t devt, unsigned long range,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 struct module *module,
596 struct kobject *(*probe)(dev_t, int *, void *),
597 int (*lock)(dev_t, void *),
598 void *data);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200599extern void blk_unregister_region(dev_t devt, unsigned long range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
Jens Axboe87c1efb2007-05-11 13:29:54 +0200601#else /* CONFIG_BLOCK */
602
603static inline void printk_all_partitions(void) { }
604
Tejun Heocf771cb2008-09-03 09:01:09 +0200605static inline dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200606{
607 dev_t devt = MKDEV(0, 0);
608 return devt;
609}
610
Jens Axboe87c1efb2007-05-11 13:29:54 +0200611#endif /* CONFIG_BLOCK */
David Howells93614012006-09-30 20:45:40 +0200612
David Woodhousea8ae50b2008-03-12 17:52:56 +0100613#endif /* _LINUX_GENHD_H */