]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - block/genhd.c
driver core: remove CONFIG_SYSFS_DEPRECATED_V2 but keep it for block devices
[mirror_ubuntu-bionic-kernel.git] / block / genhd.c
CommitLineData
1da177e4
LT
1/*
2 * gendisk handling
3 */
4
1da177e4
LT
5#include <linux/module.h>
6#include <linux/fs.h>
7#include <linux/genhd.h>
b446b60e 8#include <linux/kdev_t.h>
1da177e4
LT
9#include <linux/kernel.h>
10#include <linux/blkdev.h>
11#include <linux/init.h>
12#include <linux/spinlock.h>
f500975a 13#include <linux/proc_fs.h>
1da177e4
LT
14#include <linux/seq_file.h>
15#include <linux/slab.h>
16#include <linux/kmod.h>
17#include <linux/kobj_map.h>
2ef41634 18#include <linux/buffer_head.h>
58383af6 19#include <linux/mutex.h>
bcce3de1 20#include <linux/idr.h>
1da177e4 21
ff88972c
AB
22#include "blk.h"
23
edfaa7c3
KS
24static DEFINE_MUTEX(block_class_lock);
25#ifndef CONFIG_SYSFS_DEPRECATED
26struct kobject *block_depr;
27#endif
1da177e4 28
bcce3de1
TH
29/* for extended dynamic devt allocation, currently only one major is used */
30#define MAX_EXT_DEVT (1 << MINORBITS)
31
32/* For extended devt allocation. ext_devt_mutex prevents look up
33 * results from going away underneath its user.
34 */
35static DEFINE_MUTEX(ext_devt_mutex);
36static DEFINE_IDR(ext_devt_idr);
37
1826eadf
AB
38static struct device_type disk_type;
39
e71bf0d0
TH
40/**
41 * disk_get_part - get partition
42 * @disk: disk to look partition from
43 * @partno: partition number
44 *
45 * Look for partition @partno from @disk. If found, increment
46 * reference count and return it.
47 *
48 * CONTEXT:
49 * Don't care.
50 *
51 * RETURNS:
52 * Pointer to the found partition on success, NULL if not found.
53 */
54struct hd_struct *disk_get_part(struct gendisk *disk, int partno)
55{
540eed56
TH
56 struct hd_struct *part = NULL;
57 struct disk_part_tbl *ptbl;
e71bf0d0 58
540eed56 59 if (unlikely(partno < 0))
e71bf0d0 60 return NULL;
540eed56 61
e71bf0d0 62 rcu_read_lock();
540eed56
TH
63
64 ptbl = rcu_dereference(disk->part_tbl);
65 if (likely(partno < ptbl->len)) {
66 part = rcu_dereference(ptbl->part[partno]);
67 if (part)
68 get_device(part_to_dev(part));
69 }
70
e71bf0d0
TH
71 rcu_read_unlock();
72
73 return part;
74}
75EXPORT_SYMBOL_GPL(disk_get_part);
76
77/**
78 * disk_part_iter_init - initialize partition iterator
79 * @piter: iterator to initialize
80 * @disk: disk to iterate over
81 * @flags: DISK_PITER_* flags
82 *
83 * Initialize @piter so that it iterates over partitions of @disk.
84 *
85 * CONTEXT:
86 * Don't care.
87 */
88void disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk,
89 unsigned int flags)
90{
540eed56
TH
91 struct disk_part_tbl *ptbl;
92
93 rcu_read_lock();
94 ptbl = rcu_dereference(disk->part_tbl);
95
e71bf0d0
TH
96 piter->disk = disk;
97 piter->part = NULL;
98
99 if (flags & DISK_PITER_REVERSE)
540eed56 100 piter->idx = ptbl->len - 1;
71982a40 101 else if (flags & (DISK_PITER_INCL_PART0 | DISK_PITER_INCL_EMPTY_PART0))
e71bf0d0 102 piter->idx = 0;
b5d0b9df
TH
103 else
104 piter->idx = 1;
e71bf0d0
TH
105
106 piter->flags = flags;
540eed56
TH
107
108 rcu_read_unlock();
e71bf0d0
TH
109}
110EXPORT_SYMBOL_GPL(disk_part_iter_init);
111
112/**
113 * disk_part_iter_next - proceed iterator to the next partition and return it
114 * @piter: iterator of interest
115 *
116 * Proceed @piter to the next partition and return it.
117 *
118 * CONTEXT:
119 * Don't care.
120 */
121struct hd_struct *disk_part_iter_next(struct disk_part_iter *piter)
122{
540eed56 123 struct disk_part_tbl *ptbl;
e71bf0d0
TH
124 int inc, end;
125
126 /* put the last partition */
127 disk_put_part(piter->part);
128 piter->part = NULL;
129
540eed56 130 /* get part_tbl */
e71bf0d0 131 rcu_read_lock();
540eed56 132 ptbl = rcu_dereference(piter->disk->part_tbl);
e71bf0d0
TH
133
134 /* determine iteration parameters */
135 if (piter->flags & DISK_PITER_REVERSE) {
136 inc = -1;
71982a40
TH
137 if (piter->flags & (DISK_PITER_INCL_PART0 |
138 DISK_PITER_INCL_EMPTY_PART0))
b5d0b9df
TH
139 end = -1;
140 else
141 end = 0;
e71bf0d0
TH
142 } else {
143 inc = 1;
540eed56 144 end = ptbl->len;
e71bf0d0
TH
145 }
146
147 /* iterate to the next partition */
148 for (; piter->idx != end; piter->idx += inc) {
149 struct hd_struct *part;
150
540eed56 151 part = rcu_dereference(ptbl->part[piter->idx]);
e71bf0d0
TH
152 if (!part)
153 continue;
71982a40
TH
154 if (!part->nr_sects &&
155 !(piter->flags & DISK_PITER_INCL_EMPTY) &&
156 !(piter->flags & DISK_PITER_INCL_EMPTY_PART0 &&
157 piter->idx == 0))
e71bf0d0
TH
158 continue;
159
ed9e1982 160 get_device(part_to_dev(part));
e71bf0d0
TH
161 piter->part = part;
162 piter->idx += inc;
163 break;
164 }
165
166 rcu_read_unlock();
167
168 return piter->part;
169}
170EXPORT_SYMBOL_GPL(disk_part_iter_next);
171
172/**
173 * disk_part_iter_exit - finish up partition iteration
174 * @piter: iter of interest
175 *
176 * Called when iteration is over. Cleans up @piter.
177 *
178 * CONTEXT:
179 * Don't care.
180 */
181void disk_part_iter_exit(struct disk_part_iter *piter)
182{
183 disk_put_part(piter->part);
184 piter->part = NULL;
185}
186EXPORT_SYMBOL_GPL(disk_part_iter_exit);
187
a6f23657
JA
188static inline int sector_in_part(struct hd_struct *part, sector_t sector)
189{
190 return part->start_sect <= sector &&
191 sector < part->start_sect + part->nr_sects;
192}
193
e71bf0d0
TH
194/**
195 * disk_map_sector_rcu - map sector to partition
196 * @disk: gendisk of interest
197 * @sector: sector to map
198 *
199 * Find out which partition @sector maps to on @disk. This is
200 * primarily used for stats accounting.
201 *
202 * CONTEXT:
203 * RCU read locked. The returned partition pointer is valid only
204 * while preemption is disabled.
205 *
206 * RETURNS:
074a7aca 207 * Found partition on success, part0 is returned if no partition matches
e71bf0d0
TH
208 */
209struct hd_struct *disk_map_sector_rcu(struct gendisk *disk, sector_t sector)
210{
540eed56 211 struct disk_part_tbl *ptbl;
a6f23657 212 struct hd_struct *part;
e71bf0d0
TH
213 int i;
214
540eed56
TH
215 ptbl = rcu_dereference(disk->part_tbl);
216
a6f23657
JA
217 part = rcu_dereference(ptbl->last_lookup);
218 if (part && sector_in_part(part, sector))
219 return part;
220
540eed56 221 for (i = 1; i < ptbl->len; i++) {
a6f23657 222 part = rcu_dereference(ptbl->part[i]);
e71bf0d0 223
a6f23657
JA
224 if (part && sector_in_part(part, sector)) {
225 rcu_assign_pointer(ptbl->last_lookup, part);
e71bf0d0 226 return part;
a6f23657 227 }
e71bf0d0 228 }
074a7aca 229 return &disk->part0;
e71bf0d0
TH
230}
231EXPORT_SYMBOL_GPL(disk_map_sector_rcu);
232
1da177e4
LT
233/*
234 * Can be deleted altogether. Later.
235 *
236 */
237static struct blk_major_name {
238 struct blk_major_name *next;
239 int major;
240 char name[16];
68eef3b4 241} *major_names[BLKDEV_MAJOR_HASH_SIZE];
1da177e4
LT
242
243/* index in the above - for now: assume no multimajor ranges */
244static inline int major_to_index(int major)
245{
68eef3b4 246 return major % BLKDEV_MAJOR_HASH_SIZE;
7170be5f
NH
247}
248
68eef3b4 249#ifdef CONFIG_PROC_FS
cf771cb5 250void blkdev_show(struct seq_file *seqf, off_t offset)
7170be5f 251{
68eef3b4 252 struct blk_major_name *dp;
7170be5f 253
68eef3b4 254 if (offset < BLKDEV_MAJOR_HASH_SIZE) {
edfaa7c3 255 mutex_lock(&block_class_lock);
68eef3b4 256 for (dp = major_names[offset]; dp; dp = dp->next)
cf771cb5 257 seq_printf(seqf, "%3d %s\n", dp->major, dp->name);
edfaa7c3 258 mutex_unlock(&block_class_lock);
1da177e4 259 }
1da177e4 260}
68eef3b4 261#endif /* CONFIG_PROC_FS */
1da177e4 262
9e8c0bcc
MN
263/**
264 * register_blkdev - register a new block device
265 *
266 * @major: the requested major device number [1..255]. If @major=0, try to
267 * allocate any unused major number.
268 * @name: the name of the new block device as a zero terminated string
269 *
270 * The @name must be unique within the system.
271 *
272 * The return value depends on the @major input parameter.
273 * - if a major device number was requested in range [1..255] then the
274 * function returns zero on success, or a negative error code
275 * - if any unused major number was requested with @major=0 parameter
276 * then the return value is the allocated major number in range
277 * [1..255] or a negative error code otherwise
278 */
1da177e4
LT
279int register_blkdev(unsigned int major, const char *name)
280{
281 struct blk_major_name **n, *p;
282 int index, ret = 0;
283
edfaa7c3 284 mutex_lock(&block_class_lock);
1da177e4
LT
285
286 /* temporary */
287 if (major == 0) {
288 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
289 if (major_names[index] == NULL)
290 break;
291 }
292
293 if (index == 0) {
294 printk("register_blkdev: failed to get major for %s\n",
295 name);
296 ret = -EBUSY;
297 goto out;
298 }
299 major = index;
300 ret = major;
301 }
302
303 p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
304 if (p == NULL) {
305 ret = -ENOMEM;
306 goto out;
307 }
308
309 p->major = major;
310 strlcpy(p->name, name, sizeof(p->name));
311 p->next = NULL;
312 index = major_to_index(major);
313
314 for (n = &major_names[index]; *n; n = &(*n)->next) {
315 if ((*n)->major == major)
316 break;
317 }
318 if (!*n)
319 *n = p;
320 else
321 ret = -EBUSY;
322
323 if (ret < 0) {
324 printk("register_blkdev: cannot get major %d for %s\n",
325 major, name);
326 kfree(p);
327 }
328out:
edfaa7c3 329 mutex_unlock(&block_class_lock);
1da177e4
LT
330 return ret;
331}
332
333EXPORT_SYMBOL(register_blkdev);
334
f4480240 335void unregister_blkdev(unsigned int major, const char *name)
1da177e4
LT
336{
337 struct blk_major_name **n;
338 struct blk_major_name *p = NULL;
339 int index = major_to_index(major);
1da177e4 340
edfaa7c3 341 mutex_lock(&block_class_lock);
1da177e4
LT
342 for (n = &major_names[index]; *n; n = &(*n)->next)
343 if ((*n)->major == major)
344 break;
294462a5
AM
345 if (!*n || strcmp((*n)->name, name)) {
346 WARN_ON(1);
294462a5 347 } else {
1da177e4
LT
348 p = *n;
349 *n = p->next;
350 }
edfaa7c3 351 mutex_unlock(&block_class_lock);
1da177e4 352 kfree(p);
1da177e4
LT
353}
354
355EXPORT_SYMBOL(unregister_blkdev);
356
357static struct kobj_map *bdev_map;
358
870d6656
TH
359/**
360 * blk_mangle_minor - scatter minor numbers apart
361 * @minor: minor number to mangle
362 *
363 * Scatter consecutively allocated @minor number apart if MANGLE_DEVT
364 * is enabled. Mangling twice gives the original value.
365 *
366 * RETURNS:
367 * Mangled value.
368 *
369 * CONTEXT:
370 * Don't care.
371 */
372static int blk_mangle_minor(int minor)
373{
374#ifdef CONFIG_DEBUG_BLOCK_EXT_DEVT
375 int i;
376
377 for (i = 0; i < MINORBITS / 2; i++) {
378 int low = minor & (1 << i);
379 int high = minor & (1 << (MINORBITS - 1 - i));
380 int distance = MINORBITS - 1 - 2 * i;
381
382 minor ^= low | high; /* clear both bits */
383 low <<= distance; /* swap the positions */
384 high >>= distance;
385 minor |= low | high; /* and set */
386 }
387#endif
388 return minor;
389}
390
bcce3de1
TH
391/**
392 * blk_alloc_devt - allocate a dev_t for a partition
393 * @part: partition to allocate dev_t for
bcce3de1
TH
394 * @devt: out parameter for resulting dev_t
395 *
396 * Allocate a dev_t for block device.
397 *
398 * RETURNS:
399 * 0 on success, allocated dev_t is returned in *@devt. -errno on
400 * failure.
401 *
402 * CONTEXT:
403 * Might sleep.
404 */
405int blk_alloc_devt(struct hd_struct *part, dev_t *devt)
406{
407 struct gendisk *disk = part_to_disk(part);
408 int idx, rc;
409
410 /* in consecutive minor range? */
411 if (part->partno < disk->minors) {
412 *devt = MKDEV(disk->major, disk->first_minor + part->partno);
413 return 0;
414 }
415
416 /* allocate ext devt */
417 do {
418 if (!idr_pre_get(&ext_devt_idr, GFP_KERNEL))
419 return -ENOMEM;
420 rc = idr_get_new(&ext_devt_idr, part, &idx);
421 } while (rc == -EAGAIN);
422
423 if (rc)
424 return rc;
425
426 if (idx > MAX_EXT_DEVT) {
427 idr_remove(&ext_devt_idr, idx);
428 return -EBUSY;
429 }
430
870d6656 431 *devt = MKDEV(BLOCK_EXT_MAJOR, blk_mangle_minor(idx));
bcce3de1
TH
432 return 0;
433}
434
435/**
436 * blk_free_devt - free a dev_t
437 * @devt: dev_t to free
438 *
439 * Free @devt which was allocated using blk_alloc_devt().
440 *
441 * CONTEXT:
442 * Might sleep.
443 */
444void blk_free_devt(dev_t devt)
445{
446 might_sleep();
447
448 if (devt == MKDEV(0, 0))
449 return;
450
451 if (MAJOR(devt) == BLOCK_EXT_MAJOR) {
452 mutex_lock(&ext_devt_mutex);
870d6656 453 idr_remove(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
bcce3de1
TH
454 mutex_unlock(&ext_devt_mutex);
455 }
456}
457
1f014290
TH
458static char *bdevt_str(dev_t devt, char *buf)
459{
460 if (MAJOR(devt) <= 0xff && MINOR(devt) <= 0xff) {
461 char tbuf[BDEVT_SIZE];
462 snprintf(tbuf, BDEVT_SIZE, "%02x%02x", MAJOR(devt), MINOR(devt));
463 snprintf(buf, BDEVT_SIZE, "%-9s", tbuf);
464 } else
465 snprintf(buf, BDEVT_SIZE, "%03x:%05x", MAJOR(devt), MINOR(devt));
466
467 return buf;
468}
469
1da177e4
LT
470/*
471 * Register device numbers dev..(dev+range-1)
472 * range must be nonzero
473 * The hash chain is sorted on range, so that subranges can override.
474 */
edfaa7c3 475void blk_register_region(dev_t devt, unsigned long range, struct module *module,
1da177e4
LT
476 struct kobject *(*probe)(dev_t, int *, void *),
477 int (*lock)(dev_t, void *), void *data)
478{
edfaa7c3 479 kobj_map(bdev_map, devt, range, module, probe, lock, data);
1da177e4
LT
480}
481
482EXPORT_SYMBOL(blk_register_region);
483
edfaa7c3 484void blk_unregister_region(dev_t devt, unsigned long range)
1da177e4 485{
edfaa7c3 486 kobj_unmap(bdev_map, devt, range);
1da177e4
LT
487}
488
489EXPORT_SYMBOL(blk_unregister_region);
490
cf771cb5 491static struct kobject *exact_match(dev_t devt, int *partno, void *data)
1da177e4
LT
492{
493 struct gendisk *p = data;
edfaa7c3 494
ed9e1982 495 return &disk_to_dev(p)->kobj;
1da177e4
LT
496}
497
edfaa7c3 498static int exact_lock(dev_t devt, void *data)
1da177e4
LT
499{
500 struct gendisk *p = data;
501
502 if (!get_disk(p))
503 return -1;
504 return 0;
505}
506
507/**
508 * add_disk - add partitioning information to kernel list
509 * @disk: per-device partitioning information
510 *
511 * This function registers the partitioning information in @disk
512 * with the kernel.
3e1a7ff8
TH
513 *
514 * FIXME: error handling
1da177e4
LT
515 */
516void add_disk(struct gendisk *disk)
517{
cf0ca9fe 518 struct backing_dev_info *bdi;
3e1a7ff8 519 dev_t devt;
6ffeea77 520 int retval;
cf0ca9fe 521
3e1a7ff8
TH
522 /* minors == 0 indicates to use ext devt from part0 and should
523 * be accompanied with EXT_DEVT flag. Make sure all
524 * parameters make sense.
525 */
526 WARN_ON(disk->minors && !(disk->major || disk->first_minor));
527 WARN_ON(!disk->minors && !(disk->flags & GENHD_FL_EXT_DEVT));
528
1da177e4 529 disk->flags |= GENHD_FL_UP;
3e1a7ff8
TH
530
531 retval = blk_alloc_devt(&disk->part0, &devt);
532 if (retval) {
533 WARN_ON(1);
534 return;
535 }
536 disk_to_dev(disk)->devt = devt;
537
538 /* ->major and ->first_minor aren't supposed to be
539 * dereferenced from here on, but set them just in case.
540 */
541 disk->major = MAJOR(devt);
542 disk->first_minor = MINOR(devt);
543
f331c029
TH
544 blk_register_region(disk_devt(disk), disk->minors, NULL,
545 exact_match, exact_lock, disk);
1da177e4
LT
546 register_disk(disk);
547 blk_register_queue(disk);
cf0ca9fe
PZ
548
549 bdi = &disk->queue->backing_dev_info;
f331c029 550 bdi_register_dev(bdi, disk_devt(disk));
ed9e1982
TH
551 retval = sysfs_create_link(&disk_to_dev(disk)->kobj, &bdi->dev->kobj,
552 "bdi");
6ffeea77 553 WARN_ON(retval);
1da177e4
LT
554}
555
556EXPORT_SYMBOL(add_disk);
557EXPORT_SYMBOL(del_gendisk); /* in partitions/check.c */
558
559void unlink_gendisk(struct gendisk *disk)
560{
ed9e1982 561 sysfs_remove_link(&disk_to_dev(disk)->kobj, "bdi");
cf0ca9fe 562 bdi_unregister(&disk->queue->backing_dev_info);
1da177e4 563 blk_unregister_queue(disk);
f331c029 564 blk_unregister_region(disk_devt(disk), disk->minors);
1da177e4
LT
565}
566
1da177e4
LT
567/**
568 * get_gendisk - get partitioning information for a given device
710027a4 569 * @devt: device to get partitioning information for
496aa8a9 570 * @partno: returned partition index
1da177e4
LT
571 *
572 * This function gets the structure containing partitioning
710027a4 573 * information for the given device @devt.
1da177e4 574 */
cf771cb5 575struct gendisk *get_gendisk(dev_t devt, int *partno)
1da177e4 576{
bcce3de1
TH
577 struct gendisk *disk = NULL;
578
579 if (MAJOR(devt) != BLOCK_EXT_MAJOR) {
580 struct kobject *kobj;
581
582 kobj = kobj_lookup(bdev_map, devt, partno);
583 if (kobj)
584 disk = dev_to_disk(kobj_to_dev(kobj));
585 } else {
586 struct hd_struct *part;
587
588 mutex_lock(&ext_devt_mutex);
870d6656 589 part = idr_find(&ext_devt_idr, blk_mangle_minor(MINOR(devt)));
bcce3de1
TH
590 if (part && get_disk(part_to_disk(part))) {
591 *partno = part->partno;
592 disk = part_to_disk(part);
593 }
594 mutex_unlock(&ext_devt_mutex);
595 }
edfaa7c3 596
bcce3de1 597 return disk;
1da177e4 598}
b6ac23af 599EXPORT_SYMBOL(get_gendisk);
1da177e4 600
f331c029
TH
601/**
602 * bdget_disk - do bdget() by gendisk and partition number
603 * @disk: gendisk of interest
604 * @partno: partition number
605 *
606 * Find partition @partno from @disk, do bdget() on it.
607 *
608 * CONTEXT:
609 * Don't care.
610 *
611 * RETURNS:
612 * Resulting block_device on success, NULL on failure.
613 */
aeb3d3a8 614struct block_device *bdget_disk(struct gendisk *disk, int partno)
f331c029 615{
548b10eb
TH
616 struct hd_struct *part;
617 struct block_device *bdev = NULL;
f331c029 618
548b10eb 619 part = disk_get_part(disk, partno);
2bbedcb4 620 if (part)
548b10eb
TH
621 bdev = bdget(part_devt(part));
622 disk_put_part(part);
f331c029 623
548b10eb 624 return bdev;
f331c029
TH
625}
626EXPORT_SYMBOL(bdget_disk);
627
5c6f35c5
GKH
628/*
629 * print a full list of all partitions - intended for places where the root
630 * filesystem can't be mounted and thus to give the victim some idea of what
631 * went wrong
632 */
633void __init printk_all_partitions(void)
634{
def4e38d
TH
635 struct class_dev_iter iter;
636 struct device *dev;
637
638 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
639 while ((dev = class_dev_iter_next(&iter))) {
640 struct gendisk *disk = dev_to_disk(dev);
e71bf0d0
TH
641 struct disk_part_iter piter;
642 struct hd_struct *part;
1f014290
TH
643 char name_buf[BDEVNAME_SIZE];
644 char devt_buf[BDEVT_SIZE];
def4e38d
TH
645
646 /*
647 * Don't show empty devices or things that have been
648 * surpressed
649 */
650 if (get_capacity(disk) == 0 ||
651 (disk->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
652 continue;
653
654 /*
655 * Note, unlike /proc/partitions, I am showing the
656 * numbers in hex - the same format as the root=
657 * option takes.
658 */
074a7aca
TH
659 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_PART0);
660 while ((part = disk_part_iter_next(&piter))) {
661 bool is_part0 = part == &disk->part0;
def4e38d 662
074a7aca 663 printk("%s%s %10llu %s", is_part0 ? "" : " ",
1f014290 664 bdevt_str(part_devt(part), devt_buf),
f331c029 665 (unsigned long long)part->nr_sects >> 1,
1f014290 666 disk_name(disk, part->partno, name_buf));
074a7aca
TH
667 if (is_part0) {
668 if (disk->driverfs_dev != NULL &&
669 disk->driverfs_dev->driver != NULL)
670 printk(" driver: %s\n",
671 disk->driverfs_dev->driver->name);
672 else
673 printk(" (driver?)\n");
674 } else
675 printk("\n");
676 }
e71bf0d0 677 disk_part_iter_exit(&piter);
def4e38d
TH
678 }
679 class_dev_iter_exit(&iter);
dd2a345f
DG
680}
681
1da177e4
LT
682#ifdef CONFIG_PROC_FS
683/* iterator */
def4e38d 684static void *disk_seqf_start(struct seq_file *seqf, loff_t *pos)
68c4d4a7 685{
def4e38d
TH
686 loff_t skip = *pos;
687 struct class_dev_iter *iter;
688 struct device *dev;
68c4d4a7 689
aeb3d3a8 690 iter = kmalloc(sizeof(*iter), GFP_KERNEL);
def4e38d
TH
691 if (!iter)
692 return ERR_PTR(-ENOMEM);
693
694 seqf->private = iter;
695 class_dev_iter_init(iter, &block_class, NULL, &disk_type);
696 do {
697 dev = class_dev_iter_next(iter);
698 if (!dev)
699 return NULL;
700 } while (skip--);
701
702 return dev_to_disk(dev);
68c4d4a7
GKH
703}
704
def4e38d 705static void *disk_seqf_next(struct seq_file *seqf, void *v, loff_t *pos)
1da177e4 706{
edfaa7c3 707 struct device *dev;
1da177e4 708
def4e38d
TH
709 (*pos)++;
710 dev = class_dev_iter_next(seqf->private);
2ac3cee5 711 if (dev)
68c4d4a7 712 return dev_to_disk(dev);
2ac3cee5 713
1da177e4
LT
714 return NULL;
715}
716
def4e38d 717static void disk_seqf_stop(struct seq_file *seqf, void *v)
27f30251 718{
def4e38d 719 struct class_dev_iter *iter = seqf->private;
27f30251 720
def4e38d
TH
721 /* stop is called even after start failed :-( */
722 if (iter) {
723 class_dev_iter_exit(iter);
724 kfree(iter);
5c0ef6d0 725 }
1da177e4
LT
726}
727
def4e38d 728static void *show_partition_start(struct seq_file *seqf, loff_t *pos)
1da177e4 729{
def4e38d
TH
730 static void *p;
731
732 p = disk_seqf_start(seqf, pos);
243294da 733 if (!IS_ERR(p) && p && !*pos)
def4e38d
TH
734 seq_puts(seqf, "major minor #blocks name\n\n");
735 return p;
1da177e4
LT
736}
737
cf771cb5 738static int show_partition(struct seq_file *seqf, void *v)
1da177e4
LT
739{
740 struct gendisk *sgp = v;
e71bf0d0
TH
741 struct disk_part_iter piter;
742 struct hd_struct *part;
1da177e4
LT
743 char buf[BDEVNAME_SIZE];
744
1da177e4 745 /* Don't show non-partitionable removeable devices or empty devices */
b5d0b9df 746 if (!get_capacity(sgp) || (!disk_partitionable(sgp) &&
f331c029 747 (sgp->flags & GENHD_FL_REMOVABLE)))
1da177e4
LT
748 return 0;
749 if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
750 return 0;
751
752 /* show the full disk and all non-0 size partitions of it */
074a7aca 753 disk_part_iter_init(&piter, sgp, DISK_PITER_INCL_PART0);
e71bf0d0 754 while ((part = disk_part_iter_next(&piter)))
1f014290 755 seq_printf(seqf, "%4d %7d %10llu %s\n",
f331c029
TH
756 MAJOR(part_devt(part)), MINOR(part_devt(part)),
757 (unsigned long long)part->nr_sects >> 1,
758 disk_name(sgp, part->partno, buf));
e71bf0d0 759 disk_part_iter_exit(&piter);
1da177e4
LT
760
761 return 0;
762}
763
f500975a 764static const struct seq_operations partitions_op = {
def4e38d
TH
765 .start = show_partition_start,
766 .next = disk_seqf_next,
767 .stop = disk_seqf_stop,
edfaa7c3 768 .show = show_partition
1da177e4 769};
f500975a
AD
770
771static int partitions_open(struct inode *inode, struct file *file)
772{
773 return seq_open(file, &partitions_op);
774}
775
776static const struct file_operations proc_partitions_operations = {
777 .open = partitions_open,
778 .read = seq_read,
779 .llseek = seq_lseek,
780 .release = seq_release,
781};
1da177e4
LT
782#endif
783
784
cf771cb5 785static struct kobject *base_probe(dev_t devt, int *partno, void *data)
1da177e4 786{
edfaa7c3 787 if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
1da177e4 788 /* Make old-style 2.4 aliases work */
edfaa7c3 789 request_module("block-major-%d", MAJOR(devt));
1da177e4
LT
790 return NULL;
791}
792
793static int __init genhd_device_init(void)
794{
e105b8bf
DW
795 int error;
796
797 block_class.dev_kobj = sysfs_dev_block_kobj;
798 error = class_register(&block_class);
ee27a558
RM
799 if (unlikely(error))
800 return error;
edfaa7c3 801 bdev_map = kobj_map_init(base_probe, &block_class_lock);
1da177e4 802 blk_dev_init();
edfaa7c3 803
561ec68e
ZY
804 register_blkdev(BLOCK_EXT_MAJOR, "blkext");
805
edfaa7c3
KS
806#ifndef CONFIG_SYSFS_DEPRECATED
807 /* create top-level block dir */
808 block_depr = kobject_create_and_add("block", NULL);
809#endif
830d3cfb 810 return 0;
1da177e4
LT
811}
812
813subsys_initcall(genhd_device_init);
814
edfaa7c3
KS
815static ssize_t disk_range_show(struct device *dev,
816 struct device_attribute *attr, char *buf)
1da177e4 817{
edfaa7c3 818 struct gendisk *disk = dev_to_disk(dev);
1da177e4 819
edfaa7c3 820 return sprintf(buf, "%d\n", disk->minors);
1da177e4
LT
821}
822
1f014290
TH
823static ssize_t disk_ext_range_show(struct device *dev,
824 struct device_attribute *attr, char *buf)
825{
826 struct gendisk *disk = dev_to_disk(dev);
827
b5d0b9df 828 return sprintf(buf, "%d\n", disk_max_parts(disk));
1f014290
TH
829}
830
edfaa7c3
KS
831static ssize_t disk_removable_show(struct device *dev,
832 struct device_attribute *attr, char *buf)
a7fd6706 833{
edfaa7c3 834 struct gendisk *disk = dev_to_disk(dev);
a7fd6706 835
edfaa7c3
KS
836 return sprintf(buf, "%d\n",
837 (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
a7fd6706
KS
838}
839
1c9ce527
KS
840static ssize_t disk_ro_show(struct device *dev,
841 struct device_attribute *attr, char *buf)
842{
843 struct gendisk *disk = dev_to_disk(dev);
844
b7db9956 845 return sprintf(buf, "%d\n", get_disk_ro(disk) ? 1 : 0);
1c9ce527
KS
846}
847
edfaa7c3
KS
848static ssize_t disk_capability_show(struct device *dev,
849 struct device_attribute *attr, char *buf)
86ce18d7 850{
edfaa7c3
KS
851 struct gendisk *disk = dev_to_disk(dev);
852
853 return sprintf(buf, "%x\n", disk->flags);
86ce18d7 854}
edfaa7c3 855
c72758f3
MP
856static ssize_t disk_alignment_offset_show(struct device *dev,
857 struct device_attribute *attr,
858 char *buf)
859{
860 struct gendisk *disk = dev_to_disk(dev);
861
862 return sprintf(buf, "%d\n", queue_alignment_offset(disk->queue));
863}
864
86b37281
MP
865static ssize_t disk_discard_alignment_show(struct device *dev,
866 struct device_attribute *attr,
867 char *buf)
868{
869 struct gendisk *disk = dev_to_disk(dev);
870
dd3d145d 871 return sprintf(buf, "%d\n", queue_discard_alignment(disk->queue));
86b37281
MP
872}
873
edfaa7c3 874static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
1f014290 875static DEVICE_ATTR(ext_range, S_IRUGO, disk_ext_range_show, NULL);
edfaa7c3 876static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
1c9ce527 877static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
e5610521 878static DEVICE_ATTR(size, S_IRUGO, part_size_show, NULL);
c72758f3 879static DEVICE_ATTR(alignment_offset, S_IRUGO, disk_alignment_offset_show, NULL);
86b37281
MP
880static DEVICE_ATTR(discard_alignment, S_IRUGO, disk_discard_alignment_show,
881 NULL);
edfaa7c3 882static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
074a7aca 883static DEVICE_ATTR(stat, S_IRUGO, part_stat_show, NULL);
316d315b 884static DEVICE_ATTR(inflight, S_IRUGO, part_inflight_show, NULL);
c17bb495 885#ifdef CONFIG_FAIL_MAKE_REQUEST
edfaa7c3 886static struct device_attribute dev_attr_fail =
eddb2e26 887 __ATTR(make-it-fail, S_IRUGO|S_IWUSR, part_fail_show, part_fail_store);
c17bb495 888#endif
581d4e28
JA
889#ifdef CONFIG_FAIL_IO_TIMEOUT
890static struct device_attribute dev_attr_fail_timeout =
891 __ATTR(io-timeout-fail, S_IRUGO|S_IWUSR, part_timeout_show,
892 part_timeout_store);
893#endif
edfaa7c3
KS
894
895static struct attribute *disk_attrs[] = {
896 &dev_attr_range.attr,
1f014290 897 &dev_attr_ext_range.attr,
edfaa7c3 898 &dev_attr_removable.attr,
1c9ce527 899 &dev_attr_ro.attr,
edfaa7c3 900 &dev_attr_size.attr,
c72758f3 901 &dev_attr_alignment_offset.attr,
86b37281 902 &dev_attr_discard_alignment.attr,
edfaa7c3
KS
903 &dev_attr_capability.attr,
904 &dev_attr_stat.attr,
316d315b 905 &dev_attr_inflight.attr,
edfaa7c3
KS
906#ifdef CONFIG_FAIL_MAKE_REQUEST
907 &dev_attr_fail.attr,
581d4e28
JA
908#endif
909#ifdef CONFIG_FAIL_IO_TIMEOUT
910 &dev_attr_fail_timeout.attr,
edfaa7c3
KS
911#endif
912 NULL
913};
914
915static struct attribute_group disk_attr_group = {
916 .attrs = disk_attrs,
917};
918
a4dbd674 919static const struct attribute_group *disk_attr_groups[] = {
edfaa7c3
KS
920 &disk_attr_group,
921 NULL
1da177e4
LT
922};
923
540eed56
TH
924static void disk_free_ptbl_rcu_cb(struct rcu_head *head)
925{
926 struct disk_part_tbl *ptbl =
927 container_of(head, struct disk_part_tbl, rcu_head);
928
929 kfree(ptbl);
930}
931
932/**
933 * disk_replace_part_tbl - replace disk->part_tbl in RCU-safe way
934 * @disk: disk to replace part_tbl for
935 * @new_ptbl: new part_tbl to install
936 *
937 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
938 * original ptbl is freed using RCU callback.
939 *
940 * LOCKING:
941 * Matching bd_mutx locked.
942 */
943static void disk_replace_part_tbl(struct gendisk *disk,
944 struct disk_part_tbl *new_ptbl)
945{
946 struct disk_part_tbl *old_ptbl = disk->part_tbl;
947
948 rcu_assign_pointer(disk->part_tbl, new_ptbl);
a6f23657
JA
949
950 if (old_ptbl) {
951 rcu_assign_pointer(old_ptbl->last_lookup, NULL);
540eed56 952 call_rcu(&old_ptbl->rcu_head, disk_free_ptbl_rcu_cb);
a6f23657 953 }
540eed56
TH
954}
955
956/**
957 * disk_expand_part_tbl - expand disk->part_tbl
958 * @disk: disk to expand part_tbl for
959 * @partno: expand such that this partno can fit in
960 *
961 * Expand disk->part_tbl such that @partno can fit in. disk->part_tbl
962 * uses RCU to allow unlocked dereferencing for stats and other stuff.
963 *
964 * LOCKING:
965 * Matching bd_mutex locked, might sleep.
966 *
967 * RETURNS:
968 * 0 on success, -errno on failure.
969 */
970int disk_expand_part_tbl(struct gendisk *disk, int partno)
971{
972 struct disk_part_tbl *old_ptbl = disk->part_tbl;
973 struct disk_part_tbl *new_ptbl;
974 int len = old_ptbl ? old_ptbl->len : 0;
975 int target = partno + 1;
976 size_t size;
977 int i;
978
979 /* disk_max_parts() is zero during initialization, ignore if so */
980 if (disk_max_parts(disk) && target > disk_max_parts(disk))
981 return -EINVAL;
982
983 if (target <= len)
984 return 0;
985
986 size = sizeof(*new_ptbl) + target * sizeof(new_ptbl->part[0]);
987 new_ptbl = kzalloc_node(size, GFP_KERNEL, disk->node_id);
988 if (!new_ptbl)
989 return -ENOMEM;
990
540eed56
TH
991 new_ptbl->len = target;
992
993 for (i = 0; i < len; i++)
994 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
995
996 disk_replace_part_tbl(disk, new_ptbl);
997 return 0;
998}
999
edfaa7c3 1000static void disk_release(struct device *dev)
1da177e4 1001{
edfaa7c3
KS
1002 struct gendisk *disk = dev_to_disk(dev);
1003
1da177e4 1004 kfree(disk->random);
540eed56 1005 disk_replace_part_tbl(disk, NULL);
074a7aca 1006 free_part_stats(&disk->part0);
1da177e4
LT
1007 kfree(disk);
1008}
edfaa7c3
KS
1009struct class block_class = {
1010 .name = "block",
1da177e4
LT
1011};
1012
e454cea2 1013static char *block_devnode(struct device *dev, mode_t *mode)
b03f38b6
KS
1014{
1015 struct gendisk *disk = dev_to_disk(dev);
1016
e454cea2
KS
1017 if (disk->devnode)
1018 return disk->devnode(disk, mode);
b03f38b6
KS
1019 return NULL;
1020}
1021
1826eadf 1022static struct device_type disk_type = {
edfaa7c3
KS
1023 .name = "disk",
1024 .groups = disk_attr_groups,
1025 .release = disk_release,
e454cea2 1026 .devnode = block_devnode,
1da177e4
LT
1027};
1028
a6e2ba88 1029#ifdef CONFIG_PROC_FS
cf771cb5
TH
1030/*
1031 * aggregate disk stat collector. Uses the same stats that the sysfs
1032 * entries do, above, but makes them available through one seq_file.
1033 *
1034 * The output looks suspiciously like /proc/partitions with a bunch of
1035 * extra fields.
1036 */
1037static int diskstats_show(struct seq_file *seqf, void *v)
1da177e4
LT
1038{
1039 struct gendisk *gp = v;
e71bf0d0
TH
1040 struct disk_part_iter piter;
1041 struct hd_struct *hd;
1da177e4 1042 char buf[BDEVNAME_SIZE];
c9959059 1043 int cpu;
1da177e4
LT
1044
1045 /*
ed9e1982 1046 if (&disk_to_dev(gp)->kobj.entry == block_class.devices.next)
cf771cb5 1047 seq_puts(seqf, "major minor name"
1da177e4
LT
1048 " rio rmerge rsect ruse wio wmerge "
1049 "wsect wuse running use aveq"
1050 "\n\n");
1051 */
1052
71982a40 1053 disk_part_iter_init(&piter, gp, DISK_PITER_INCL_EMPTY_PART0);
e71bf0d0 1054 while ((hd = disk_part_iter_next(&piter))) {
074a7aca 1055 cpu = part_stat_lock();
c9959059 1056 part_round_stats(cpu, hd);
074a7aca 1057 part_stat_unlock();
1f014290 1058 seq_printf(seqf, "%4d %7d %s %lu %lu %llu "
28f39d55 1059 "%u %lu %lu %llu %u %u %u %u\n",
f331c029
TH
1060 MAJOR(part_devt(hd)), MINOR(part_devt(hd)),
1061 disk_name(gp, hd->partno, buf),
28f39d55
JM
1062 part_stat_read(hd, ios[0]),
1063 part_stat_read(hd, merges[0]),
1064 (unsigned long long)part_stat_read(hd, sectors[0]),
1065 jiffies_to_msecs(part_stat_read(hd, ticks[0])),
1066 part_stat_read(hd, ios[1]),
1067 part_stat_read(hd, merges[1]),
1068 (unsigned long long)part_stat_read(hd, sectors[1]),
1069 jiffies_to_msecs(part_stat_read(hd, ticks[1])),
316d315b 1070 part_in_flight(hd),
28f39d55
JM
1071 jiffies_to_msecs(part_stat_read(hd, io_ticks)),
1072 jiffies_to_msecs(part_stat_read(hd, time_in_queue))
1073 );
1da177e4 1074 }
e71bf0d0 1075 disk_part_iter_exit(&piter);
1da177e4
LT
1076
1077 return 0;
1078}
1079
31d85ab2 1080static const struct seq_operations diskstats_op = {
def4e38d
TH
1081 .start = disk_seqf_start,
1082 .next = disk_seqf_next,
1083 .stop = disk_seqf_stop,
1da177e4
LT
1084 .show = diskstats_show
1085};
f500975a 1086
31d85ab2
AD
1087static int diskstats_open(struct inode *inode, struct file *file)
1088{
1089 return seq_open(file, &diskstats_op);
1090}
1091
1092static const struct file_operations proc_diskstats_operations = {
1093 .open = diskstats_open,
1094 .read = seq_read,
1095 .llseek = seq_lseek,
1096 .release = seq_release,
1097};
1098
f500975a
AD
1099static int __init proc_genhd_init(void)
1100{
31d85ab2 1101 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
f500975a
AD
1102 proc_create("partitions", 0, NULL, &proc_partitions_operations);
1103 return 0;
1104}
1105module_init(proc_genhd_init);
a6e2ba88 1106#endif /* CONFIG_PROC_FS */
1da177e4 1107
8ce7ad7b
KCA
1108static void media_change_notify_thread(struct work_struct *work)
1109{
1110 struct gendisk *gd = container_of(work, struct gendisk, async_notify);
1111 char event[] = "MEDIA_CHANGE=1";
1112 char *envp[] = { event, NULL };
1113
1114 /*
1115 * set enviroment vars to indicate which event this is for
1116 * so that user space will know to go check the media status.
1117 */
ed9e1982 1118 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
8ce7ad7b
KCA
1119 put_device(gd->driverfs_dev);
1120}
1121
1826eadf 1122#if 0
8ce7ad7b
KCA
1123void genhd_media_change_notify(struct gendisk *disk)
1124{
1125 get_device(disk->driverfs_dev);
1126 schedule_work(&disk->async_notify);
1127}
1128EXPORT_SYMBOL_GPL(genhd_media_change_notify);
1826eadf 1129#endif /* 0 */
8ce7ad7b 1130
cf771cb5 1131dev_t blk_lookup_devt(const char *name, int partno)
a142be85 1132{
def4e38d
TH
1133 dev_t devt = MKDEV(0, 0);
1134 struct class_dev_iter iter;
1135 struct device *dev;
a142be85 1136
def4e38d
TH
1137 class_dev_iter_init(&iter, &block_class, NULL, &disk_type);
1138 while ((dev = class_dev_iter_next(&iter))) {
a142be85 1139 struct gendisk *disk = dev_to_disk(dev);
548b10eb 1140 struct hd_struct *part;
a142be85 1141
3ada8b7e 1142 if (strcmp(dev_name(dev), name))
f331c029 1143 continue;
f331c029 1144
41b8c853
NB
1145 if (partno < disk->minors) {
1146 /* We need to return the right devno, even
1147 * if the partition doesn't exist yet.
1148 */
1149 devt = MKDEV(MAJOR(dev->devt),
1150 MINOR(dev->devt) + partno);
1151 break;
1152 }
548b10eb 1153 part = disk_get_part(disk, partno);
2bbedcb4 1154 if (part) {
f331c029 1155 devt = part_devt(part);
e71bf0d0 1156 disk_put_part(part);
548b10eb 1157 break;
def4e38d 1158 }
548b10eb 1159 disk_put_part(part);
5c0ef6d0 1160 }
def4e38d 1161 class_dev_iter_exit(&iter);
edfaa7c3
KS
1162 return devt;
1163}
edfaa7c3
KS
1164EXPORT_SYMBOL(blk_lookup_devt);
1165
1da177e4
LT
1166struct gendisk *alloc_disk(int minors)
1167{
1946089a
CL
1168 return alloc_disk_node(minors, -1);
1169}
689d6fac 1170EXPORT_SYMBOL(alloc_disk);
1946089a
CL
1171
1172struct gendisk *alloc_disk_node(int minors, int node_id)
1173{
1174 struct gendisk *disk;
1175
94f6030c
CL
1176 disk = kmalloc_node(sizeof(struct gendisk),
1177 GFP_KERNEL | __GFP_ZERO, node_id);
1da177e4 1178 if (disk) {
074a7aca 1179 if (!init_part_stats(&disk->part0)) {
1da177e4
LT
1180 kfree(disk);
1181 return NULL;
1182 }
bf91db18 1183 disk->node_id = node_id;
540eed56
TH
1184 if (disk_expand_part_tbl(disk, 0)) {
1185 free_part_stats(&disk->part0);
b5d0b9df
TH
1186 kfree(disk);
1187 return NULL;
1da177e4 1188 }
540eed56 1189 disk->part_tbl->part[0] = &disk->part0;
b5d0b9df 1190
1da177e4 1191 disk->minors = minors;
1da177e4 1192 rand_initialize_disk(disk);
ed9e1982
TH
1193 disk_to_dev(disk)->class = &block_class;
1194 disk_to_dev(disk)->type = &disk_type;
1195 device_initialize(disk_to_dev(disk));
8ce7ad7b
KCA
1196 INIT_WORK(&disk->async_notify,
1197 media_change_notify_thread);
1da177e4
LT
1198 }
1199 return disk;
1200}
1946089a 1201EXPORT_SYMBOL(alloc_disk_node);
1da177e4
LT
1202
1203struct kobject *get_disk(struct gendisk *disk)
1204{
1205 struct module *owner;
1206 struct kobject *kobj;
1207
1208 if (!disk->fops)
1209 return NULL;
1210 owner = disk->fops->owner;
1211 if (owner && !try_module_get(owner))
1212 return NULL;
ed9e1982 1213 kobj = kobject_get(&disk_to_dev(disk)->kobj);
1da177e4
LT
1214 if (kobj == NULL) {
1215 module_put(owner);
1216 return NULL;
1217 }
1218 return kobj;
1219
1220}
1221
1222EXPORT_SYMBOL(get_disk);
1223
1224void put_disk(struct gendisk *disk)
1225{
1226 if (disk)
ed9e1982 1227 kobject_put(&disk_to_dev(disk)->kobj);
1da177e4
LT
1228}
1229
1230EXPORT_SYMBOL(put_disk);
1231
e3264a4d
HR
1232static void set_disk_ro_uevent(struct gendisk *gd, int ro)
1233{
1234 char event[] = "DISK_RO=1";
1235 char *envp[] = { event, NULL };
1236
1237 if (!ro)
1238 event[8] = '0';
1239 kobject_uevent_env(&disk_to_dev(gd)->kobj, KOBJ_CHANGE, envp);
1240}
1241
1da177e4
LT
1242void set_device_ro(struct block_device *bdev, int flag)
1243{
b7db9956 1244 bdev->bd_part->policy = flag;
1da177e4
LT
1245}
1246
1247EXPORT_SYMBOL(set_device_ro);
1248
1249void set_disk_ro(struct gendisk *disk, int flag)
1250{
e71bf0d0
TH
1251 struct disk_part_iter piter;
1252 struct hd_struct *part;
1253
e3264a4d
HR
1254 if (disk->part0.policy != flag) {
1255 set_disk_ro_uevent(disk, flag);
1256 disk->part0.policy = flag;
1257 }
1258
1259 disk_part_iter_init(&piter, disk, DISK_PITER_INCL_EMPTY);
e71bf0d0
TH
1260 while ((part = disk_part_iter_next(&piter)))
1261 part->policy = flag;
1262 disk_part_iter_exit(&piter);
1da177e4
LT
1263}
1264
1265EXPORT_SYMBOL(set_disk_ro);
1266
1267int bdev_read_only(struct block_device *bdev)
1268{
1269 if (!bdev)
1270 return 0;
b7db9956 1271 return bdev->bd_part->policy;
1da177e4
LT
1272}
1273
1274EXPORT_SYMBOL(bdev_read_only);
1275
cf771cb5 1276int invalidate_partition(struct gendisk *disk, int partno)
1da177e4
LT
1277{
1278 int res = 0;
cf771cb5 1279 struct block_device *bdev = bdget_disk(disk, partno);
1da177e4 1280 if (bdev) {
2ef41634
CH
1281 fsync_bdev(bdev);
1282 res = __invalidate_device(bdev);
1da177e4
LT
1283 bdput(bdev);
1284 }
1285 return res;
1286}
1287
1288EXPORT_SYMBOL(invalidate_partition);