[PATCH] dm/md dependency tree in sysfs: holders/slaves subdirectory
[linux-2.6/x86.git] / include / linux / genhd.h
blobeea61cc8fac1b7d4e041007c906401a9de975a2d
1 #ifndef _LINUX_GENHD_H
2 #define _LINUX_GENHD_H
4 /*
5 * genhd.h Copyright (C) 1992 Drew Eckhardt
6 * Generic hard disk header file by
7 * Drew Eckhardt
9 * <drew@colorado.edu>
12 #include <linux/config.h>
13 #include <linux/types.h>
14 #include <linux/major.h>
15 #include <linux/device.h>
16 #include <linux/smp.h>
17 #include <linux/string.h>
18 #include <linux/fs.h>
20 enum {
21 /* These three have identical behaviour; use the second one if DOS FDISK gets
22 confused about extended/logical partitions starting past cylinder 1023. */
23 DOS_EXTENDED_PARTITION = 5,
24 LINUX_EXTENDED_PARTITION = 0x85,
25 WIN98_EXTENDED_PARTITION = 0x0f,
27 LINUX_SWAP_PARTITION = 0x82,
28 LINUX_RAID_PARTITION = 0xfd, /* autodetect RAID partition */
30 SOLARIS_X86_PARTITION = LINUX_SWAP_PARTITION,
31 NEW_SOLARIS_X86_PARTITION = 0xbf,
33 DM6_AUX1PARTITION = 0x51, /* no DDO: use xlated geom */
34 DM6_AUX3PARTITION = 0x53, /* no DDO: use xlated geom */
35 DM6_PARTITION = 0x54, /* has DDO: use xlated geom & offset */
36 EZD_PARTITION = 0x55, /* EZ-DRIVE */
38 FREEBSD_PARTITION = 0xa5, /* FreeBSD Partition ID */
39 OPENBSD_PARTITION = 0xa6, /* OpenBSD Partition ID */
40 NETBSD_PARTITION = 0xa9, /* NetBSD Partition ID */
41 BSDI_PARTITION = 0xb7, /* BSDI Partition ID */
42 MINIX_PARTITION = 0x81, /* Minix Partition ID */
43 UNIXWARE_PARTITION = 0x63, /* Same as GNU_HURD and SCO Unix */
46 #ifndef __KERNEL__
48 struct partition {
49 unsigned char boot_ind; /* 0x80 - active */
50 unsigned char head; /* starting head */
51 unsigned char sector; /* starting sector */
52 unsigned char cyl; /* starting cylinder */
53 unsigned char sys_ind; /* What partition type */
54 unsigned char end_head; /* end head */
55 unsigned char end_sector; /* end sector */
56 unsigned char end_cyl; /* end cylinder */
57 unsigned int start_sect; /* starting sector counting from 0 */
58 unsigned int nr_sects; /* nr of sectors in partition */
59 } __attribute__((packed));
61 #endif
63 #ifdef __KERNEL__
64 struct partition {
65 unsigned char boot_ind; /* 0x80 - active */
66 unsigned char head; /* starting head */
67 unsigned char sector; /* starting sector */
68 unsigned char cyl; /* starting cylinder */
69 unsigned char sys_ind; /* What partition type */
70 unsigned char end_head; /* end head */
71 unsigned char end_sector; /* end sector */
72 unsigned char end_cyl; /* end cylinder */
73 __le32 start_sect; /* starting sector counting from 0 */
74 __le32 nr_sects; /* nr of sectors in partition */
75 } __attribute__((packed));
77 struct hd_struct {
78 sector_t start_sect;
79 sector_t nr_sects;
80 struct kobject kobj;
81 #ifdef CONFIG_SYSFS
82 struct kobject *holder_dir;
83 #endif
84 unsigned ios[2], sectors[2]; /* READs and WRITEs */
85 int policy, partno;
88 #define GENHD_FL_REMOVABLE 1
89 #define GENHD_FL_DRIVERFS 2
90 #define GENHD_FL_CD 8
91 #define GENHD_FL_UP 16
92 #define GENHD_FL_SUPPRESS_PARTITION_INFO 32
94 struct disk_stats {
95 unsigned sectors[2]; /* READs and WRITEs */
96 unsigned ios[2];
97 unsigned merges[2];
98 unsigned ticks[2];
99 unsigned io_ticks;
100 unsigned time_in_queue;
103 struct gendisk {
104 int major; /* major number of driver */
105 int first_minor;
106 int minors; /* maximum number of minors, =1 for
107 * disks that can't be partitioned. */
108 char disk_name[32]; /* name of major driver */
109 struct hd_struct **part; /* [indexed by minor] */
110 struct block_device_operations *fops;
111 struct request_queue *queue;
112 void *private_data;
113 sector_t capacity;
115 int flags;
116 char devfs_name[64]; /* devfs crap */
117 int number; /* more of the same */
118 struct device *driverfs_dev;
119 struct kobject kobj;
120 #ifdef CONFIG_SYSFS
121 struct kobject *holder_dir;
122 struct kobject *slave_dir;
123 #endif
125 struct timer_rand_state *random;
126 int policy;
128 atomic_t sync_io; /* RAID */
129 unsigned long stamp;
130 int in_flight;
131 #ifdef CONFIG_SMP
132 struct disk_stats *dkstats;
133 #else
134 struct disk_stats dkstats;
135 #endif
138 /* Structure for sysfs attributes on block devices */
139 struct disk_attribute {
140 struct attribute attr;
141 ssize_t (*show)(struct gendisk *, char *);
142 ssize_t (*store)(struct gendisk *, const char *, size_t);
146 * Macros to operate on percpu disk statistics:
148 * The __ variants should only be called in critical sections. The full
149 * variants disable/enable preemption.
151 #ifdef CONFIG_SMP
152 #define __disk_stat_add(gendiskp, field, addnd) \
153 (per_cpu_ptr(gendiskp->dkstats, smp_processor_id())->field += addnd)
155 #define disk_stat_read(gendiskp, field) \
156 ({ \
157 typeof(gendiskp->dkstats->field) res = 0; \
158 int i; \
159 for_each_cpu(i) \
160 res += per_cpu_ptr(gendiskp->dkstats, i)->field; \
161 res; \
164 static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) {
165 int i;
166 for_each_cpu(i)
167 memset(per_cpu_ptr(gendiskp->dkstats, i), value,
168 sizeof (struct disk_stats));
171 #else
172 #define __disk_stat_add(gendiskp, field, addnd) \
173 (gendiskp->dkstats.field += addnd)
174 #define disk_stat_read(gendiskp, field) (gendiskp->dkstats.field)
176 static inline void disk_stat_set_all(struct gendisk *gendiskp, int value) {
177 memset(&gendiskp->dkstats, value, sizeof (struct disk_stats));
179 #endif
181 #define disk_stat_add(gendiskp, field, addnd) \
182 do { \
183 preempt_disable(); \
184 __disk_stat_add(gendiskp, field, addnd); \
185 preempt_enable(); \
186 } while (0)
188 #define __disk_stat_dec(gendiskp, field) __disk_stat_add(gendiskp, field, -1)
189 #define disk_stat_dec(gendiskp, field) disk_stat_add(gendiskp, field, -1)
191 #define __disk_stat_inc(gendiskp, field) __disk_stat_add(gendiskp, field, 1)
192 #define disk_stat_inc(gendiskp, field) disk_stat_add(gendiskp, field, 1)
194 #define __disk_stat_sub(gendiskp, field, subnd) \
195 __disk_stat_add(gendiskp, field, -subnd)
196 #define disk_stat_sub(gendiskp, field, subnd) \
197 disk_stat_add(gendiskp, field, -subnd)
200 /* Inlines to alloc and free disk stats in struct gendisk */
201 #ifdef CONFIG_SMP
202 static inline int init_disk_stats(struct gendisk *disk)
204 disk->dkstats = alloc_percpu(struct disk_stats);
205 if (!disk->dkstats)
206 return 0;
207 return 1;
210 static inline void free_disk_stats(struct gendisk *disk)
212 free_percpu(disk->dkstats);
214 #else /* CONFIG_SMP */
215 static inline int init_disk_stats(struct gendisk *disk)
217 return 1;
220 static inline void free_disk_stats(struct gendisk *disk)
223 #endif /* CONFIG_SMP */
225 /* drivers/block/ll_rw_blk.c */
226 extern void disk_round_stats(struct gendisk *disk);
228 /* drivers/block/genhd.c */
229 extern int get_blkdev_list(char *, int);
230 extern void add_disk(struct gendisk *disk);
231 extern void del_gendisk(struct gendisk *gp);
232 extern void unlink_gendisk(struct gendisk *gp);
233 extern struct gendisk *get_gendisk(dev_t dev, int *part);
235 extern void set_device_ro(struct block_device *bdev, int flag);
236 extern void set_disk_ro(struct gendisk *disk, int flag);
238 /* drivers/char/random.c */
239 extern void add_disk_randomness(struct gendisk *disk);
240 extern void rand_initialize_disk(struct gendisk *disk);
242 static inline sector_t get_start_sect(struct block_device *bdev)
244 return bdev->bd_contains == bdev ? 0 : bdev->bd_part->start_sect;
246 static inline sector_t get_capacity(struct gendisk *disk)
248 return disk->capacity;
250 static inline void set_capacity(struct gendisk *disk, sector_t size)
252 disk->capacity = size;
255 #endif /* __KERNEL__ */
257 #ifdef CONFIG_SOLARIS_X86_PARTITION
259 #define SOLARIS_X86_NUMSLICE 8
260 #define SOLARIS_X86_VTOC_SANE (0x600DDEEEUL)
262 struct solaris_x86_slice {
263 __le16 s_tag; /* ID tag of partition */
264 __le16 s_flag; /* permission flags */
265 __le32 s_start; /* start sector no of partition */
266 __le32 s_size; /* # of blocks in partition */
269 struct solaris_x86_vtoc {
270 unsigned int v_bootinfo[3]; /* info needed by mboot (unsupported) */
271 __le32 v_sanity; /* to verify vtoc sanity */
272 __le32 v_version; /* layout version */
273 char v_volume[8]; /* volume name */
274 __le16 v_sectorsz; /* sector size in bytes */
275 __le16 v_nparts; /* number of partitions */
276 unsigned int v_reserved[10]; /* free space */
277 struct solaris_x86_slice
278 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
279 unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
280 char v_asciilabel[128]; /* for compatibility */
283 #endif /* CONFIG_SOLARIS_X86_PARTITION */
285 #ifdef CONFIG_BSD_DISKLABEL
287 * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
288 * updated by Marc Espie <Marc.Espie@openbsd.org>
291 /* check against BSD src/sys/sys/disklabel.h for consistency */
293 #define BSD_DISKMAGIC (0x82564557UL) /* The disk magic number */
294 #define BSD_MAXPARTITIONS 16
295 #define OPENBSD_MAXPARTITIONS 16
296 #define BSD_FS_UNUSED 0 /* disklabel unused partition entry ID */
297 struct bsd_disklabel {
298 __le32 d_magic; /* the magic number */
299 __s16 d_type; /* drive type */
300 __s16 d_subtype; /* controller/d_type specific */
301 char d_typename[16]; /* type name, e.g. "eagle" */
302 char d_packname[16]; /* pack identifier */
303 __u32 d_secsize; /* # of bytes per sector */
304 __u32 d_nsectors; /* # of data sectors per track */
305 __u32 d_ntracks; /* # of tracks per cylinder */
306 __u32 d_ncylinders; /* # of data cylinders per unit */
307 __u32 d_secpercyl; /* # of data sectors per cylinder */
308 __u32 d_secperunit; /* # of data sectors per unit */
309 __u16 d_sparespertrack; /* # of spare sectors per track */
310 __u16 d_sparespercyl; /* # of spare sectors per cylinder */
311 __u32 d_acylinders; /* # of alt. cylinders per unit */
312 __u16 d_rpm; /* rotational speed */
313 __u16 d_interleave; /* hardware sector interleave */
314 __u16 d_trackskew; /* sector 0 skew, per track */
315 __u16 d_cylskew; /* sector 0 skew, per cylinder */
316 __u32 d_headswitch; /* head switch time, usec */
317 __u32 d_trkseek; /* track-to-track seek, usec */
318 __u32 d_flags; /* generic flags */
319 #define NDDATA 5
320 __u32 d_drivedata[NDDATA]; /* drive-type specific information */
321 #define NSPARE 5
322 __u32 d_spare[NSPARE]; /* reserved for future use */
323 __le32 d_magic2; /* the magic number (again) */
324 __le16 d_checksum; /* xor of data incl. partitions */
326 /* filesystem and partition information: */
327 __le16 d_npartitions; /* number of partitions in following */
328 __le32 d_bbsize; /* size of boot area at sn0, bytes */
329 __le32 d_sbsize; /* max size of fs superblock, bytes */
330 struct bsd_partition { /* the partition table */
331 __le32 p_size; /* number of sectors in partition */
332 __le32 p_offset; /* starting sector */
333 __le32 p_fsize; /* filesystem basic fragment size */
334 __u8 p_fstype; /* filesystem type, see below */
335 __u8 p_frag; /* filesystem fragments per block */
336 __le16 p_cpg; /* filesystem cylinders per group */
337 } d_partitions[BSD_MAXPARTITIONS]; /* actually may be more */
340 #endif /* CONFIG_BSD_DISKLABEL */
342 #ifdef CONFIG_UNIXWARE_DISKLABEL
344 * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
345 * and Krzysztof G. Baranowski <kgb@knm.org.pl>
348 #define UNIXWARE_DISKMAGIC (0xCA5E600DUL) /* The disk magic number */
349 #define UNIXWARE_DISKMAGIC2 (0x600DDEEEUL) /* The slice table magic nr */
350 #define UNIXWARE_NUMSLICE 16
351 #define UNIXWARE_FS_UNUSED 0 /* Unused slice entry ID */
353 struct unixware_slice {
354 __le16 s_label; /* label */
355 __le16 s_flags; /* permission flags */
356 __le32 start_sect; /* starting sector */
357 __le32 nr_sects; /* number of sectors in slice */
360 struct unixware_disklabel {
361 __le32 d_type; /* drive type */
362 __le32 d_magic; /* the magic number */
363 __le32 d_version; /* version number */
364 char d_serial[12]; /* serial number of the device */
365 __le32 d_ncylinders; /* # of data cylinders per device */
366 __le32 d_ntracks; /* # of tracks per cylinder */
367 __le32 d_nsectors; /* # of data sectors per track */
368 __le32 d_secsize; /* # of bytes per sector */
369 __le32 d_part_start; /* # of first sector of this partition */
370 __le32 d_unknown1[12]; /* ? */
371 __le32 d_alt_tbl; /* byte offset of alternate table */
372 __le32 d_alt_len; /* byte length of alternate table */
373 __le32 d_phys_cyl; /* # of physical cylinders per device */
374 __le32 d_phys_trk; /* # of physical tracks per cylinder */
375 __le32 d_phys_sec; /* # of physical sectors per track */
376 __le32 d_phys_bytes; /* # of physical bytes per sector */
377 __le32 d_unknown2; /* ? */
378 __le32 d_unknown3; /* ? */
379 __le32 d_pad[8]; /* pad */
381 struct unixware_vtoc {
382 __le32 v_magic; /* the magic number */
383 __le32 v_version; /* version number */
384 char v_name[8]; /* volume name */
385 __le16 v_nslices; /* # of slices */
386 __le16 v_unknown1; /* ? */
387 __le32 v_reserved[10]; /* reserved */
388 struct unixware_slice
389 v_slice[UNIXWARE_NUMSLICE]; /* slice headers */
390 } vtoc;
392 }; /* 408 */
394 #endif /* CONFIG_UNIXWARE_DISKLABEL */
396 #ifdef CONFIG_MINIX_SUBPARTITION
397 # define MINIX_NR_SUBPARTITIONS 4
398 #endif /* CONFIG_MINIX_SUBPARTITION */
400 #ifdef __KERNEL__
402 char *disk_name (struct gendisk *hd, int part, char *buf);
404 extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
405 extern void add_partition(struct gendisk *, int, sector_t, sector_t);
406 extern void delete_partition(struct gendisk *, int);
408 extern struct gendisk *alloc_disk_node(int minors, int node_id);
409 extern struct gendisk *alloc_disk(int minors);
410 extern struct kobject *get_disk(struct gendisk *disk);
411 extern void put_disk(struct gendisk *disk);
413 extern void blk_register_region(dev_t dev, unsigned long range,
414 struct module *module,
415 struct kobject *(*probe)(dev_t, int *, void *),
416 int (*lock)(dev_t, void *),
417 void *data);
418 extern void blk_unregister_region(dev_t dev, unsigned long range);
420 static inline struct block_device *bdget_disk(struct gendisk *disk, int index)
422 return bdget(MKDEV(disk->major, disk->first_minor) + index);
425 #endif
427 #endif