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