return badblocks_store(disk->bb, page, len, 0);
 }
 
+static void request_gendisk_module(dev_t devt)
+{
+       if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
+               /* Make old-style 2.4 aliases work */
+               request_module("block-major-%d", MAJOR(devt));
+}
+
 static struct gendisk *lookup_gendisk(dev_t dev, int *partno)
 {
        struct kobject *kobj;
                probe = p->probe;
                best = p->range - 1;
                *partno = dev - p->dev;
+
+               if (!probe) {
+                       mutex_unlock(&bdev_map_lock);
+                       module_put(owner);
+                       request_gendisk_module(dev);
+                       goto retry;
+               }
+
                if (p->lock && p->lock(dev, data) < 0) {
                        module_put(owner);
                        continue;
 };
 #endif
 
-
-static struct kobject *base_probe(dev_t devt, int *partno, void *data)
-{
-       if (request_module("block-major-%d-%d", MAJOR(devt), MINOR(devt)) > 0)
-               /* Make old-style 2.4 aliases work */
-               request_module("block-major-%d", MAJOR(devt));
-       return NULL;
-}
-
 static void bdev_map_init(void)
 {
        struct bdev_map *base;
 
        base->dev = 1;
        base->range = ~0 ;
-       base->probe = base_probe;
        for (i = 0; i < 255; i++)
                bdev_map[i] = base;
 }