diff options
Diffstat (limited to 'fs/ceph/super.c')
-rw-r--r-- | fs/ceph/super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.c b/fs/ceph/super.c index bac13898b943..9b46bb951e1f 100644 --- a/fs/ceph/super.c +++ b/fs/ceph/super.c | |||
@@ -738,7 +738,7 @@ static struct dentry *open_root_dentry(struct ceph_client *client, | |||
738 | dout("open_root_inode opening '%s'\n", path); | 738 | dout("open_root_inode opening '%s'\n", path); |
739 | req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS); | 739 | req = ceph_mdsc_create_request(mdsc, CEPH_MDS_OP_GETATTR, USE_ANY_MDS); |
740 | if (IS_ERR(req)) | 740 | if (IS_ERR(req)) |
741 | return ERR_PTR(PTR_ERR(req)); | 741 | return ERR_CAST(req); |
742 | req->r_path1 = kstrdup(path, GFP_NOFS); | 742 | req->r_path1 = kstrdup(path, GFP_NOFS); |
743 | req->r_ino1.ino = CEPH_INO_ROOT; | 743 | req->r_ino1.ino = CEPH_INO_ROOT; |
744 | req->r_ino1.snap = CEPH_NOSNAP; | 744 | req->r_ino1.snap = CEPH_NOSNAP; |