blob: 04524c213de12ece9dbffd9cb27ae5018ddbd36d [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)
Tejun Heo548b10e2008-08-29 09:01:47 +020019#define dev_to_disk(device) container_of((device), struct gendisk, part0.__dev)
Tejun Heoed9e1982008-08-25 19:56:05 +090020#define dev_to_part(device) container_of((device), struct hd_struct, __dev)
Tejun Heo548b10e2008-08-29 09:01:47 +020021#define disk_to_dev(disk) (&(disk)->part0.__dev)
Tejun Heoed9e1982008-08-25 19:56:05 +090022#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
Tejun Heo689d6fa2008-08-25 19:56:16 +090061#define DISK_MAX_PARTS 256
62
David Woodhouse34186ef2006-04-25 14:07:57 +010063#include <linux/major.h>
64#include <linux/device.h>
65#include <linux/smp.h>
66#include <linux/string.h>
67#include <linux/fs.h>
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -070068#include <linux/workqueue.h>
David Woodhouse34186ef2006-04-25 14:07:57 +010069
Linus Torvalds1da177e2005-04-16 15:20:36 -070070struct partition {
71 unsigned char boot_ind; /* 0x80 - active */
72 unsigned char head; /* starting head */
73 unsigned char sector; /* starting sector */
74 unsigned char cyl; /* starting cylinder */
75 unsigned char sys_ind; /* What partition type */
76 unsigned char end_head; /* end head */
77 unsigned char end_sector; /* end sector */
78 unsigned char end_cyl; /* end cylinder */
79 __le32 start_sect; /* starting sector counting from 0 */
80 __le32 nr_sects; /* nr of sectors in partition */
81} __attribute__((packed));
82
Jerome Marchandea5c48a2008-02-08 11:04:09 +010083struct disk_stats {
84 unsigned long sectors[2]; /* READs and WRITEs */
85 unsigned long ios[2];
86 unsigned long merges[2];
87 unsigned long ticks[2];
88 unsigned long io_ticks;
89 unsigned long time_in_queue;
90};
91
Linus Torvalds1da177e2005-04-16 15:20:36 -070092struct hd_struct {
93 sector_t start_sect;
94 sector_t nr_sects;
Tejun Heoed9e1982008-08-25 19:56:05 +090095 struct device __dev;
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -080096 struct kobject *holder_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 int policy, partno;
Akinobu Mitac17bb492006-12-08 02:39:46 -080098#ifdef CONFIG_FAIL_MAKE_REQUEST
99 int make_it_fail;
100#endif
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100101 unsigned long stamp;
102 int in_flight;
103#ifdef CONFIG_SMP
104 struct disk_stats *dkstats;
105#else
106 struct disk_stats dkstats;
107#endif
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200108 struct rcu_head rcu_head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109};
110
111#define GENHD_FL_REMOVABLE 1
112#define GENHD_FL_DRIVERFS 2
Kristen Carlson Accardi86ce18d2007-05-23 13:57:38 -0700113#define GENHD_FL_MEDIA_CHANGE_NOTIFY 4
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define GENHD_FL_CD 8
115#define GENHD_FL_UP 16
116#define GENHD_FL_SUPPRESS_PARTITION_INFO 32
Tejun Heo689d6fa2008-08-25 19:56:16 +0900117#define GENHD_FL_EXT_DEVT 64 /* allow extended devt */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Tejun Heo540eed52008-08-25 19:56:15 +0900119#define BLK_SCSI_MAX_CMDS (256)
120#define BLK_SCSI_CMD_PER_LONG (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
121
122struct blk_scsi_cmd_filter {
123 unsigned long read_ok[BLK_SCSI_CMD_PER_LONG];
124 unsigned long write_ok[BLK_SCSI_CMD_PER_LONG];
125 struct kobject kobj;
126};
127
128struct disk_part_tbl {
129 struct rcu_head rcu_head;
130 int len;
131 struct hd_struct *part[];
132};
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134struct gendisk {
Tejun Heo689d6fa2008-08-25 19:56:16 +0900135 /* major, first_minor and minors are input parameters only,
136 * don't use directly. Use disk_devt() and disk_max_parts().
Tejun Heof331c022008-09-03 09:01:48 +0200137 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int major; /* major number of driver */
139 int first_minor;
140 int minors; /* maximum number of minors, =1 for
141 * disks that can't be partitioned. */
Tejun Heof331c022008-09-03 09:01:48 +0200142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 char disk_name[32]; /* name of major driver */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200144
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200145 /* Array of pointers to partitions indexed by partno.
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200146 * Protected with matching bdev lock but stat and other
147 * non-critical accesses use RCU. Always access through
148 * helpers.
149 */
Tejun Heo540eed52008-08-25 19:56:15 +0900150 struct disk_part_tbl *part_tbl;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200151 struct hd_struct part0;
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 struct block_device_operations *fops;
154 struct request_queue *queue;
155 void *private_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
157 int flags;
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200158 struct device *driverfs_dev; // FIXME: remove
Jun'ichi Nomura6a4d44c2006-03-27 01:17:55 -0800159 struct kobject *slave_dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 struct timer_rand_state *random;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 atomic_t sync_io; /* RAID */
Kristen Carlson Accardi8ce7ad72007-05-23 13:57:38 -0700164 struct work_struct async_notify;
Martin K. Petersen7ba1ba12008-06-30 20:04:41 +0200165#ifdef CONFIG_BLK_DEV_INTEGRITY
166 struct blk_integrity *integrity;
167#endif
Tejun Heo540eed52008-08-25 19:56:15 +0900168 int node_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169};
170
Tejun Heo310a2c12008-08-25 19:47:17 +0900171static inline struct gendisk *part_to_disk(struct hd_struct *part)
172{
Tejun Heo548b10e2008-08-29 09:01:47 +0200173 if (likely(part)) {
174 if (part->partno)
175 return dev_to_disk(part_to_dev(part)->parent);
176 else
177 return dev_to_disk(part_to_dev(part));
178 }
Tejun Heo310a2c12008-08-25 19:47:17 +0900179 return NULL;
180}
181
Tejun Heof331c022008-09-03 09:01:48 +0200182static inline int disk_max_parts(struct gendisk *disk)
183{
Tejun Heo689d6fa2008-08-25 19:56:16 +0900184 if (disk->flags & GENHD_FL_EXT_DEVT)
185 return DISK_MAX_PARTS;
186 return disk->minors;
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200187}
188
189static inline bool disk_partitionable(struct gendisk *disk)
190{
191 return disk_max_parts(disk) > 1;
Tejun Heof331c022008-09-03 09:01:48 +0200192}
193
194static inline dev_t disk_devt(struct gendisk *disk)
195{
Tejun Heoed9e1982008-08-25 19:56:05 +0900196 return disk_to_dev(disk)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200197}
198
199static inline dev_t part_devt(struct hd_struct *part)
200{
Tejun Heoed9e1982008-08-25 19:56:05 +0900201 return part_to_dev(part)->devt;
Tejun Heof331c022008-09-03 09:01:48 +0200202}
203
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200204extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno);
205
206static inline void disk_put_part(struct hd_struct *part)
207{
208 if (likely(part))
Tejun Heoed9e1982008-08-25 19:56:05 +0900209 put_device(part_to_dev(part));
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200210}
211
212/*
213 * Smarter partition iterator without context limits.
214 */
215#define DISK_PITER_REVERSE (1 << 0) /* iterate in the reverse direction */
216#define DISK_PITER_INCL_EMPTY (1 << 1) /* include 0-sized parts */
Tejun Heob5d0b9d2008-09-03 09:06:42 +0200217#define DISK_PITER_INCL_PART0 (1 << 2) /* include partition 0 */
Tejun Heoe71bf0d2008-09-03 09:03:02 +0200218
219struct disk_part_iter {
220 struct gendisk *disk;
221 struct hd_struct *part;
222 int idx;
223 unsigned int flags;
224};
225
226extern void disk_part_iter_init(struct disk_part_iter *piter,
227 struct gendisk *disk, unsigned int flags);
228extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter);
229extern void disk_part_iter_exit(struct disk_part_iter *piter);
230
231extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
232 sector_t sector);
233
Tejun Heoc9959052008-08-25 19:47:21 +0900234/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * Macros to operate on percpu disk statistics:
236 *
Tejun Heoc9959052008-08-25 19:47:21 +0900237 * {disk|part|all}_stat_{add|sub|inc|dec}() modify the stat counters
238 * and should be called between disk_stat_lock() and
239 * disk_stat_unlock().
240 *
241 * part_stat_read() can be called at any time.
242 *
243 * part_stat_{add|set_all}() and {init|free}_part_stats are for
244 * internal use only.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 */
246#ifdef CONFIG_SMP
Tejun Heo074a7ac2008-08-25 19:56:14 +0900247#define part_stat_lock() ({ rcu_read_lock(); get_cpu(); })
248#define part_stat_unlock() do { put_cpu(); rcu_read_unlock(); } while (0)
Tejun Heoc9959052008-08-25 19:47:21 +0900249
Tejun Heo074a7ac2008-08-25 19:56:14 +0900250#define __part_stat_add(cpu, part, field, addnd) \
251 (per_cpu_ptr((part)->dkstats, (cpu))->field += (addnd))
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100252
253#define part_stat_read(part, field) \
254({ \
Tejun Heo074a7ac2008-08-25 19:56:14 +0900255 typeof((part)->dkstats->field) res = 0; \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100256 int i; \
257 for_each_possible_cpu(i) \
Tejun Heo074a7ac2008-08-25 19:56:14 +0900258 res += per_cpu_ptr((part)->dkstats, i)->field; \
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100259 res; \
260})
261
Jens Axboe28f13702008-05-07 10:15:46 +0200262static inline void part_stat_set_all(struct hd_struct *part, int value)
263{
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100264 int i;
Jens Axboe28f13702008-05-07 10:15:46 +0200265
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100266 for_each_possible_cpu(i)
267 memset(per_cpu_ptr(part->dkstats, i), value,
Jens Axboe28f13702008-05-07 10:15:46 +0200268 sizeof(struct disk_stats));
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100269}
Tejun Heoc9959052008-08-25 19:47:21 +0900270
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100271static inline int init_part_stats(struct hd_struct *part)
272{
273 part->dkstats = alloc_percpu(struct disk_stats);
274 if (!part->dkstats)
275 return 0;
276 return 1;
277}
278
279static inline void free_part_stats(struct hd_struct *part)
280{
281 free_percpu(part->dkstats);
282}
283
Tejun Heo074a7ac2008-08-25 19:56:14 +0900284#else /* !CONFIG_SMP */
285#define part_stat_lock() ({ rcu_read_lock(); 0; })
286#define part_stat_unlock() rcu_read_unlock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
Tejun Heo074a7ac2008-08-25 19:56:14 +0900288#define __part_stat_add(cpu, part, field, addnd) \
289 ((part)->dkstats.field += addnd)
290
291#define part_stat_read(part, field) ((part)->dkstats.field)
292
293static inline void part_stat_set_all(struct hd_struct *part, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294{
Tejun Heo074a7ac2008-08-25 19:56:14 +0900295 memset(&part->dkstats, value, sizeof(struct disk_stats));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
Jerome Marchandea5c48a2008-02-08 11:04:09 +0100297
298static inline int init_part_stats(struct hd_struct *part)
299{
300 return 1;
301}
302
303static inline void free_part_stats(struct hd_struct *part)
304{
305}
Tejun Heo074a7ac2008-08-25 19:56:14 +0900306
307#endif /* CONFIG_SMP */
308
309#define part_stat_add(cpu, part, field, addnd) do { \
310 __part_stat_add((cpu), (part), field, addnd); \
311 if ((part)->partno) \
312 __part_stat_add((cpu), &part_to_disk((part))->part0, \
313 field, addnd); \
314} while (0)
315
316#define part_stat_dec(cpu, gendiskp, field) \
317 part_stat_add(cpu, gendiskp, field, -1)
318#define part_stat_inc(cpu, gendiskp, field) \
319 part_stat_add(cpu, gendiskp, field, 1)
320#define part_stat_sub(cpu, gendiskp, field, subnd) \
321 part_stat_add(cpu, gendiskp, field, -subnd)
322
323static inline void part_inc_in_flight(struct hd_struct *part)
324{
325 part->in_flight++;
326 if (part->partno)
327 part_to_disk(part)->part0.in_flight++;
328}
329
330static inline void part_dec_in_flight(struct hd_struct *part)
331{
332 part->in_flight--;
333 if (part->partno)
334 part_to_disk(part)->part0.in_flight--;
335}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337/* drivers/block/ll_rw_blk.c */
Tejun Heoc9959052008-08-25 19:47:21 +0900338extern void part_round_stats(int cpu, struct hd_struct *part);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/* drivers/block/genhd.c */
Neil Hormanac204272005-06-23 00:09:11 -0700341extern int get_blkdev_list(char *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342extern void add_disk(struct gendisk *disk);
343extern void del_gendisk(struct gendisk *gp);
344extern void unlink_gendisk(struct gendisk *gp);
Tejun Heocf771cb2008-09-03 09:01:09 +0200345extern struct gendisk *get_gendisk(dev_t dev, int *partno);
Tejun Heof331c022008-09-03 09:01:48 +0200346extern struct block_device *bdget_disk(struct gendisk *disk, int partno);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
348extern void set_device_ro(struct block_device *bdev, int flag);
349extern void set_disk_ro(struct gendisk *disk, int flag);
350
Tejun Heob7db9952008-08-25 19:56:10 +0900351static inline int get_disk_ro(struct gendisk *disk)
352{
353 return disk->part0.policy;
354}
355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/* drivers/char/random.c */
357extern void add_disk_randomness(struct gendisk *disk);
358extern void rand_initialize_disk(struct gendisk *disk);
359
360static inline sector_t get_start_sect(struct block_device *bdev)
361{
Tejun Heo0762b8b2008-08-25 19:56:12 +0900362 return bdev->bd_part->start_sect;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
364static inline sector_t get_capacity(struct gendisk *disk)
365{
Tejun Heo80795ae2008-08-25 19:56:07 +0900366 return disk->part0.nr_sects;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368static inline void set_capacity(struct gendisk *disk, sector_t size)
369{
Tejun Heo80795ae2008-08-25 19:56:07 +0900370 disk->part0.nr_sects = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373#ifdef CONFIG_SOLARIS_X86_PARTITION
374
Mark Fortescueb84d8792007-07-25 18:30:08 -0700375#define SOLARIS_X86_NUMSLICE 16
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376#define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
377
378struct solaris_x86_slice {
379 __le16 s_tag; /* ID tag of partition */
380 __le16 s_flag; /* permission flags */
381 __le32 s_start; /* start sector no of partition */
382 __le32 s_size; /* # of blocks in partition */
383};
384
385struct solaris_x86_vtoc {
386 unsigned int v_bootinfo[3]; /* info needed by mboot (unsupported) */
387 __le32 v_sanity; /* to verify vtoc sanity */
388 __le32 v_version; /* layout version */
389 char v_volume[8]; /* volume name */
390 __le16 v_sectorsz; /* sector size in bytes */
391 __le16 v_nparts; /* number of partitions */
392 unsigned int v_reserved[10]; /* free space */
393 struct solaris_x86_slice
394 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
395 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
396 char v_asciilabel[128]; /* for compatibility */
397};
398
399#endif /* CONFIG_SOLARIS_X86_PARTITION */
400
401#ifdef CONFIG_BSD_DISKLABEL
402/*
403 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
404 * updated by Marc Espie <Marc.Espie@openbsd.org>
405 */
406
407/* check against BSD src/sys/sys/disklabel.h for consistency */
408
409#define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
410#define BSD_MAXPARTITIONS 16
411#define OPENBSD_MAXPARTITIONS 16
412#define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
413struct bsd_disklabel {
414 __le32 d_magic; /* the magic number */
415 __s16 d_type; /* drive type */
416 __s16 d_subtype; /* controller/d_type specific */
417 char d_typename[16]; /* type name, e.g. "eagle" */
418 char d_packname[16]; /* pack identifier */
419 __u32 d_secsize; /* # of bytes per sector */
420 __u32 d_nsectors; /* # of data sectors per track */
421 __u32 d_ntracks; /* # of tracks per cylinder */
422 __u32 d_ncylinders; /* # of data cylinders per unit */
423 __u32 d_secpercyl; /* # of data sectors per cylinder */
424 __u32 d_secperunit; /* # of data sectors per unit */
425 __u16 d_sparespertrack; /* # of spare sectors per track */
426 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
427 __u32 d_acylinders; /* # of alt. cylinders per unit */
428 __u16 d_rpm; /* rotational speed */
429 __u16 d_interleave; /* hardware sector interleave */
430 __u16 d_trackskew; /* sector 0 skew, per track */
431 __u16 d_cylskew; /* sector 0 skew, per cylinder */
432 __u32 d_headswitch; /* head switch time, usec */
433 __u32 d_trkseek; /* track-to-track seek, usec */
434 __u32 d_flags; /* generic flags */
435#define NDDATA 5
436 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
437#define NSPARE 5
438 __u32 d_spare[NSPARE]; /* reserved for future use */
439 __le32 d_magic2; /* the magic number (again) */
440 __le16 d_checksum; /* xor of data incl. partitions */
441
442 /* filesystem and partition information: */
443 __le16 d_npartitions; /* number of partitions in following */
444 __le32 d_bbsize; /* size of boot area at sn0, bytes */
445 __le32 d_sbsize; /* max size of fs superblock, bytes */
446 struct bsd_partition { /* the partition table */
447 __le32 p_size; /* number of sectors in partition */
448 __le32 p_offset; /* starting sector */
449 __le32 p_fsize; /* filesystem basic fragment size */
450 __u8 p_fstype; /* filesystem type, see below */
451 __u8 p_frag; /* filesystem fragments per block */
452 __le16 p_cpg; /* filesystem cylinders per group */
453 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
454};
455
456#endif /* CONFIG_BSD_DISKLABEL */
457
458#ifdef CONFIG_UNIXWARE_DISKLABEL
459/*
460 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
461 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
462 */
463
464#define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
465#define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
466#define UNIXWARE_NUMSLICE 16
467#define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
468
469struct unixware_slice {
470 __le16 s_label; /* label */
471 __le16 s_flags; /* permission flags */
472 __le32 start_sect; /* starting sector */
473 __le32 nr_sects; /* number of sectors in slice */
474};
475
476struct unixware_disklabel {
477 __le32 d_type; /* drive type */
478 __le32 d_magic; /* the magic number */
479 __le32 d_version; /* version number */
480 char d_serial[12]; /* serial number of the device */
481 __le32 d_ncylinders; /* # of data cylinders per device */
482 __le32 d_ntracks; /* # of tracks per cylinder */
483 __le32 d_nsectors; /* # of data sectors per track */
484 __le32 d_secsize; /* # of bytes per sector */
485 __le32 d_part_start; /* # of first sector of this partition */
486 __le32 d_unknown1[12]; /* ? */
487 __le32 d_alt_tbl; /* byte offset of alternate table */
488 __le32 d_alt_len; /* byte length of alternate table */
489 __le32 d_phys_cyl; /* # of physical cylinders per device */
490 __le32 d_phys_trk; /* # of physical tracks per cylinder */
491 __le32 d_phys_sec; /* # of physical sectors per track */
492 __le32 d_phys_bytes; /* # of physical bytes per sector */
493 __le32 d_unknown2; /* ? */
494 __le32 d_unknown3; /* ? */
495 __le32 d_pad[8]; /* pad */
496
497 struct unixware_vtoc {
498 __le32 v_magic; /* the magic number */
499 __le32 v_version; /* version number */
500 char v_name[8]; /* volume name */
501 __le16 v_nslices; /* # of slices */
502 __le16 v_unknown1; /* ? */
503 __le32 v_reserved[10]; /* reserved */
504 struct unixware_slice
505 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
506 } vtoc;
507
508}; /* 408 */
509
510#endif /* CONFIG_UNIXWARE_DISKLABEL */
511
512#ifdef CONFIG_MINIX_SUBPARTITION
513# define MINIX_NR_SUBPARTITIONS 4
514#endif /* CONFIG_MINIX_SUBPARTITION */
515
Fabio Massimo Di Nittod18d7682007-02-10 23:50:00 -0800516#define ADDPART_FLAG_NONE 0
517#define ADDPART_FLAG_RAID 1
518#define ADDPART_FLAG_WHOLEDISK 2
519
Tejun Heobcce3de2008-08-25 19:47:22 +0900520extern int blk_alloc_devt(struct hd_struct *part, dev_t *devt);
521extern void blk_free_devt(dev_t devt);
Tejun Heocf771cb2008-09-03 09:01:09 +0200522extern dev_t blk_lookup_devt(const char *name, int partno);
523extern char *disk_name (struct gendisk *hd, int partno, char *buf);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
Tejun Heo540eed52008-08-25 19:56:15 +0900525extern int disk_expand_part_tbl(struct gendisk *disk, int target);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
Abdel Benamrouched805dda2008-07-25 01:48:25 -0700527extern int __must_check add_partition(struct gendisk *, int, sector_t, sector_t, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528extern void delete_partition(struct gendisk *, int);
Dave Gilbertdd2a3452007-05-09 02:33:24 -0700529extern void printk_all_partitions(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Christoph Lameter19460892005-06-23 00:08:19 -0700531extern struct gendisk *alloc_disk_node(int minors, int node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532extern struct gendisk *alloc_disk(int minors);
533extern struct kobject *get_disk(struct gendisk *disk);
534extern void put_disk(struct gendisk *disk);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200535extern void blk_register_region(dev_t devt, unsigned long range,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 struct module *module,
537 struct kobject *(*probe)(dev_t, int *, void *),
538 int (*lock)(dev_t, void *),
539 void *data);
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200540extern void blk_unregister_region(dev_t devt, unsigned long range);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Tejun Heoe5610522008-08-25 19:56:09 +0900542extern ssize_t part_size_show(struct device *dev,
543 struct device_attribute *attr, char *buf);
Tejun Heo074a7ac2008-08-25 19:56:14 +0900544extern ssize_t part_stat_show(struct device *dev,
545 struct device_attribute *attr, char *buf);
Tejun Heoeddb2e22008-08-25 19:56:13 +0900546#ifdef CONFIG_FAIL_MAKE_REQUEST
547extern ssize_t part_fail_show(struct device *dev,
548 struct device_attribute *attr, char *buf);
549extern ssize_t part_fail_store(struct device *dev,
550 struct device_attribute *attr,
551 const char *buf, size_t count);
552#endif /* CONFIG_FAIL_MAKE_REQUEST */
Tejun Heoe5610522008-08-25 19:56:09 +0900553
Jens Axboe87c1efb2007-05-11 13:29:54 +0200554#else /* CONFIG_BLOCK */
555
556static inline void printk_all_partitions(void) { }
557
Tejun Heocf771cb2008-09-03 09:01:09 +0200558static inline dev_t blk_lookup_devt(const char *name, int partno)
Kay Sieversedfaa7c2007-05-21 22:08:01 +0200559{
560 dev_t devt = MKDEV(0, 0);
561 return devt;
562}
563
Jens Axboe87c1efb2007-05-11 13:29:54 +0200564#endif /* CONFIG_BLOCK */
David Howells93614012006-09-30 20:45:40 +0200565
David Woodhousea8ae50b2008-03-12 17:52:56 +0100566#endif /* _LINUX_GENHD_H */