super.c (e8b8e97f91b80f08a2f1b7ea4f81e7af61b2cc2f) super.c (d3624466b56dd5b1886c1dff500525b544c19c83)
1// SPDX-License-Identifier: GPL-2.0
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 *
7 * terminology
8 *

--- 1039 unchanged lines hidden (view full) ---

1048 goto out;
1049 }
1050
1051 sbi->mft.recs_mirr =
1052 ntfs_up_cluster(sbi, inode->i_size) >> sbi->record_bits;
1053
1054 iput(inode);
1055
1// SPDX-License-Identifier: GPL-2.0
2/*
3 *
4 * Copyright (C) 2019-2021 Paragon Software GmbH, All rights reserved.
5 *
6 *
7 * terminology
8 *

--- 1039 unchanged lines hidden (view full) ---

1048 goto out;
1049 }
1050
1051 sbi->mft.recs_mirr =
1052 ntfs_up_cluster(sbi, inode->i_size) >> sbi->record_bits;
1053
1054 iput(inode);
1055
1056 /* Load $LogFile to replay. */
1056 /* Load LogFile to replay. */
1057 ref.low = cpu_to_le32(MFT_REC_LOG);
1058 ref.seq = cpu_to_le16(MFT_REC_LOG);
1059 inode = ntfs_iget5(sb, &ref, &NAME_LOGFILE);
1060 if (IS_ERR(inode)) {
1061 err = PTR_ERR(inode);
1062 ntfs_err(sb, "Failed to load \x24LogFile.");
1063 inode = NULL;
1064 goto out;

--- 459 unchanged lines hidden ---
1057 ref.low = cpu_to_le32(MFT_REC_LOG);
1058 ref.seq = cpu_to_le16(MFT_REC_LOG);
1059 inode = ntfs_iget5(sb, &ref, &NAME_LOGFILE);
1060 if (IS_ERR(inode)) {
1061 err = PTR_ERR(inode);
1062 ntfs_err(sb, "Failed to load \x24LogFile.");
1063 inode = NULL;
1064 goto out;

--- 459 unchanged lines hidden ---