|
Kmods SIG |
8b815c |
From 10b4f12c7028399007aaebc25810b18d8f7731a7 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
8b815c |
From: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Date: Thu, 9 Sep 2021 21:09:36 +0300
|
|
Kmods SIG |
8b815c |
Subject: [Backport 10b4f12c7028] src: Remove unnecessary variable loading
|
|
Kmods SIG |
8b815c |
in fill_super
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Remove some unnecessary variable loading. These look like copy paste
|
|
Kmods SIG |
8b815c |
work and they are not used to anything.
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
Signed-off-by: Kari Argillander <kari.argillander@gmail.com>
|
|
Kmods SIG |
8b815c |
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
|
|
Kmods SIG |
8b815c |
---
|
|
Kmods SIG |
8b815c |
src/super.c | 12 +-----------
|
|
Kmods SIG |
8b815c |
1 file changed, 1 insertion(+), 11 deletions(-)
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
diff --git a/src/super.c b/src/super.c
|
|
Kmods SIG |
8b815c |
index 31a9a0d16261d77ef50a1291fc5e8710c80b7864..4ff61534682cd903bcea5f8c73567f10006e3a4d 100644
|
|
Kmods SIG |
8b815c |
--- a/src/super.c
|
|
Kmods SIG |
8b815c |
+++ b/src/super.c
|
|
Kmods SIG |
8b815c |
@@ -877,7 +877,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
struct block_device *bdev = sb->s_bdev;
|
|
Kmods SIG |
8b815c |
struct inode *bd_inode = bdev->bd_inode;
|
|
Kmods SIG |
8b815c |
struct request_queue *rq = bdev_get_queue(bdev);
|
|
Kmods SIG |
8b815c |
- struct inode *inode = NULL;
|
|
Kmods SIG |
8b815c |
+ struct inode *inode;
|
|
Kmods SIG |
8b815c |
struct ntfs_inode *ni;
|
|
Kmods SIG |
8b815c |
size_t i, tt;
|
|
Kmods SIG |
8b815c |
CLST vcn, lcn, len;
|
|
Kmods SIG |
8b815c |
@@ -977,9 +977,7 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
sbi->volume.major_ver = info->major_ver;
|
|
Kmods SIG |
8b815c |
sbi->volume.minor_ver = info->minor_ver;
|
|
Kmods SIG |
8b815c |
sbi->volume.flags = info->flags;
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
sbi->volume.ni = ni;
|
|
Kmods SIG |
8b815c |
- inode = NULL;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
/* Load $MFTMirr to estimate recs_mirr. */
|
|
Kmods SIG |
8b815c |
ref.low = cpu_to_le32(MFT_REC_MIRR);
|
|
Kmods SIG |
8b815c |
@@ -1011,7 +1009,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
iput(inode);
|
|
Kmods SIG |
8b815c |
- inode = NULL;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
is_ro = sb_rdonly(sbi->sb);
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
@@ -1088,8 +1085,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
return PTR_ERR(inode);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- ni = ntfs_i(inode);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
#ifndef CONFIG_NTFS3_64BIT_CLUSTER
|
|
Kmods SIG |
8b815c |
if (inode->i_size >> 32) {
|
|
Kmods SIG |
8b815c |
err = -EINVAL;
|
|
Kmods SIG |
8b815c |
@@ -1188,8 +1183,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
return PTR_ERR(inode);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- ni = ntfs_i(inode);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
if (inode->i_size != 0x10000 * sizeof(short)) {
|
|
Kmods SIG |
8b815c |
err = -EINVAL;
|
|
Kmods SIG |
8b815c |
goto out;
|
|
Kmods SIG |
8b815c |
@@ -1225,7 +1218,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
iput(inode);
|
|
Kmods SIG |
8b815c |
- inode = NULL;
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
if (is_ntfs3(sbi)) {
|
|
Kmods SIG |
8b815c |
/* Load $Secure. */
|
|
Kmods SIG |
8b815c |
@@ -1259,8 +1251,6 @@ static int ntfs_fill_super(struct super_block *sb, struct fs_context *fc)
|
|
Kmods SIG |
8b815c |
return PTR_ERR(inode);
|
|
Kmods SIG |
8b815c |
}
|
|
Kmods SIG |
8b815c |
|
|
Kmods SIG |
8b815c |
- ni = ntfs_i(inode);
|
|
Kmods SIG |
8b815c |
-
|
|
Kmods SIG |
8b815c |
sb->s_root = d_make_root(inode);
|
|
Kmods SIG |
8b815c |
if (!sb->s_root)
|
|
Kmods SIG |
8b815c |
return -ENOMEM;
|
|
Kmods SIG |
8b815c |
--
|
|
Kmods SIG |
8b815c |
2.31.1
|
|
Kmods SIG |
8b815c |
|