2 * File...........: linux/drivers/s390/block/dasd_genhd.c
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Horst Hummel <Horst.Hummel@de.ibm.com>
5 * Carsten Otte <Cotte@de.ibm.com>
6 * Martin Schwidefsky <schwidefsky@de.ibm.com>
7 * Bugreports.to..: <Linux390@de.ibm.com>
8 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 1999-2001
10 * gendisk related functions for the dasd driver.
14 #include <linux/config.h>
15 #include <linux/interrupt.h>
17 #include <linux/blkpg.h>
19 #include <asm/uaccess.h>
22 #define PRINTK_HEADER "dasd_gendisk:"
27 * Allocate and register gendisk structure for device.
30 dasd_gendisk_alloc(struct dasd_device *device)
35 /* Make sure the minor for this device exists. */
36 if (device->devindex >= DASD_PER_MAJOR)
39 gdp = alloc_disk(1 << DASD_PARTN_BITS);
43 /* Initialize gendisk structure. */
44 gdp->major = DASD_MAJOR;
45 gdp->first_minor = device->devindex << DASD_PARTN_BITS;
46 gdp->fops = &dasd_device_operations;
47 gdp->driverfs_dev = &device->cdev->dev;
51 * dasda - dasdz : 26 devices
52 * dasdaa - dasdzz : 676 devices, added up = 702
53 * dasdaaa - dasdzzz : 17576 devices, added up = 18278
54 * dasdaaaa - dasdzzzz : 456976 devices, added up = 475252
56 len = sprintf(gdp->disk_name, "dasd");
57 if (device->devindex > 25) {
58 if (device->devindex > 701) {
59 if (device->devindex > 18277)
60 len += sprintf(gdp->disk_name + len, "%c",
61 'a'+(((device->devindex-18278)
63 len += sprintf(gdp->disk_name + len, "%c",
64 'a'+(((device->devindex-702)/676)%26));
66 len += sprintf(gdp->disk_name + len, "%c",
67 'a'+(((device->devindex-26)/26)%26));
69 len += sprintf(gdp->disk_name + len, "%c", 'a'+(device->devindex%26));
71 sprintf(gdp->devfs_name, "dasd/%s", device->cdev->dev.bus_id);
73 if (device->features & DASD_FEATURE_READONLY)
75 gdp->private_data = device;
76 gdp->queue = device->request_queue;
78 set_capacity(device->gdp, 0);
79 add_disk(device->gdp);
84 * Unregister and free gendisk structure for device.
87 dasd_gendisk_free(struct dasd_device *device)
89 del_gendisk(device->gdp);
90 device->gdp->queue = 0;
91 put_disk(device->gdp);
96 * Trigger a partition detection.
99 dasd_scan_partitions(struct dasd_device * device)
101 struct block_device *bdev;
103 /* Make the disk known. */
104 set_capacity(device->gdp, device->blocks << device->s2b_shift);
105 bdev = bdget_disk(device->gdp, 0);
106 if (!bdev || blkdev_get(bdev, FMODE_READ, 1) < 0)
109 * See fs/partition/check.c:register_disk,rescan_partitions
110 * Can't call rescan_partitions directly. Use ioctl.
112 ioctl_by_bdev(bdev, BLKRRPART, 0);
114 * Since the matching blkdev_put call to the blkdev_get in
115 * this function is not called before dasd_destroy_partitions
116 * the offline open_count limit needs to be increased from
117 * 0 to 1. This is done by setting device->bdev (see
118 * dasd_generic_set_offline). As long as the partition
119 * detection is running no offline should be allowed. That
120 * is why the assignment to device->bdev is done AFTER
121 * the BLKRRPART ioctl.
128 * Remove all inodes in the system for a device, delete the
129 * partitions and make device unusable by setting its size to zero.
132 dasd_destroy_partitions(struct dasd_device * device)
134 /* The two structs have 168/176 byte on 31/64 bit. */
135 struct blkpg_partition bpart;
136 struct blkpg_ioctl_arg barg;
137 struct block_device *bdev;
140 * Get the bdev pointer from the device structure and clear
141 * device->bdev to lower the offline open_count limit again.
147 * See fs/partition/check.c:delete_partition
148 * Can't call delete_partitions directly. Use ioctl.
149 * The ioctl also does locking and invalidation.
151 memset(&bpart, 0, sizeof(struct blkpg_partition));
152 memset(&barg, 0, sizeof(struct blkpg_ioctl_arg));
154 barg.op = BLKPG_DEL_PARTITION;
155 for (bpart.pno = device->gdp->minors - 1; bpart.pno > 0; bpart.pno--)
156 ioctl_by_bdev(bdev, BLKPG, (unsigned long) &barg);
158 invalidate_partition(device->gdp, 0);
159 /* Matching blkdev_put to the blkdev_get in dasd_scan_partitions. */
161 set_capacity(device->gdp, 0);
165 dasd_gendisk_init(void)
169 /* Register to static dasd major 94 */
170 rc = register_blkdev(DASD_MAJOR, "dasd");
172 MESSAGE(KERN_WARNING,
173 "Couldn't register successfully to "
174 "major no %d", DASD_MAJOR);
181 dasd_gendisk_exit(void)
183 unregister_blkdev(DASD_MAJOR, "dasd");