Whamcloud - gitweb
LU-9545 lfsck: report "inconsistent" under dryrun mode
[fs/lustre-release.git] / lustre / include / lvfs.h
index be4187f..856ee19 100644 (file)
  *
  * You should have received a copy of the GNU General Public License
  * version 2 along with this program; If not, see
- * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
- *
- * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
- * CA 95054 USA or visit www.sun.com if you need additional information or
- * have any questions.
+ * http://www.gnu.org/licenses/gpl-2.0.html
  *
  * GPL HEADER END
  */
@@ -86,9 +82,9 @@ ll_lookup_one_len(const char *fid_name, struct dentry *dparent,
 {
        struct dentry *dchild;
 
-       mutex_lock(&dparent->d_inode->i_mutex);
+       inode_lock(dparent->d_inode);
        dchild = lookup_one_len(fid_name, dparent, fid_namelen);
-       mutex_unlock(&dparent->d_inode->i_mutex);
+       inode_unlock(dparent->d_inode);
 
        if (IS_ERR(dchild) || dchild->d_inode == NULL)
                return dchild;