]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - fs/ntfs/super.c
xfs: move the dir2 leaf header size to struct xfs_da_geometry
[linux.git] / fs / ntfs / super.c
index 29621d40f4480b6156b48bd008a2ec97d1177b6a..7dc3bc604f7816fd7d6f09e8a6ca7d5e8b440a02 100644 (file)
@@ -1475,7 +1475,7 @@ static bool load_and_init_usnjrnl(ntfs_volume *vol)
        kfree(name);
        /* Get the inode. */
        tmp_ino = ntfs_iget(vol->sb, MREF(mref));
-       if (unlikely(IS_ERR(tmp_ino) || is_bad_inode(tmp_ino))) {
+       if (IS_ERR(tmp_ino) || unlikely(is_bad_inode(tmp_ino))) {
                if (!IS_ERR(tmp_ino))
                        iput(tmp_ino);
                ntfs_error(vol->sb, "Failed to load $UsnJrnl.");