mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-16 12:31:52 -04:00
NFS/blocklayout: print each device used for SCSI layouts
We already print device uses for block layouts, do the same for SCSI layouts as that greatly helps understanding the operation of the client. Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
This commit is contained in:
committed by
Trond Myklebust
parent
704f3f640f
commit
b0ed12538f
@@ -370,11 +370,14 @@ bl_open_path(struct pnfs_block_volume *v, const char *prefix)
|
||||
if (!devname)
|
||||
return ERR_PTR(-ENOMEM);
|
||||
|
||||
bdev_file = bdev_file_open_by_path(devname, BLK_OPEN_READ | BLK_OPEN_WRITE,
|
||||
NULL, NULL);
|
||||
bdev_file = bdev_file_open_by_path(devname,
|
||||
BLK_OPEN_READ | BLK_OPEN_WRITE, NULL, NULL);
|
||||
if (IS_ERR(bdev_file)) {
|
||||
dprintk("failed to open device %s (%ld)\n",
|
||||
devname, PTR_ERR(bdev_file));
|
||||
} else {
|
||||
pr_info("pNFS: using block device %s\n",
|
||||
file_bdev(bdev_file)->bd_disk->disk_name);
|
||||
}
|
||||
|
||||
kfree(devname);
|
||||
|
||||
Reference in New Issue
Block a user