remove blk_register_filter and blk_unregister_filter in gendisk
[pandora-kernel.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  * @dev: device to get partitioning information for
215  *
216  * This function gets the structure containing partitioning
217  * information for the given device @dev.
218  */
219 struct gendisk *get_gendisk(dev_t devt, int *part)
220 {
221         struct kobject *kobj = kobj_lookup(bdev_map, devt, part);
222         struct device *dev = kobj_to_dev(kobj);
223
224         return  kobj ? dev_to_disk(dev) : NULL;
225 }
226
227 /*
228  * print a partitions - intended for places where the root filesystem can't be
229  * mounted and thus to give the victim some idea of what went wrong
230  */
231 static int printk_partition(struct device *dev, void *data)
232 {
233         struct gendisk *sgp;
234         char buf[BDEVNAME_SIZE];
235         int n;
236
237         if (dev->type != &disk_type)
238                 goto exit;
239
240         sgp = dev_to_disk(dev);
241         /*
242          * Don't show empty devices or things that have been surpressed
243          */
244         if (get_capacity(sgp) == 0 ||
245             (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO))
246                 goto exit;
247
248         /*
249          * Note, unlike /proc/partitions, I am showing the numbers in
250          * hex - the same format as the root= option takes.
251          */
252         printk("%02x%02x %10llu %s",
253                 sgp->major, sgp->first_minor,
254                 (unsigned long long)get_capacity(sgp) >> 1,
255                 disk_name(sgp, 0, buf));
256         if (sgp->driverfs_dev != NULL &&
257             sgp->driverfs_dev->driver != NULL)
258                 printk(" driver: %s\n",
259                         sgp->driverfs_dev->driver->name);
260         else
261                 printk(" (driver?)\n");
262
263         /* now show the partitions */
264         for (n = 0; n < sgp->minors - 1; ++n) {
265                 if (sgp->part[n] == NULL)
266                         goto exit;
267                 if (sgp->part[n]->nr_sects == 0)
268                         goto exit;
269                 printk("  %02x%02x %10llu %s\n",
270                         sgp->major, n + 1 + sgp->first_minor,
271                         (unsigned long long)sgp->part[n]->nr_sects >> 1,
272                         disk_name(sgp, n + 1, buf));
273         }
274 exit:
275         return 0;
276 }
277
278 /*
279  * print a full list of all partitions - intended for places where the root
280  * filesystem can't be mounted and thus to give the victim some idea of what
281  * went wrong
282  */
283 void __init printk_all_partitions(void)
284 {
285         mutex_lock(&block_class_lock);
286         class_for_each_device(&block_class, NULL, NULL, printk_partition);
287         mutex_unlock(&block_class_lock);
288 }
289
290 #ifdef CONFIG_PROC_FS
291 /* iterator */
292 static int find_start(struct device *dev, void *data)
293 {
294         loff_t *k = data;
295
296         if (dev->type != &disk_type)
297                 return 0;
298         if (!*k)
299                 return 1;
300         (*k)--;
301         return 0;
302 }
303
304 static void *part_start(struct seq_file *part, loff_t *pos)
305 {
306         struct device *dev;
307         loff_t k = *pos;
308
309         if (!k)
310                 seq_puts(part, "major minor  #blocks  name\n\n");
311
312         mutex_lock(&block_class_lock);
313         dev = class_find_device(&block_class, NULL, &k, find_start);
314         if (dev) {
315                 put_device(dev);
316                 return dev_to_disk(dev);
317         }
318         return NULL;
319 }
320
321 static int find_next(struct device *dev, void *data)
322 {
323         if (dev->type == &disk_type)
324                 return 1;
325         return 0;
326 }
327
328 static void *part_next(struct seq_file *part, void *v, loff_t *pos)
329 {
330         struct gendisk *gp = v;
331         struct device *dev;
332         ++*pos;
333         dev = class_find_device(&block_class, &gp->dev, NULL, find_next);
334         if (dev) {
335                 put_device(dev);
336                 return dev_to_disk(dev);
337         }
338         return NULL;
339 }
340
341 static void part_stop(struct seq_file *part, void *v)
342 {
343         mutex_unlock(&block_class_lock);
344 }
345
346 static int show_partition(struct seq_file *part, void *v)
347 {
348         struct gendisk *sgp = v;
349         int n;
350         char buf[BDEVNAME_SIZE];
351
352         /* Don't show non-partitionable removeable devices or empty devices */
353         if (!get_capacity(sgp) ||
354                         (sgp->minors == 1 && (sgp->flags & GENHD_FL_REMOVABLE)))
355                 return 0;
356         if (sgp->flags & GENHD_FL_SUPPRESS_PARTITION_INFO)
357                 return 0;
358
359         /* show the full disk and all non-0 size partitions of it */
360         seq_printf(part, "%4d  %4d %10llu %s\n",
361                 sgp->major, sgp->first_minor,
362                 (unsigned long long)get_capacity(sgp) >> 1,
363                 disk_name(sgp, 0, buf));
364         for (n = 0; n < sgp->minors - 1; n++) {
365                 if (!sgp->part[n])
366                         continue;
367                 if (sgp->part[n]->nr_sects == 0)
368                         continue;
369                 seq_printf(part, "%4d  %4d %10llu %s\n",
370                         sgp->major, n + 1 + sgp->first_minor,
371                         (unsigned long long)sgp->part[n]->nr_sects >> 1 ,
372                         disk_name(sgp, n + 1, buf));
373         }
374
375         return 0;
376 }
377
378 const struct seq_operations partitions_op = {
379         .start  = part_start,
380         .next   = part_next,
381         .stop   = part_stop,
382         .show   = show_partition
383 };
384 #endif
385
386
387 static struct kobject *base_probe(dev_t devt, int *part, void *data)
388 {
389         if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
390                 /* Make old-style 2.4 aliases work */
391                 request_module("block-major-%d", MAJOR(devt));
392         return NULL;
393 }
394
395 static int __init genhd_device_init(void)
396 {
397         int error;
398
399         block_class.dev_kobj = sysfs_dev_block_kobj;
400         error = class_register(&block_class);
401         if (unlikely(error))
402                 return error;
403         bdev_map = kobj_map_init(base_probe, &block_class_lock);
404         blk_dev_init();
405
406 #ifndef CONFIG_SYSFS_DEPRECATED
407         /* create top-level block dir */
408         block_depr = kobject_create_and_add("block", NULL);
409 #endif
410         return 0;
411 }
412
413 subsys_initcall(genhd_device_init);
414
415 static ssize_t disk_range_show(struct device *dev,
416                                struct device_attribute *attr, char *buf)
417 {
418         struct gendisk *disk = dev_to_disk(dev);
419
420         return sprintf(buf, "%d\n", disk->minors);
421 }
422
423 static ssize_t disk_removable_show(struct device *dev,
424                                    struct device_attribute *attr, char *buf)
425 {
426         struct gendisk *disk = dev_to_disk(dev);
427
428         return sprintf(buf, "%d\n",
429                        (disk->flags & GENHD_FL_REMOVABLE ? 1 : 0));
430 }
431
432 static ssize_t disk_ro_show(struct device *dev,
433                                    struct device_attribute *attr, char *buf)
434 {
435         struct gendisk *disk = dev_to_disk(dev);
436
437         return sprintf(buf, "%d\n", disk->policy ? 1 : 0);
438 }
439
440 static ssize_t disk_size_show(struct device *dev,
441                               struct device_attribute *attr, char *buf)
442 {
443         struct gendisk *disk = dev_to_disk(dev);
444
445         return sprintf(buf, "%llu\n", (unsigned long long)get_capacity(disk));
446 }
447
448 static ssize_t disk_capability_show(struct device *dev,
449                                     struct device_attribute *attr, char *buf)
450 {
451         struct gendisk *disk = dev_to_disk(dev);
452
453         return sprintf(buf, "%x\n", disk->flags);
454 }
455
456 static ssize_t disk_stat_show(struct device *dev,
457                               struct device_attribute *attr, char *buf)
458 {
459         struct gendisk *disk = dev_to_disk(dev);
460
461         preempt_disable();
462         disk_round_stats(disk);
463         preempt_enable();
464         return sprintf(buf,
465                 "%8lu %8lu %8llu %8u "
466                 "%8lu %8lu %8llu %8u "
467                 "%8u %8u %8u"
468                 "\n",
469                 disk_stat_read(disk, ios[READ]),
470                 disk_stat_read(disk, merges[READ]),
471                 (unsigned long long)disk_stat_read(disk, sectors[READ]),
472                 jiffies_to_msecs(disk_stat_read(disk, ticks[READ])),
473                 disk_stat_read(disk, ios[WRITE]),
474                 disk_stat_read(disk, merges[WRITE]),
475                 (unsigned long long)disk_stat_read(disk, sectors[WRITE]),
476                 jiffies_to_msecs(disk_stat_read(disk, ticks[WRITE])),
477                 disk->in_flight,
478                 jiffies_to_msecs(disk_stat_read(disk, io_ticks)),
479                 jiffies_to_msecs(disk_stat_read(disk, time_in_queue)));
480 }
481
482 #ifdef CONFIG_FAIL_MAKE_REQUEST
483 static ssize_t disk_fail_show(struct device *dev,
484                               struct device_attribute *attr, char *buf)
485 {
486         struct gendisk *disk = dev_to_disk(dev);
487
488         return sprintf(buf, "%d\n", disk->flags & GENHD_FL_FAIL ? 1 : 0);
489 }
490
491 static ssize_t disk_fail_store(struct device *dev,
492                                struct device_attribute *attr,
493                                const char *buf, size_t count)
494 {
495         struct gendisk *disk = dev_to_disk(dev);
496         int i;
497
498         if (count > 0 && sscanf(buf, "%d", &i) > 0) {
499                 if (i == 0)
500                         disk->flags &= ~GENHD_FL_FAIL;
501                 else
502                         disk->flags |= GENHD_FL_FAIL;
503         }
504
505         return count;
506 }
507
508 #endif
509
510 static DEVICE_ATTR(range, S_IRUGO, disk_range_show, NULL);
511 static DEVICE_ATTR(removable, S_IRUGO, disk_removable_show, NULL);
512 static DEVICE_ATTR(ro, S_IRUGO, disk_ro_show, NULL);
513 static DEVICE_ATTR(size, S_IRUGO, disk_size_show, NULL);
514 static DEVICE_ATTR(capability, S_IRUGO, disk_capability_show, NULL);
515 static DEVICE_ATTR(stat, S_IRUGO, disk_stat_show, NULL);
516 #ifdef CONFIG_FAIL_MAKE_REQUEST
517 static struct device_attribute dev_attr_fail =
518         __ATTR(make-it-fail, S_IRUGO|S_IWUSR, disk_fail_show, disk_fail_store);
519 #endif
520
521 static struct attribute *disk_attrs[] = {
522         &dev_attr_range.attr,
523         &dev_attr_removable.attr,
524         &dev_attr_ro.attr,
525         &dev_attr_size.attr,
526         &dev_attr_capability.attr,
527         &dev_attr_stat.attr,
528 #ifdef CONFIG_FAIL_MAKE_REQUEST
529         &dev_attr_fail.attr,
530 #endif
531         NULL
532 };
533
534 static struct attribute_group disk_attr_group = {
535         .attrs = disk_attrs,
536 };
537
538 static struct attribute_group *disk_attr_groups[] = {
539         &disk_attr_group,
540         NULL
541 };
542
543 static void disk_release(struct device *dev)
544 {
545         struct gendisk *disk = dev_to_disk(dev);
546
547         kfree(disk->random);
548         kfree(disk->part);
549         free_disk_stats(disk);
550         kfree(disk);
551 }
552 struct class block_class = {
553         .name           = "block",
554 };
555
556 static struct device_type disk_type = {
557         .name           = "disk",
558         .groups         = disk_attr_groups,
559         .release        = disk_release,
560 };
561
562 #ifdef CONFIG_PROC_FS
563 /*
564  * aggregate disk stat collector.  Uses the same stats that the sysfs
565  * entries do, above, but makes them available through one seq_file.
566  *
567  * The output looks suspiciously like /proc/partitions with a bunch of
568  * extra fields.
569  */
570
571 static void *diskstats_start(struct seq_file *part, loff_t *pos)
572 {
573         struct device *dev;
574         loff_t k = *pos;
575
576         mutex_lock(&block_class_lock);
577         dev = class_find_device(&block_class, NULL, &k, find_start);
578         if (dev) {
579                 put_device(dev);
580                 return dev_to_disk(dev);
581         }
582         return NULL;
583 }
584
585 static void *diskstats_next(struct seq_file *part, void *v, loff_t *pos)
586 {
587         struct gendisk *gp = v;
588         struct device *dev;
589
590         ++*pos;
591         dev = class_find_device(&block_class, &gp->dev, NULL, find_next);
592         if (dev) {
593                 put_device(dev);
594                 return dev_to_disk(dev);
595         }
596         return NULL;
597 }
598
599 static void diskstats_stop(struct seq_file *part, void *v)
600 {
601         mutex_unlock(&block_class_lock);
602 }
603
604 static int diskstats_show(struct seq_file *s, void *v)
605 {
606         struct gendisk *gp = v;
607         char buf[BDEVNAME_SIZE];
608         int n = 0;
609
610         /*
611         if (&gp->dev.kobj.entry == block_class.devices.next)
612                 seq_puts(s,     "major minor name"
613                                 "     rio rmerge rsect ruse wio wmerge "
614                                 "wsect wuse running use aveq"
615                                 "\n\n");
616         */
617  
618         preempt_disable();
619         disk_round_stats(gp);
620         preempt_enable();
621         seq_printf(s, "%4d %4d %s %lu %lu %llu %u %lu %lu %llu %u %u %u %u\n",
622                 gp->major, n + gp->first_minor, disk_name(gp, n, buf),
623                 disk_stat_read(gp, ios[0]), disk_stat_read(gp, merges[0]),
624                 (unsigned long long)disk_stat_read(gp, sectors[0]),
625                 jiffies_to_msecs(disk_stat_read(gp, ticks[0])),
626                 disk_stat_read(gp, ios[1]), disk_stat_read(gp, merges[1]),
627                 (unsigned long long)disk_stat_read(gp, sectors[1]),
628                 jiffies_to_msecs(disk_stat_read(gp, ticks[1])),
629                 gp->in_flight,
630                 jiffies_to_msecs(disk_stat_read(gp, io_ticks)),
631                 jiffies_to_msecs(disk_stat_read(gp, time_in_queue)));
632
633         /* now show all non-0 size partitions of it */
634         for (n = 0; n < gp->minors - 1; n++) {
635                 struct hd_struct *hd = gp->part[n];
636
637                 if (!hd || !hd->nr_sects)
638                         continue;
639
640                 preempt_disable();
641                 part_round_stats(hd);
642                 preempt_enable();
643                 seq_printf(s, "%4d %4d %s %lu %lu %llu "
644                            "%u %lu %lu %llu %u %u %u %u\n",
645                            gp->major, n + gp->first_minor + 1,
646                            disk_name(gp, n + 1, buf),
647                            part_stat_read(hd, ios[0]),
648                            part_stat_read(hd, merges[0]),
649                            (unsigned long long)part_stat_read(hd, sectors[0]),
650                            jiffies_to_msecs(part_stat_read(hd, ticks[0])),
651                            part_stat_read(hd, ios[1]),
652                            part_stat_read(hd, merges[1]),
653                            (unsigned long long)part_stat_read(hd, sectors[1]),
654                            jiffies_to_msecs(part_stat_read(hd, ticks[1])),
655                            hd->in_flight,
656                            jiffies_to_msecs(part_stat_read(hd, io_ticks)),
657                            jiffies_to_msecs(part_stat_read(hd, time_in_queue))
658                         );
659         }
660  
661         return 0;
662 }
663
664 const struct seq_operations diskstats_op = {
665         .start  = diskstats_start,
666         .next   = diskstats_next,
667         .stop   = diskstats_stop,
668         .show   = diskstats_show
669 };
670 #endif /* CONFIG_PROC_FS */
671
672 static void media_change_notify_thread(struct work_struct *work)
673 {
674         struct gendisk *gd = container_of(work, struct gendisk, async_notify);
675         char event[] = "MEDIA_CHANGE=1";
676         char *envp[] = { event, NULL };
677
678         /*
679          * set enviroment vars to indicate which event this is for
680          * so that user space will know to go check the media status.
681          */
682         kobject_uevent_env(&gd->dev.kobj, KOBJ_CHANGE, envp);
683         put_device(gd->driverfs_dev);
684 }
685
686 #if 0
687 void genhd_media_change_notify(struct gendisk *disk)
688 {
689         get_device(disk->driverfs_dev);
690         schedule_work(&disk->async_notify);
691 }
692 EXPORT_SYMBOL_GPL(genhd_media_change_notify);
693 #endif  /*  0  */
694
695 struct find_block {
696         const char *name;
697         int part;
698 };
699
700 static int match_id(struct device *dev, void *data)
701 {
702         struct find_block *find = data;
703
704         if (dev->type != &disk_type)
705                 return 0;
706         if (strcmp(dev->bus_id, find->name) == 0) {
707                 struct gendisk *disk = dev_to_disk(dev);
708                 if (find->part < disk->minors)
709                         return 1;
710         }
711         return 0;
712 }
713
714 dev_t blk_lookup_devt(const char *name, int part)
715 {
716         struct device *dev;
717         dev_t devt = MKDEV(0, 0);
718         struct find_block find;
719
720         mutex_lock(&block_class_lock);
721         find.name = name;
722         find.part = part;
723         dev = class_find_device(&block_class, NULL, &find, match_id);
724         if (dev) {
725                 put_device(dev);
726                 devt = MKDEV(MAJOR(dev->devt),
727                              MINOR(dev->devt) + part);
728         }
729         mutex_unlock(&block_class_lock);
730
731         return devt;
732 }
733 EXPORT_SYMBOL(blk_lookup_devt);
734
735 struct gendisk *alloc_disk(int minors)
736 {
737         return alloc_disk_node(minors, -1);
738 }
739
740 struct gendisk *alloc_disk_node(int minors, int node_id)
741 {
742         struct gendisk *disk;
743
744         disk = kmalloc_node(sizeof(struct gendisk),
745                                 GFP_KERNEL | __GFP_ZERO, node_id);
746         if (disk) {
747                 if (!init_disk_stats(disk)) {
748                         kfree(disk);
749                         return NULL;
750                 }
751                 if (minors > 1) {
752                         int size = (minors - 1) * sizeof(struct hd_struct *);
753                         disk->part = kmalloc_node(size,
754                                 GFP_KERNEL | __GFP_ZERO, node_id);
755                         if (!disk->part) {
756                                 free_disk_stats(disk);
757                                 kfree(disk);
758                                 return NULL;
759                         }
760                 }
761                 disk->minors = minors;
762                 rand_initialize_disk(disk);
763                 disk->dev.class = &block_class;
764                 disk->dev.type = &disk_type;
765                 device_initialize(&disk->dev);
766                 INIT_WORK(&disk->async_notify,
767                         media_change_notify_thread);
768         }
769         return disk;
770 }
771
772 EXPORT_SYMBOL(alloc_disk);
773 EXPORT_SYMBOL(alloc_disk_node);
774
775 struct kobject *get_disk(struct gendisk *disk)
776 {
777         struct module *owner;
778         struct kobject *kobj;
779
780         if (!disk->fops)
781                 return NULL;
782         owner = disk->fops->owner;
783         if (owner && !try_module_get(owner))
784                 return NULL;
785         kobj = kobject_get(&disk->dev.kobj);
786         if (kobj == NULL) {
787                 module_put(owner);
788                 return NULL;
789         }
790         return kobj;
791
792 }
793
794 EXPORT_SYMBOL(get_disk);
795
796 void put_disk(struct gendisk *disk)
797 {
798         if (disk)
799                 kobject_put(&disk->dev.kobj);
800 }
801
802 EXPORT_SYMBOL(put_disk);
803
804 void set_device_ro(struct block_device *bdev, int flag)
805 {
806         if (bdev->bd_contains != bdev)
807                 bdev->bd_part->policy = flag;
808         else
809                 bdev->bd_disk->policy = flag;
810 }
811
812 EXPORT_SYMBOL(set_device_ro);
813
814 void set_disk_ro(struct gendisk *disk, int flag)
815 {
816         int i;
817         disk->policy = flag;
818         for (i = 0; i < disk->minors - 1; i++)
819                 if (disk->part[i]) disk->part[i]->policy = flag;
820 }
821
822 EXPORT_SYMBOL(set_disk_ro);
823
824 int bdev_read_only(struct block_device *bdev)
825 {
826         if (!bdev)
827                 return 0;
828         else if (bdev->bd_contains != bdev)
829                 return bdev->bd_part->policy;
830         else
831                 return bdev->bd_disk->policy;
832 }
833
834 EXPORT_SYMBOL(bdev_read_only);
835
836 int invalidate_partition(struct gendisk *disk, int index)
837 {
838         int res = 0;
839         struct block_device *bdev = bdget_disk(disk, index);
840         if (bdev) {
841                 fsync_bdev(bdev);
842                 res = __invalidate_device(bdev);
843                 bdput(bdev);
844         }
845         return res;
846 }
847
848 EXPORT_SYMBOL(invalidate_partition);