if (!node)
                return ERR_PTR(-ENODEV);
 
+       /*
+        * Devices that are marked unavailable are left in the cache with a
+        * timeout to avoid sending GETDEVINFO after every LAYOUTGET, or
+        * constantly attempting to register the device.  Once marked as
+        * unavailable they must be deleted and never reused.
+        */
        if (test_bit(NFS_DEVICEID_UNAVAILABLE, &node->flags)) {
                unsigned long end = jiffies;
                unsigned long start = end - PNFS_DEVICE_RETRY_TIMEOUT;
 
                if (!time_in_range(node->timestamp_unavailable, start, end)) {
+                       /* Uncork subsequent GETDEVINFO operations for this device */
                        nfs4_delete_deviceid(node->ld, node->nfs_client, id);
                        goto retry;
                }
                goto out_put;
        }
 
-       if (!bl_register_dev(container_of(node, struct pnfs_block_dev, node)))
+       if (!bl_register_dev(container_of(node, struct pnfs_block_dev, node))) {
+               /*
+                * If we cannot register, treat this device as transient:
+                * Make a negative cache entry for the device
+                */
+               nfs4_mark_deviceid_unavailable(node);
                goto out_put;
+       }
 
        return node;