Add some block/ source files to the kernel-api docbook. Fix kernel-doc notation in...
[linux-flexiantxendom0-3.2.10.git] / block / genhd.c
1 /*
2  *  gendisk handling
3  */
4
5 #include <linux/module.h>
6 #include <linux/fs.h>
7 #include <linux/genhd.h>
8 #include <linux/kdev_t.h>
9 #include <linux/kernel.h>
10 #include <linux/blkdev.h>
11 #include <linux/init.h>
12 #include <linux/spinlock.h>
13 #include <linux/seq_file.h>
14 #include <linux/slab.h>
15 #include <linux/kmod.h>
16 #include <linux/kobj_map.h>
17 #include <linux/buffer_head.h>
18 #include <linux/mutex.h>
19
20 #include "blk.h"
21
22 static DEFINE_MUTEX(block_class_lock);
23 #ifndef CONFIG_SYSFS_DEPRECATED
24 struct kobject *block_depr;
25 #endif
26
27 static struct device_type disk_type;
28
29 /*
30  * Can be deleted altogether. Later.
31  *
32  */
33 static struct blk_major_name {
34         struct blk_major_name *next;
35         int major;
36         char name[16];
37 } *major_names[BLKDEV_MAJOR_HASH_SIZE];
38
39 /* index in the above - for now: assume no multimajor ranges */
40 static inline int major_to_index(int major)
41 {
42         return major % BLKDEV_MAJOR_HASH_SIZE;
43 }
44
45 #ifdef CONFIG_PROC_FS
46 void blkdev_show(struct seq_file *f, off_t offset)
47 {
48         struct blk_major_name *dp;
49
50         if (offset < BLKDEV_MAJOR_HASH_SIZE) {
51                 mutex_lock(&block_class_lock);
52                 for (dp = major_names[offset]; dp; dp = dp->next)
53                         seq_printf(f, "%3d %s\n", dp->major, dp->name);
54                 mutex_unlock(&block_class_lock);
55         }
56 }
57 #endif /* CONFIG_PROC_FS */
58
59 int register_blkdev(unsigned int major, const char *name)
60 {
61         struct blk_major_name **n, *p;
62         int index, ret = 0;
63
64         mutex_lock(&block_class_lock);
65
66         /* temporary */
67         if (major == 0) {
68                 for (index = ARRAY_SIZE(major_names)-1; index > 0; index--) {
69                         if (major_names[index] == NULL)
70                                 break;
71                 }
72
73                 if (index == 0) {
74                         printk("register_blkdev: failed to get major for %s\n",
75                                name);
76                         ret = -EBUSY;
77                         goto out;
78                 }
79                 major = index;
80                 ret = major;
81         }
82
83         p = kmalloc(sizeof(struct blk_major_name), GFP_KERNEL);
84         if (p == NULL) {
85                 ret = -ENOMEM;
86                 goto out;
87         }
88
89         p->major = major;
90         strlcpy(p->name, name, sizeof(p->name));
91         p->next = NULL;
92         index = major_to_index(major);
93
94         for (n = &major_names[index]; *n; n = &(*n)->next) {
95                 if ((*n)->major == major)
96                         break;
97         }
98         if (!*n)
99                 *n = p;
100         else
101                 ret = -EBUSY;
102
103         if (ret < 0) {
104                 printk("register_blkdev: cannot get major %d for %s\n",
105                        major, name);
106                 kfree(p);
107         }
108 out:
109         mutex_unlock(&block_class_lock);
110         return ret;
111 }
112
113 EXPORT_SYMBOL(register_blkdev);
114
115 void unregister_blkdev(unsigned int major, const char *name)
116 {
117         struct blk_major_name **n;
118         struct blk_major_name *p = NULL;
119         int index = major_to_index(major);
120
121         mutex_lock(&block_class_lock);
122         for (n = &major_names[index]; *n; n = &(*n)->next)
123                 if ((*n)->major == major)
124                         break;
125         if (!*n || strcmp((*n)->name, name)) {
126                 WARN_ON(1);
127         } else {
128                 p = *n;
129                 *n = p->next;
130         }
131         mutex_unlock(&block_class_lock);
132         kfree(p);
133 }
134
135 EXPORT_SYMBOL(unregister_blkdev);
136
137 static struct kobj_map *bdev_map;
138
139 /*
140  * Register device numbers dev..(dev+range-1)
141  * range must be nonzero
142  * The hash chain is sorted on range, so that subranges can override.
143  */
144 void blk_register_region(dev_t devt, unsigned long range, struct module *module,
145                          struct kobject *(*probe)(dev_t, int *, void *),
146                          int (*lock)(dev_t, void *), void *data)
147 {
148         kobj_map(bdev_map, devt, range, module, probe, lock, data);
149 }
150
151 EXPORT_SYMBOL(blk_register_region);
152
153 void blk_unregister_region(dev_t devt, unsigned long range)
154 {
155         kobj_unmap(bdev_map, devt, range);
156 }
157
158 EXPORT_SYMBOL(blk_unregister_region);
159
160 static struct kobject *exact_match(dev_t devt, int *part, void *data)
161 {
162         struct gendisk *p = data;
163
164         return &p->dev.kobj;
165 }
166
167 static int exact_lock(dev_t devt, void *data)
168 {
169         struct gendisk *p = data;
170
171         if (!get_disk(p))
172                 return -1;
173         return 0;
174 }
175
176 /**
177  * add_disk - add partitioning information to kernel list
178  * @disk: per-device partitioning information
179  *
180  * This function registers the partitioning information in @disk
181  * with the kernel.
182  */
183 void add_disk(struct gendisk *disk)
184 {
185         struct backing_dev_info *bdi;
186         int retval;
187
188         disk->flags |= GENHD_FL_UP;
189         blk_register_region(MKDEV(disk->major, disk->first_minor),
190                             disk->minors, NULL, exact_match, exact_lock, disk);
191         register_disk(disk);
192         blk_register_queue(disk);
193
194         bdi = &disk->queue->backing_dev_info;
195         bdi_register_dev(bdi, MKDEV(disk->major, disk->first_minor));
196         retval = sysfs_create_link(&disk->dev.kobj, &bdi->dev->kobj, "bdi");
197         WARN_ON(retval);
198 }
199
200 EXPORT_SYMBOL(add_disk);
201 EXPORT_SYMBOL(del_gendisk);     /* in partitions/check.c */
202
203 void unlink_gendisk(struct gendisk *disk)
204 {
205         sysfs_remove_link(&disk->dev.kobj, "bdi");
206         bdi_unregister(&disk->queue->backing_dev_info);
207         blk_unregister_queue(disk);
208         blk_unregister_region(MKDEV(disk->major, disk->first_minor),
209                               disk->minors);
210 }
211
212 /**
213  * get_gendisk - get partitioning information for a given device
214  * @devt: device to get partitioning information for
215  * @part: returned partition index
216  *
217  * This function gets the structure containing partitioning
218  * information for the given device @devt.
219  */
220 struct gendisk *get_gendisk(dev_t devt, int *part)
221 {
222         struct kobject *kobj = kobj_lookup(bdev_map, devt, part);
223         struct device *dev = kobj_to_dev(kobj);
224
225         return  kobj ? dev_to_disk(dev) : NULL;
226 }
227
228 /*
229  * print a partitions - intended for places where the root filesystem can't be
230  * mounted and thus to give the victim some idea of what went wrong
231  */
232 static int printk_partition(struct device *dev, void *data)
233 {
234         struct gendisk *sgp;
235         char buf[BDEVNAME_SIZE];
236         int n;
237
238         if (dev->type != &disk_type)
239                 goto exit;
240
241         sgp = dev_to_disk(dev);
242         /*
243          * Don't show empty devices or things that have been surpressed
244          */
245         if (get_capacity(sgp) == 0 ||
246             (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
247                 goto exit;
248
249         /*
250          * Note, unlike /proc/partitions, I am showing the numbers in
251          * hex - the same format as the root= option takes.
252          */
253         printk("%02x%02x %10llu %s",
254                 sgp->major, sgp->first_minor,
255                 (unsigned long long)get_capacity(sgp) >> 1,
256                 disk_name(sgp, 0, buf));
257         if (sgp->driverfs_dev != NULL &&
258             sgp->driverfs_dev->driver != NULL)
259                 printk(" driver: %s\n",
260                         sgp->driverfs_dev->driver->name);
261         else
262                 printk(" (driver?)\n");
263
264         /* now show the partitions */
265         for (n = 0; n < sgp->minors - 1; ++n) {
266                 if (sgp->part[n] == NULL)
267                         goto exit;
268                 if (sgp->part[n]->nr_sects == 0)
269                         goto exit;
270                 printk("  %02x%02x %10llu %s\n",
271                         sgp->major, n + 1 + sgp->first_minor,
272                         (unsigned long long)sgp->part[n]->nr_sects >> 1,
273                         disk_name(sgp, n + 1, buf));
274         }
275 exit:
276         return 0;
277 }
278
279 /*
280  * print a full list of all partitions - intended for places where the root
281  * filesystem can't be mounted and thus to give the victim some idea of what
282  * went wrong
283  */
284 void __init printk_all_partitions(void)
285 {
286         mutex_lock(&block_class_lock);
287         class_for_each_device(&block_class, NULL, NULL, printk_partition);
288         mutex_unlock(&block_class_lock);
289 }
290
291 #ifdef CONFIG_PROC_FS
292 /* iterator */
293 static int find_start(struct device *dev, void *data)
294 {
295         loff_t *k = data;
296
297         if (dev->type != &disk_type)
298                 return 0;
299         if (!*k)
300                 return 1;
301         (*k)--;
302         return 0;
303 }
304
305 static void *part_start(struct seq_file *part, loff_t *pos)
306 {
307         struct device *dev;
308         loff_t k = *pos;
309
310         if (!k)
311                 part->private = (void *)1LU;    /* tell show to print header */
312
313         mutex_lock(&block_class_lock);
314         dev = class_find_device(&block_class, NULL, &k, find_start);
315         if (dev) {
316                 put_device(dev);
317                 return dev_to_disk(dev);
318         }
319         return NULL;
320 }
321
322 static int find_next(struct device *dev, void *data)
323 {
324         if (dev->type == &disk_type)
325                 return 1;
326         return 0;
327 }
328
329 static void *part_next(struct seq_file *part, void *v, loff_t *pos)
330 {
331         struct gendisk *gp = v;
332         struct device *dev;
333         ++*pos;
334         dev = class_find_device(&block_class, &gp->dev, NULL, find_next);
335         if (dev) {
336                 put_device(dev);
337                 return dev_to_disk(dev);
338         }
339         return NULL;
340 }
341
342 static void part_stop(struct seq_file *part, void *v)
343 {
344         mutex_unlock(&block_class_lock);
345 }
346
347 static int show_partition(struct seq_file *part, void *v)
348 {
349         struct gendisk *sgp = v;
350         int n;
351         char buf[BDEVNAME_SIZE];
352
353         /*
354          * Print header if start told us to do.  This is to preserve
355          * the original behavior of not printing header if no
356          * partition exists.  This hackery will be removed later with
357          * class iteration clean up.
358          */
359         if (part->private) {
360                 seq_puts(part, "major minor  #blocks  name\n\n");
361                 part->private = NULL;
362         }
363
364         /* Don't show non-partitionable removeable devices or empty devices */
365         if (!get_capacity(sgp) ||
366                         (sgp->minors == 1 && (sgp->flags & GENHD_FL_REMOVABLE)))
367                 return 0;
368         if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
369                 return 0;
370
371         /* show the full disk and all non-0 size partitions of it */
372         seq_printf(part, "%4d  %4d %10llu %s\n",
373                 sgp->major, sgp->first_minor,
374                 (unsigned long long)get_capacity(sgp) >> 1,
375                 disk_name(sgp, 0, buf));
376         for (n = 0; n < sgp->minors - 1; n++) {
377                 if (!sgp->part[n])
378                         continue;
379                 if (sgp->part[n]->nr_sects == 0)
380                         continue;
381                 seq_printf(part, "%4d  %4d %10llu %s\n",
382                         sgp->major, n + 1 + sgp->first_minor,
383                         (unsigned long long)sgp->part[n]->nr_sects >> 1 ,
384                         disk_name(sgp, n + 1, buf));
385         }
386
387         return 0;
388 }
389
390 const struct seq_operations partitions_op = {
391         .start  = part_start,
392         .next   = part_next,
393         .stop   = part_stop,
394         .show   = show_partition
395 };
396 #endif
397
398
399 static struct kobject *base_probe(dev_t devt, int *part, void *data)
400 {
401         if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
402                 /* Make old-style 2.4 aliases work */
403                 request_module("block-major-%d", MAJOR(devt));
404         return NULL;
405 }
406
407 static int __init genhd_device_init(void)
408 {
409         int error;
410
411         block_class.dev_kobj = sysfs_dev_block_kobj;
412         error = class_register(&block_class);
413         if (unlikely(error))
414                 return error;
415         bdev_map = kobj_map_init(base_probe, &block_class_lock);
416         blk_dev_init();
417
418 #ifndef CONFIG_SYSFS_DEPRECATED
419         /* create top-level block dir */
420         block_depr = kobject_create_and_add("block", NULL);
421 #endif
422         return 0;
423 }
424
425 subsys_initcall(genhd_device_init);
426
427 static ssize_t disk_range_show(struct device *dev,
428                                struct device_attribute *attr, char *buf)
429 {
430         struct gendisk *disk = dev_to_disk(dev);
431
432         return sprintf(buf, "%d\n", disk->minors);
433 }
434
435 static ssize_t disk_removable_show(struct device *dev,
436                                    struct device_attribute *attr, char *buf)
437 {
438         struct gendisk *disk = dev_to_disk(dev);
439
440         return sprintf(buf, "%d\n",
441                        (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
442 }
443
444 static ssize_t disk_ro_show(struct device *dev,
445                                    struct device_attribute *attr, char *buf)
446 {
447         struct gendisk *disk = dev_to_disk(dev);
448
449         return sprintf(buf, "%d\n", disk->policy ? 1 : 0);
450 }
451
452 static ssize_t disk_size_show(struct device *dev,
453                               struct device_attribute *attr, char *buf)
454 {
455         struct gendisk *disk = dev_to_disk(dev);
456
457         return sprintf(buf, "%llu\n", (unsigned long long)get_capacity(disk));
458 }
459
460 static ssize_t disk_capability_show(struct device *dev,
461                                     struct device_attribute *attr, char *buf)
462 {
463         struct gendisk *disk = dev_to_disk(dev);
464
465         return sprintf(buf, "%x\n", disk->flags);
466 }
467
468 static ssize_t disk_stat_show(struct device *dev,
469                               struct device_attribute *attr, char *buf)
470 {
471         struct gendisk *disk = dev_to_disk(dev);
472
473         preempt_disable();
474         disk_round_stats(disk);
475         preempt_enable();
476         return sprintf(buf,
477                 "%8lu %8lu %8llu %8u "
478                 "%8lu %8lu %8llu %8u "
479                 "%8u %8u %8u"
480                 "\n",
481                 disk_stat_read(disk, ios[READ]),
482                 disk_stat_read(disk, merges[READ]),
483                 (unsigned long long)disk_stat_read(disk, sectors[READ]),
484                 jiffies_to_msecs(disk_stat_read(disk, ticks[READ])),
485                 disk_stat_read(disk, ios[WRITE]),
486                 disk_stat_read(disk, merges[WRITE]),
487                 (unsigned long long)disk_stat_read(disk, sectors[WRITE]),
488                 jiffies_to_msecs(disk_stat_read(disk, ticks[WRITE])),
489                 disk->in_flight,
490                 jiffies_to_msecs(disk_stat_read(disk, io_ticks)),
491                 jiffies_to_msecs(disk_stat_read(disk, time_in_queue)));
492 }
493
494 #ifdef CONFIG_FAIL_MAKE_REQUEST
495 static ssize_t disk_fail_show(struct device *dev,
496                               struct device_attribute *attr, char *buf)
497 {
498         struct gendisk *disk = dev_to_disk(dev);
499
500         return sprintf(buf, "%d\n", disk->flags & GENHD_FL_FAIL ? 1 : 0);
501 }
502
503 static ssize_t disk_fail_store(struct device *dev,
504                                struct device_attribute *attr,
505                                const char *buf, size_t count)
506 {
507         struct gendisk *disk = dev_to_disk(dev);
508         int i;
509
510         if (count > 0 && sscanf(buf, "%d", &i) > 0) {
511                 if (i == 0)
512                         disk->flags &= ~GENHD_FL_FAIL;
513                 else
514                         disk->flags |= GENHD_FL_FAIL;
515         }
516
517         return count;
518 }
519
520 #endif
521
522 static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
523 static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
524 static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
525 static DEVICE_ATTR(size, S_IRUGO, disk_size_show, NULL);
526 static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
527 static DEVICE_ATTR(stat, S_IRUGO, disk_stat_show, NULL);
528 #ifdef CONFIG_FAIL_MAKE_REQUEST
529 static struct device_attribute dev_attr_fail =
530         __ATTR(make-it-fail, S_IRUGO|S_IWUSR, disk_fail_show, disk_fail_store);
531 #endif
532
533 static struct attribute *disk_attrs[] = {
534         &dev_attr_range.attr,
535         &dev_attr_removable.attr,
536         &dev_attr_ro.attr,
537         &dev_attr_size.attr,
538         &dev_attr_capability.attr,
539         &dev_attr_stat.attr,
540 #ifdef CONFIG_FAIL_MAKE_REQUEST
541         &dev_attr_fail.attr,
542 #endif
543         NULL
544 };
545
546 static struct attribute_group disk_attr_group = {
547         .attrs = disk_attrs,
548 };
549
550 static struct attribute_group *disk_attr_groups[] = {
551         &disk_attr_group,
552         NULL
553 };
554
555 static void disk_release(struct device *dev)
556 {
557         struct gendisk *disk = dev_to_disk(dev);
558
559         kfree(disk->random);
560         kfree(disk->part);
561         free_disk_stats(disk);
562         kfree(disk);
563 }
564 struct class block_class = {
565         .name           = "block",
566 };
567
568 static struct device_type disk_type = {
569         .name           = "disk",
570         .groups         = disk_attr_groups,
571         .release        = disk_release,
572 };
573
574 #ifdef CONFIG_PROC_FS
575 /*
576  * aggregate disk stat collector.  Uses the same stats that the sysfs
577  * entries do, above, but makes them available through one seq_file.
578  *
579  * The output looks suspiciously like /proc/partitions with a bunch of
580  * extra fields.
581  */
582
583 static void *diskstats_start(struct seq_file *part, loff_t *pos)
584 {
585         struct device *dev;
586         loff_t k = *pos;
587
588         mutex_lock(&block_class_lock);
589         dev = class_find_device(&block_class, NULL, &k, find_start);
590         if (dev) {
591                 put_device(dev);
592                 return dev_to_disk(dev);
593         }
594         return NULL;
595 }
596
597 static void *diskstats_next(struct seq_file *part, void *v, loff_t *pos)
598 {
599         struct gendisk *gp = v;
600         struct device *dev;
601
602         ++*pos;
603         dev = class_find_device(&block_class, &gp->dev, NULL, find_next);
604         if (dev) {
605                 put_device(dev);
606                 return dev_to_disk(dev);
607         }
608         return NULL;
609 }
610
611 static void diskstats_stop(struct seq_file *part, void *v)
612 {
613         mutex_unlock(&block_class_lock);
614 }
615
616 static int diskstats_show(struct seq_file *s, void *v)
617 {
618         struct gendisk *gp = v;
619         char buf[BDEVNAME_SIZE];
620         int n = 0;
621
622         /*
623         if (&gp->dev.kobj.entry == block_class.devices.next)
624                 seq_puts(s,     "major minor name"
625                                 "     rio rmerge rsect ruse wio wmerge "
626                                 "wsect wuse running use aveq"
627                                 "\n\n");
628         */
629  
630         preempt_disable();
631         disk_round_stats(gp);
632         preempt_enable();
633         seq_printf(s, "%4d %4d %s %lu %lu %llu %u %lu %lu %llu %u %u %u %u\n",
634                 gp->major, n + gp->first_minor, disk_name(gp, n, buf),
635                 disk_stat_read(gp, ios[0]), disk_stat_read(gp, merges[0]),
636                 (unsigned long long)disk_stat_read(gp, sectors[0]),
637                 jiffies_to_msecs(disk_stat_read(gp, ticks[0])),
638                 disk_stat_read(gp, ios[1]), disk_stat_read(gp, merges[1]),
639                 (unsigned long long)disk_stat_read(gp, sectors[1]),
640                 jiffies_to_msecs(disk_stat_read(gp, ticks[1])),
641                 gp->in_flight,
642                 jiffies_to_msecs(disk_stat_read(gp, io_ticks)),
643                 jiffies_to_msecs(disk_stat_read(gp, time_in_queue)));
644
645         /* now show all non-0 size partitions of it */
646         for (n = 0; n < gp->minors - 1; n++) {
647                 struct hd_struct *hd = gp->part[n];
648
649                 if (!hd || !hd->nr_sects)
650                         continue;
651
652                 preempt_disable();
653                 part_round_stats(hd);
654                 preempt_enable();
655                 seq_printf(s, "%4d %4d %s %lu %lu %llu "
656                            "%u %lu %lu %llu %u %u %u %u\n",
657                            gp->major, n + gp->first_minor + 1,
658                            disk_name(gp, n + 1, buf),
659                            part_stat_read(hd, ios[0]),
660                            part_stat_read(hd, merges[0]),
661                            (unsigned long long)part_stat_read(hd, sectors[0]),
662                            jiffies_to_msecs(part_stat_read(hd, ticks[0])),
663                            part_stat_read(hd, ios[1]),
664                            part_stat_read(hd, merges[1]),
665                            (unsigned long long)part_stat_read(hd, sectors[1]),
666                            jiffies_to_msecs(part_stat_read(hd, ticks[1])),
667                            hd->in_flight,
668                            jiffies_to_msecs(part_stat_read(hd, io_ticks)),
669                            jiffies_to_msecs(part_stat_read(hd, time_in_queue))
670                         );
671         }
672  
673         return 0;
674 }
675
676 const struct seq_operations diskstats_op = {
677         .start  = diskstats_start,
678         .next   = diskstats_next,
679         .stop   = diskstats_stop,
680         .show   = diskstats_show
681 };
682 #endif /* CONFIG_PROC_FS */
683
684 static void media_change_notify_thread(struct work_struct *work)
685 {
686         struct gendisk *gd = container_of(work, struct gendisk, async_notify);
687         char event[] = "MEDIA_CHANGE=1";
688         char *envp[] = { event, NULL };
689
690         /*
691          * set enviroment vars to indicate which event this is for
692          * so that user space will know to go check the media status.
693          */
694         kobject_uevent_env(&gd->dev.kobj, KOBJ_CHANGE, envp);
695         put_device(gd->driverfs_dev);
696 }
697
698 #if 0
699 void genhd_media_change_notify(struct gendisk *disk)
700 {
701         get_device(disk->driverfs_dev);
702         schedule_work(&disk->async_notify);
703 }
704 EXPORT_SYMBOL_GPL(genhd_media_change_notify);
705 #endif  /*  0  */
706
707 struct find_block {
708         const char *name;
709         int part;
710 };
711
712 static int match_id(struct device *dev, void *data)
713 {
714         struct find_block *find = data;
715
716         if (dev->type != &disk_type)
717                 return 0;
718         if (strcmp(dev->bus_id, find->name) == 0) {
719                 struct gendisk *disk = dev_to_disk(dev);
720                 if (find->part < disk->minors)
721                         return 1;
722         }
723         return 0;
724 }
725
726 dev_t blk_lookup_devt(const char *name, int part)
727 {
728         struct device *dev;
729         dev_t devt = MKDEV(0, 0);
730         struct find_block find;
731
732         mutex_lock(&block_class_lock);
733         find.name = name;
734         find.part = part;
735         dev = class_find_device(&block_class, NULL, &find, match_id);
736         if (dev) {
737                 put_device(dev);
738                 devt = MKDEV(MAJOR(dev->devt),
739                              MINOR(dev->devt) + part);
740         }
741         mutex_unlock(&block_class_lock);
742
743         return devt;
744 }
745 EXPORT_SYMBOL(blk_lookup_devt);
746
747 struct gendisk *alloc_disk(int minors)
748 {
749         return alloc_disk_node(minors, -1);
750 }
751
752 struct gendisk *alloc_disk_node(int minors, int node_id)
753 {
754         struct gendisk *disk;
755
756         disk = kmalloc_node(sizeof(struct gendisk),
757                                 GFP_KERNEL | __GFP_ZERO, node_id);
758         if (disk) {
759                 if (!init_disk_stats(disk)) {
760                         kfree(disk);
761                         return NULL;
762                 }
763                 if (minors > 1) {
764                         int size = (minors - 1) * sizeof(struct hd_struct *);
765                         disk->part = kmalloc_node(size,
766                                 GFP_KERNEL | __GFP_ZERO, node_id);
767                         if (!disk->part) {
768                                 free_disk_stats(disk);
769                                 kfree(disk);
770                                 return NULL;
771                         }
772                 }
773                 disk->minors = minors;
774                 rand_initialize_disk(disk);
775                 disk->dev.class = &block_class;
776                 disk->dev.type = &disk_type;
777                 device_initialize(&disk->dev);
778                 INIT_WORK(&disk->async_notify,
779                         media_change_notify_thread);
780         }
781         return disk;
782 }
783
784 EXPORT_SYMBOL(alloc_disk);
785 EXPORT_SYMBOL(alloc_disk_node);
786
787 struct kobject *get_disk(struct gendisk *disk)
788 {
789         struct module *owner;
790         struct kobject *kobj;
791
792         if (!disk->fops)
793                 return NULL;
794         owner = disk->fops->owner;
795         if (owner && !try_module_get(owner))
796                 return NULL;
797         kobj = kobject_get(&disk->dev.kobj);
798         if (kobj == NULL) {
799                 module_put(owner);
800                 return NULL;
801         }
802         return kobj;
803
804 }
805
806 EXPORT_SYMBOL(get_disk);
807
808 void put_disk(struct gendisk *disk)
809 {
810         if (disk)
811                 kobject_put(&disk->dev.kobj);
812 }
813
814 EXPORT_SYMBOL(put_disk);
815
816 void set_device_ro(struct block_device *bdev, int flag)
817 {
818         if (bdev->bd_contains != bdev)
819                 bdev->bd_part->policy = flag;
820         else
821                 bdev->bd_disk->policy = flag;
822 }
823
824 EXPORT_SYMBOL(set_device_ro);
825
826 void set_disk_ro(struct gendisk *disk, int flag)
827 {
828         int i;
829         disk->policy = flag;
830         for (i = 0; i < disk->minors - 1; i++)
831                 if (disk->part[i]) disk->part[i]->policy = flag;
832 }
833
834 EXPORT_SYMBOL(set_disk_ro);
835
836 int bdev_read_only(struct block_device *bdev)
837 {
838         if (!bdev)
839                 return 0;
840         else if (bdev->bd_contains != bdev)
841                 return bdev->bd_part->policy;
842         else
843                 return bdev->bd_disk->policy;
844 }
845
846 EXPORT_SYMBOL(bdev_read_only);
847
848 int invalidate_partition(struct gendisk *disk, int index)
849 {
850         int res = 0;
851         struct block_device *bdev = bdget_disk(disk, index);
852         if (bdev) {
853                 fsync_bdev(bdev);
854                 res = __invalidate_device(bdev);
855                 bdput(bdev);
856         }
857         return res;
858 }
859
860 EXPORT_SYMBOL(invalidate_partition);