if BLOCK
 
+config BLOCK_LEGACY_AUTOLOAD
+       bool "Legacy autoloading support"
+       help
+         Enable loading modules and creating block device instances based on
+         accesses through their device special file.  This is a historic Linux
+         feature and makes no sense in a udev world where device files are
+         created on demand.
+
+         Say N here unless booting or other functionality broke without it, in
+         which case you should also send a report to your distribution and
+         linux-block@vger.kernel.org.
+
 config BLK_RQ_ALLOC_TIME
        bool
 
 
        struct inode *inode;
 
        inode = ilookup(blockdev_superblock, dev);
-       if (!inode) {
+       if (!inode && IS_ENABLED(CONFIG_BLOCK_LEGACY_AUTOLOAD)) {
                blk_request_module(dev);
                inode = ilookup(blockdev_superblock, dev);
-               if (!inode)
-                       return NULL;
+               if (inode)
+                       pr_warn_ratelimited(
+"block device autoloading is deprecated. It will be removed in Linux 5.19\n");
        }
+       if (!inode)
+               return NULL;
 
        /* switch from the inode reference to a device mode one: */
        bdev = &BDEV_I(inode)->bdev;
 
        struct blk_major_name *next;
        int major;
        char name[16];
+#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
        void (*probe)(dev_t devt);
+#endif
 } *major_names[BLKDEV_MAJOR_HASH_SIZE];
 static DEFINE_MUTEX(major_names_lock);
 static DEFINE_SPINLOCK(major_names_spinlock);
        }
 
        p->major = major;
+#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
        p->probe = probe;
+#endif
        strlcpy(p->name, name, sizeof(p->name));
        p->next = NULL;
        index = major_to_index(major);
        return badblocks_store(disk->bb, page, len, 0);
 }
 
+#ifdef CONFIG_BLOCK_LEGACY_AUTOLOAD
 void blk_request_module(dev_t devt)
 {
        unsigned int major = MAJOR(devt);
                /* Make old-style 2.4 aliases work */
                request_module("block-major-%d", MAJOR(devt));
 }
+#endif /* CONFIG_BLOCK_LEGACY_AUTOLOAD */
 
 /*
  * print a full list of all partitions - intended for places where the root