ocfs2: use actual name length when find entry in ocfs2_orphan_del()
[firefly-linux-kernel-4.4.55.git] / fs / ocfs2 / namei.c
index b5c3a5ea3ee60e264cf7523e8626ac3b61f9421b..49837404541e6139f47c28305c1de4f62d3e461e 100644 (file)
@@ -2322,10 +2322,10 @@ int ocfs2_orphan_del(struct ocfs2_super *osb,
 
        trace_ocfs2_orphan_del(
             (unsigned long long)OCFS2_I(orphan_dir_inode)->ip_blkno,
-            name, namelen);
+            name, strlen(name));
 
        /* find it's spot in the orphan directory */
-       status = ocfs2_find_entry(name, namelen, orphan_dir_inode,
+       status = ocfs2_find_entry(name, strlen(name), orphan_dir_inode,
                                  &lookup);
        if (status) {
                mlog_errno(status);