aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/blocklayout/blocklayoutdev.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/blocklayout/blocklayoutdev.c')
-rw-r--r--fs/nfs/blocklayout/blocklayoutdev.c25
1 files changed, 5 insertions, 20 deletions
diff --git a/fs/nfs/blocklayout/blocklayoutdev.c b/fs/nfs/blocklayout/blocklayoutdev.c
index c96554245ccf..a86c5bdad9e3 100644
--- a/fs/nfs/blocklayout/blocklayoutdev.c
+++ b/fs/nfs/blocklayout/blocklayoutdev.c
@@ -53,22 +53,6 @@ static int decode_sector_number(__be32 **rp, sector_t *sp)
53 return 0; 53 return 0;
54} 54}
55 55
56/* Open a block_device by device number. */
57struct block_device *nfs4_blkdev_get(dev_t dev)
58{
59 struct block_device *bd;
60
61 dprintk("%s enter\n", __func__);
62 bd = blkdev_get_by_dev(dev, FMODE_READ, NULL);
63 if (IS_ERR(bd))
64 goto fail;
65 return bd;
66fail:
67 dprintk("%s failed to open device : %ld\n",
68 __func__, PTR_ERR(bd));
69 return NULL;
70}
71
72/* 56/*
73 * Release the block device 57 * Release the block device
74 */ 58 */
@@ -172,11 +156,12 @@ nfs4_blk_decode_device(struct nfs_server *server,
172 goto out; 156 goto out;
173 } 157 }
174 158
175 bd = nfs4_blkdev_get(MKDEV(reply->major, reply->minor)); 159 bd = blkdev_get_by_dev(MKDEV(reply->major, reply->minor),
160 FMODE_READ, NULL);
176 if (IS_ERR(bd)) { 161 if (IS_ERR(bd)) {
177 rc = PTR_ERR(bd); 162 dprintk("%s failed to open device : %ld\n", __func__,
178 dprintk("%s failed to open device : %d\n", __func__, rc); 163 PTR_ERR(bd));
179 rv = ERR_PTR(rc); 164 rv = ERR_CAST(bd);
180 goto out; 165 goto out;
181 } 166 }
182 167