]> git.karo-electronics.de Git - mv-sheeva.git/blob - include/linux/genhd.h
block: move register_disk() and del_gendisk() to block/genhd.c
[mv-sheeva.git] / include / linux / genhd.h
1 #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
12 #include <linux/types.h>
13 #include <linux/kdev_t.h>
14 #include <linux/rcupdate.h>
15 #include <linux/slab.h>
16
17 #ifdef CONFIG_BLOCK
18
19 #define kobj_to_dev(k)          container_of((k), struct device, kobj)
20 #define dev_to_disk(device)     container_of((device), struct gendisk, part0.__dev)
21 #define dev_to_part(device)     container_of((device), struct hd_struct, __dev)
22 #define disk_to_dev(disk)       (&(disk)->part0.__dev)
23 #define part_to_dev(part)       (&((part)->__dev))
24
25 extern struct device_type part_type;
26 extern struct kobject *block_depr;
27 extern struct class block_class;
28
29 enum {
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
36         SUN_WHOLE_DISK = DOS_EXTENDED_PARTITION,
37
38         LINUX_SWAP_PARTITION = 0x82,
39         LINUX_DATA_PARTITION = 0x83,
40         LINUX_LVM_PARTITION = 0x8e,
41         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
59 #define DISK_MAX_PARTS                  256
60 #define DISK_NAME_LEN                   32
61
62 #include <linux/major.h>
63 #include <linux/device.h>
64 #include <linux/smp.h>
65 #include <linux/string.h>
66 #include <linux/fs.h>
67 #include <linux/workqueue.h>
68
69 struct partition {
70         unsigned char boot_ind;         /* 0x80 - active */
71         unsigned char head;             /* starting head */
72         unsigned char sector;           /* starting sector */
73         unsigned char cyl;              /* starting cylinder */
74         unsigned char sys_ind;          /* What partition type */
75         unsigned char end_head;         /* end head */
76         unsigned char end_sector;       /* end sector */
77         unsigned char end_cyl;          /* end cylinder */
78         __le32 start_sect;      /* starting sector counting from 0 */
79         __le32 nr_sects;                /* nr of sectors in partition */
80 } __attribute__((packed));
81
82 struct disk_stats {
83         unsigned long sectors[2];       /* READs and WRITEs */
84         unsigned long ios[2];
85         unsigned long merges[2];
86         unsigned long ticks[2];
87         unsigned long io_ticks;
88         unsigned long time_in_queue;
89 };
90
91 #define PARTITION_META_INFO_VOLNAMELTH  64
92 #define PARTITION_META_INFO_UUIDLTH     16
93
94 struct partition_meta_info {
95         u8 uuid[PARTITION_META_INFO_UUIDLTH];   /* always big endian */
96         u8 volname[PARTITION_META_INFO_VOLNAMELTH];
97 };
98
99 struct hd_struct {
100         sector_t start_sect;
101         sector_t nr_sects;
102         sector_t alignment_offset;
103         unsigned int discard_alignment;
104         struct device __dev;
105         struct kobject *holder_dir;
106         int policy, partno;
107         struct partition_meta_info *info;
108 #ifdef CONFIG_FAIL_MAKE_REQUEST
109         int make_it_fail;
110 #endif
111         unsigned long stamp;
112         int in_flight[2];
113 #ifdef  CONFIG_SMP
114         struct disk_stats __percpu *dkstats;
115 #else
116         struct disk_stats dkstats;
117 #endif
118         struct rcu_head rcu_head;
119 };
120
121 #define GENHD_FL_REMOVABLE                      1
122 /* 2 is unused */
123 #define GENHD_FL_MEDIA_CHANGE_NOTIFY            4
124 #define GENHD_FL_CD                             8
125 #define GENHD_FL_UP                             16
126 #define GENHD_FL_SUPPRESS_PARTITION_INFO        32
127 #define GENHD_FL_EXT_DEVT                       64 /* allow extended devt */
128 #define GENHD_FL_NATIVE_CAPACITY                128
129
130 #define BLK_SCSI_MAX_CMDS       (256)
131 #define BLK_SCSI_CMD_PER_LONG   (BLK_SCSI_MAX_CMDS / (sizeof(long) * 8))
132
133 struct blk_scsi_cmd_filter {
134         unsigned long read_ok[BLK_SCSI_CMD_PER_LONG];
135         unsigned long write_ok[BLK_SCSI_CMD_PER_LONG];
136         struct kobject kobj;
137 };
138
139 struct disk_part_tbl {
140         struct rcu_head rcu_head;
141         int len;
142         struct hd_struct __rcu *last_lookup;
143         struct hd_struct __rcu *part[];
144 };
145
146 struct gendisk {
147         /* major, first_minor and minors are input parameters only,
148          * don't use directly.  Use disk_devt() and disk_max_parts().
149          */
150         int major;                      /* major number of driver */
151         int first_minor;
152         int minors;                     /* maximum number of minors, =1 for
153                                          * disks that can't be partitioned. */
154
155         char disk_name[DISK_NAME_LEN];  /* name of major driver */
156         char *(*devnode)(struct gendisk *gd, mode_t *mode);
157         /* Array of pointers to partitions indexed by partno.
158          * Protected with matching bdev lock but stat and other
159          * non-critical accesses use RCU.  Always access through
160          * helpers.
161          */
162         struct disk_part_tbl __rcu *part_tbl;
163         struct hd_struct part0;
164
165         const struct block_device_operations *fops;
166         struct request_queue *queue;
167         void *private_data;
168
169         int flags;
170         struct device *driverfs_dev;  // FIXME: remove
171         struct kobject *slave_dir;
172
173         struct timer_rand_state *random;
174
175         atomic_t sync_io;               /* RAID */
176 #ifdef  CONFIG_BLK_DEV_INTEGRITY
177         struct blk_integrity *integrity;
178 #endif
179         int node_id;
180 };
181
182 static inline struct gendisk *part_to_disk(struct hd_struct *part)
183 {
184         if (likely(part)) {
185                 if (part->partno)
186                         return dev_to_disk(part_to_dev(part)->parent);
187                 else
188                         return dev_to_disk(part_to_dev(part));
189         }
190         return NULL;
191 }
192
193 static inline void part_pack_uuid(const u8 *uuid_str, u8 *to)
194 {
195         int i;
196         for (i = 0; i < 16; ++i) {
197                 *to++ = (hex_to_bin(*uuid_str) << 4) |
198                         (hex_to_bin(*(uuid_str + 1)));
199                 uuid_str += 2;
200                 switch (i) {
201                 case 3:
202                 case 5:
203                 case 7:
204                 case 9:
205                         uuid_str++;
206                         continue;
207                 }
208         }
209 }
210
211 static inline char *part_unpack_uuid(const u8 *uuid, char *out)
212 {
213         sprintf(out, "%pU", uuid);
214         return out;
215 }
216
217 static inline int disk_max_parts(struct gendisk *disk)
218 {
219         if (disk->flags & GENHD_FL_EXT_DEVT)
220                 return DISK_MAX_PARTS;
221         return disk->minors;
222 }
223
224 static inline bool disk_partitionable(struct gendisk *disk)
225 {
226         return disk_max_parts(disk) > 1;
227 }
228
229 static inline dev_t disk_devt(struct gendisk *disk)
230 {
231         return disk_to_dev(disk)->devt;
232 }
233
234 static inline dev_t part_devt(struct hd_struct *part)
235 {
236         return part_to_dev(part)->devt;
237 }
238
239 extern struct hd_struct *disk_get_part(struct gendisk *disk, int partno);
240
241 static inline void disk_put_part(struct hd_struct *part)
242 {
243         if (likely(part))
244                 put_device(part_to_dev(part));
245 }
246
247 /*
248  * Smarter partition iterator without context limits.
249  */
250 #define DISK_PITER_REVERSE      (1 << 0) /* iterate in the reverse direction */
251 #define DISK_PITER_INCL_EMPTY   (1 << 1) /* include 0-sized parts */
252 #define DISK_PITER_INCL_PART0   (1 << 2) /* include partition 0 */
253 #define DISK_PITER_INCL_EMPTY_PART0 (1 << 3) /* include empty partition 0 */
254
255 struct disk_part_iter {
256         struct gendisk          *disk;
257         struct hd_struct        *part;
258         int                     idx;
259         unsigned int            flags;
260 };
261
262 extern void disk_part_iter_init(struct disk_part_iter *piter,
263                                  struct gendisk *disk, unsigned int flags);
264 extern struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter);
265 extern void disk_part_iter_exit(struct disk_part_iter *piter);
266
267 extern struct hd_struct *disk_map_sector_rcu(struct gendisk *disk,
268                                              sector_t sector);
269
270 /*
271  * Macros to operate on percpu disk statistics:
272  *
273  * {disk|part|all}_stat_{add|sub|inc|dec}() modify the stat counters
274  * and should be called between disk_stat_lock() and
275  * disk_stat_unlock().
276  *
277  * part_stat_read() can be called at any time.
278  *
279  * part_stat_{add|set_all}() and {init|free}_part_stats are for
280  * internal use only.
281  */
282 #ifdef  CONFIG_SMP
283 #define part_stat_lock()        ({ rcu_read_lock(); get_cpu(); })
284 #define part_stat_unlock()      do { put_cpu(); rcu_read_unlock(); } while (0)
285
286 #define __part_stat_add(cpu, part, field, addnd)                        \
287         (per_cpu_ptr((part)->dkstats, (cpu))->field += (addnd))
288
289 #define part_stat_read(part, field)                                     \
290 ({                                                                      \
291         typeof((part)->dkstats->field) res = 0;                         \
292         unsigned int _cpu;                                              \
293         for_each_possible_cpu(_cpu)                                     \
294                 res += per_cpu_ptr((part)->dkstats, _cpu)->field;       \
295         res;                                                            \
296 })
297
298 static inline void part_stat_set_all(struct hd_struct *part, int value)
299 {
300         int i;
301
302         for_each_possible_cpu(i)
303                 memset(per_cpu_ptr(part->dkstats, i), value,
304                                 sizeof(struct disk_stats));
305 }
306
307 static inline int init_part_stats(struct hd_struct *part)
308 {
309         part->dkstats = alloc_percpu(struct disk_stats);
310         if (!part->dkstats)
311                 return 0;
312         return 1;
313 }
314
315 static inline void free_part_stats(struct hd_struct *part)
316 {
317         free_percpu(part->dkstats);
318 }
319
320 #else /* !CONFIG_SMP */
321 #define part_stat_lock()        ({ rcu_read_lock(); 0; })
322 #define part_stat_unlock()      rcu_read_unlock()
323
324 #define __part_stat_add(cpu, part, field, addnd)                                \
325         ((part)->dkstats.field += addnd)
326
327 #define part_stat_read(part, field)     ((part)->dkstats.field)
328
329 static inline void part_stat_set_all(struct hd_struct *part, int value)
330 {
331         memset(&part->dkstats, value, sizeof(struct disk_stats));
332 }
333
334 static inline int init_part_stats(struct hd_struct *part)
335 {
336         return 1;
337 }
338
339 static inline void free_part_stats(struct hd_struct *part)
340 {
341 }
342
343 #endif /* CONFIG_SMP */
344
345 #define part_stat_add(cpu, part, field, addnd)  do {                    \
346         __part_stat_add((cpu), (part), field, addnd);                   \
347         if ((part)->partno)                                             \
348                 __part_stat_add((cpu), &part_to_disk((part))->part0,    \
349                                 field, addnd);                          \
350 } while (0)
351
352 #define part_stat_dec(cpu, gendiskp, field)                             \
353         part_stat_add(cpu, gendiskp, field, -1)
354 #define part_stat_inc(cpu, gendiskp, field)                             \
355         part_stat_add(cpu, gendiskp, field, 1)
356 #define part_stat_sub(cpu, gendiskp, field, subnd)                      \
357         part_stat_add(cpu, gendiskp, field, -subnd)
358
359 static inline void part_inc_in_flight(struct hd_struct *part, int rw)
360 {
361         part->in_flight[rw]++;
362         if (part->partno)
363                 part_to_disk(part)->part0.in_flight[rw]++;
364 }
365
366 static inline void part_dec_in_flight(struct hd_struct *part, int rw)
367 {
368         part->in_flight[rw]--;
369         if (part->partno)
370                 part_to_disk(part)->part0.in_flight[rw]--;
371 }
372
373 static inline int part_in_flight(struct hd_struct *part)
374 {
375         return part->in_flight[0] + part->in_flight[1];
376 }
377
378 static inline struct partition_meta_info *alloc_part_info(struct gendisk *disk)
379 {
380         if (disk)
381                 return kzalloc_node(sizeof(struct partition_meta_info),
382                                     GFP_KERNEL, disk->node_id);
383         return kzalloc(sizeof(struct partition_meta_info), GFP_KERNEL);
384 }
385
386 static inline void free_part_info(struct hd_struct *part)
387 {
388         kfree(part->info);
389 }
390
391 /* block/blk-core.c */
392 extern void part_round_stats(int cpu, struct hd_struct *part);
393
394 /* block/genhd.c */
395 extern void add_disk(struct gendisk *disk);
396 extern void del_gendisk(struct gendisk *gp);
397 extern struct gendisk *get_gendisk(dev_t dev, int *partno);
398 extern struct block_device *bdget_disk(struct gendisk *disk, int partno);
399
400 extern void set_device_ro(struct block_device *bdev, int flag);
401 extern void set_disk_ro(struct gendisk *disk, int flag);
402
403 static inline int get_disk_ro(struct gendisk *disk)
404 {
405         return disk->part0.policy;
406 }
407
408 /* drivers/char/random.c */
409 extern void add_disk_randomness(struct gendisk *disk);
410 extern void rand_initialize_disk(struct gendisk *disk);
411
412 static inline sector_t get_start_sect(struct block_device *bdev)
413 {
414         return bdev->bd_part->start_sect;
415 }
416 static inline sector_t get_capacity(struct gendisk *disk)
417 {
418         return disk->part0.nr_sects;
419 }
420 static inline void set_capacity(struct gendisk *disk, sector_t size)
421 {
422         disk->part0.nr_sects = size;
423 }
424
425 #ifdef CONFIG_SOLARIS_X86_PARTITION
426
427 #define SOLARIS_X86_NUMSLICE    16
428 #define SOLARIS_X86_VTOC_SANE   (0x600DDEEEUL)
429
430 struct solaris_x86_slice {
431         __le16 s_tag;           /* ID tag of partition */
432         __le16 s_flag;          /* permission flags */
433         __le32 s_start;         /* start sector no of partition */
434         __le32 s_size;          /* # of blocks in partition */
435 };
436
437 struct solaris_x86_vtoc {
438         unsigned int v_bootinfo[3];     /* info needed by mboot (unsupported) */
439         __le32 v_sanity;                /* to verify vtoc sanity */
440         __le32 v_version;               /* layout version */
441         char    v_volume[8];            /* volume name */
442         __le16  v_sectorsz;             /* sector size in bytes */
443         __le16  v_nparts;               /* number of partitions */
444         unsigned int v_reserved[10];    /* free space */
445         struct solaris_x86_slice
446                 v_slice[SOLARIS_X86_NUMSLICE]; /* slice headers */
447         unsigned int timestamp[SOLARIS_X86_NUMSLICE]; /* timestamp (unsupported) */
448         char    v_asciilabel[128];      /* for compatibility */
449 };
450
451 #endif /* CONFIG_SOLARIS_X86_PARTITION */
452
453 #ifdef CONFIG_BSD_DISKLABEL
454 /*
455  * BSD disklabel support by Yossi Gottlieb <yogo@math.tau.ac.il>
456  * updated by Marc Espie <Marc.Espie@openbsd.org>
457  */
458
459 /* check against BSD src/sys/sys/disklabel.h for consistency */
460
461 #define BSD_DISKMAGIC   (0x82564557UL)  /* The disk magic number */
462 #define BSD_MAXPARTITIONS       16
463 #define OPENBSD_MAXPARTITIONS   16
464 #define BSD_FS_UNUSED           0       /* disklabel unused partition entry ID */
465 struct bsd_disklabel {
466         __le32  d_magic;                /* the magic number */
467         __s16   d_type;                 /* drive type */
468         __s16   d_subtype;              /* controller/d_type specific */
469         char    d_typename[16];         /* type name, e.g. "eagle" */
470         char    d_packname[16];                 /* pack identifier */ 
471         __u32   d_secsize;              /* # of bytes per sector */
472         __u32   d_nsectors;             /* # of data sectors per track */
473         __u32   d_ntracks;              /* # of tracks per cylinder */
474         __u32   d_ncylinders;           /* # of data cylinders per unit */
475         __u32   d_secpercyl;            /* # of data sectors per cylinder */
476         __u32   d_secperunit;           /* # of data sectors per unit */
477         __u16   d_sparespertrack;       /* # of spare sectors per track */
478         __u16   d_sparespercyl;         /* # of spare sectors per cylinder */
479         __u32   d_acylinders;           /* # of alt. cylinders per unit */
480         __u16   d_rpm;                  /* rotational speed */
481         __u16   d_interleave;           /* hardware sector interleave */
482         __u16   d_trackskew;            /* sector 0 skew, per track */
483         __u16   d_cylskew;              /* sector 0 skew, per cylinder */
484         __u32   d_headswitch;           /* head switch time, usec */
485         __u32   d_trkseek;              /* track-to-track seek, usec */
486         __u32   d_flags;                /* generic flags */
487 #define NDDATA 5
488         __u32   d_drivedata[NDDATA];    /* drive-type specific information */
489 #define NSPARE 5
490         __u32   d_spare[NSPARE];        /* reserved for future use */
491         __le32  d_magic2;               /* the magic number (again) */
492         __le16  d_checksum;             /* xor of data incl. partitions */
493
494                         /* filesystem and partition information: */
495         __le16  d_npartitions;          /* number of partitions in following */
496         __le32  d_bbsize;               /* size of boot area at sn0, bytes */
497         __le32  d_sbsize;               /* max size of fs superblock, bytes */
498         struct  bsd_partition {         /* the partition table */
499                 __le32  p_size;         /* number of sectors in partition */
500                 __le32  p_offset;       /* starting sector */
501                 __le32  p_fsize;        /* filesystem basic fragment size */
502                 __u8    p_fstype;       /* filesystem type, see below */
503                 __u8    p_frag;         /* filesystem fragments per block */
504                 __le16  p_cpg;          /* filesystem cylinders per group */
505         } d_partitions[BSD_MAXPARTITIONS];      /* actually may be more */
506 };
507
508 #endif  /* CONFIG_BSD_DISKLABEL */
509
510 #ifdef CONFIG_UNIXWARE_DISKLABEL
511 /*
512  * Unixware slices support by Andrzej Krzysztofowicz <ankry@mif.pg.gda.pl>
513  * and Krzysztof G. Baranowski <kgb@knm.org.pl>
514  */
515
516 #define UNIXWARE_DISKMAGIC     (0xCA5E600DUL)   /* The disk magic number */
517 #define UNIXWARE_DISKMAGIC2    (0x600DDEEEUL)   /* The slice table magic nr */
518 #define UNIXWARE_NUMSLICE      16
519 #define UNIXWARE_FS_UNUSED     0                /* Unused slice entry ID */
520
521 struct unixware_slice {
522         __le16   s_label;       /* label */
523         __le16   s_flags;       /* permission flags */
524         __le32   start_sect;    /* starting sector */
525         __le32   nr_sects;      /* number of sectors in slice */
526 };
527
528 struct unixware_disklabel {
529         __le32   d_type;                /* drive type */
530         __le32   d_magic;                /* the magic number */
531         __le32   d_version;              /* version number */
532         char    d_serial[12];           /* serial number of the device */
533         __le32   d_ncylinders;           /* # of data cylinders per device */
534         __le32   d_ntracks;              /* # of tracks per cylinder */
535         __le32   d_nsectors;             /* # of data sectors per track */
536         __le32   d_secsize;              /* # of bytes per sector */
537         __le32   d_part_start;           /* # of first sector of this partition */
538         __le32   d_unknown1[12];         /* ? */
539         __le32  d_alt_tbl;              /* byte offset of alternate table */
540         __le32  d_alt_len;              /* byte length of alternate table */
541         __le32  d_phys_cyl;             /* # of physical cylinders per device */
542         __le32  d_phys_trk;             /* # of physical tracks per cylinder */
543         __le32  d_phys_sec;             /* # of physical sectors per track */
544         __le32  d_phys_bytes;           /* # of physical bytes per sector */
545         __le32  d_unknown2;             /* ? */
546         __le32   d_unknown3;             /* ? */
547         __le32  d_pad[8];               /* pad */
548
549         struct unixware_vtoc {
550                 __le32  v_magic;                /* the magic number */
551                 __le32  v_version;              /* version number */
552                 char    v_name[8];              /* volume name */
553                 __le16  v_nslices;              /* # of slices */
554                 __le16  v_unknown1;             /* ? */
555                 __le32  v_reserved[10];         /* reserved */
556                 struct unixware_slice
557                         v_slice[UNIXWARE_NUMSLICE];     /* slice headers */
558         } vtoc;
559
560 };  /* 408 */
561
562 #endif /* CONFIG_UNIXWARE_DISKLABEL */
563
564 #ifdef CONFIG_MINIX_SUBPARTITION
565 #   define MINIX_NR_SUBPARTITIONS  4
566 #endif /* CONFIG_MINIX_SUBPARTITION */
567
568 #define ADDPART_FLAG_NONE       0
569 #define ADDPART_FLAG_RAID       1
570 #define ADDPART_FLAG_WHOLEDISK  2
571
572 extern int blk_alloc_devt(struct hd_struct *part, dev_t *devt);
573 extern void blk_free_devt(dev_t devt);
574 extern dev_t blk_lookup_devt(const char *name, int partno);
575 extern char *disk_name (struct gendisk *hd, int partno, char *buf);
576
577 extern int disk_expand_part_tbl(struct gendisk *disk, int target);
578 extern int rescan_partitions(struct gendisk *disk, struct block_device *bdev);
579 extern struct hd_struct * __must_check add_partition(struct gendisk *disk,
580                                                      int partno, sector_t start,
581                                                      sector_t len, int flags,
582                                                      struct partition_meta_info
583                                                        *info);
584 extern void delete_partition(struct gendisk *, int);
585 extern void printk_all_partitions(void);
586
587 extern struct gendisk *alloc_disk_node(int minors, int node_id);
588 extern struct gendisk *alloc_disk(int minors);
589 extern struct kobject *get_disk(struct gendisk *disk);
590 extern void put_disk(struct gendisk *disk);
591 extern void blk_register_region(dev_t devt, unsigned long range,
592                         struct module *module,
593                         struct kobject *(*probe)(dev_t, int *, void *),
594                         int (*lock)(dev_t, void *),
595                         void *data);
596 extern void blk_unregister_region(dev_t devt, unsigned long range);
597
598 extern ssize_t part_size_show(struct device *dev,
599                               struct device_attribute *attr, char *buf);
600 extern ssize_t part_stat_show(struct device *dev,
601                               struct device_attribute *attr, char *buf);
602 extern ssize_t part_inflight_show(struct device *dev,
603                               struct device_attribute *attr, char *buf);
604 #ifdef CONFIG_FAIL_MAKE_REQUEST
605 extern ssize_t part_fail_show(struct device *dev,
606                               struct device_attribute *attr, char *buf);
607 extern ssize_t part_fail_store(struct device *dev,
608                                struct device_attribute *attr,
609                                const char *buf, size_t count);
610 #endif /* CONFIG_FAIL_MAKE_REQUEST */
611
612 #else /* CONFIG_BLOCK */
613
614 static inline void printk_all_partitions(void) { }
615
616 static inline dev_t blk_lookup_devt(const char *name, int partno)
617 {
618         dev_t devt = MKDEV(0, 0);
619         return devt;
620 }
621
622 #endif /* CONFIG_BLOCK */
623
624 #endif /* _LINUX_GENHD_H */