static noinline_for_stack bool
 generic_make_request_checks(struct bio *bio)
 {
-       struct request_queue *q;
+       struct request_queue *q = bio->bi_disk->queue;
        int nr_sectors = bio_sectors(bio);
        blk_status_t status = BLK_STS_IOERR;
-       char b[BDEVNAME_SIZE];
 
        might_sleep();
 
-       q = bio->bi_disk->queue;
-       if (unlikely(!q)) {
-               printk(KERN_ERR
-                      "generic_make_request: Trying to access "
-                       "nonexistent block-device %s (%Lu)\n",
-                       bio_devname(bio, b), (long long)bio->bi_iter.bi_sector);
-               goto end_io;
-       }
-
        /*
         * For a REQ_NOWAIT based request, return -EOPNOTSUPP
         * if queue is not a request based queue.