Blame SOURCES/0013-fs-ntfs3-Remove-unused-variable-cnt-in-ntfs_security.patch

Kmods SIG 8b815c
From 8c01308b6d6b2bc8e9163c6a3400856fb782dee6 Mon Sep 17 00:00:00 2001
Kmods SIG 8b815c
From: Nathan Chancellor <nathan@kernel.org>
Kmods SIG 8b815c
Date: Mon, 16 Aug 2021 12:30:41 -0700
Kmods SIG 8b815c
Subject: [Backport 8c01308b6d6b] src: Remove unused variable cnt in
Kmods SIG 8b815c
 ntfs_security_init()
Kmods SIG 8b815c
Kmods SIG 8b815c
Clang warns:
Kmods SIG 8b815c
Kmods SIG 8b815c
src/fsntfs.c:1874:9: warning: variable 'cnt' set but not used
Kmods SIG 8b815c
[-Wunused-but-set-variable]
Kmods SIG 8b815c
        size_t cnt, off;
Kmods SIG 8b815c
               ^
Kmods SIG 8b815c
1 warning generated.
Kmods SIG 8b815c
Kmods SIG 8b815c
It is indeed unused so remove it.
Kmods SIG 8b815c
Kmods SIG 8b815c
Fixes: 82cae269cfa9 ("src: Add initialization of super block")
Kmods SIG 8b815c
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Kmods SIG 8b815c
Reviewed-by: Nick Desaulniers <ndesaulniers@google.com>
Kmods SIG 8b815c
Reviewed-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/fsntfs.c | 5 +----
Kmods SIG 8b815c
 1 file changed, 1 insertion(+), 4 deletions(-)
Kmods SIG 8b815c
Kmods SIG 8b815c
diff --git a/src/fsntfs.c b/src/fsntfs.c
Kmods SIG 8b815c
index 92140050fb6c250ce263832d86ff15257cc035e4..c6599c514acf630183cd5eeef7a1630ea0ec6a75 100644
Kmods SIG 8b815c
--- a/src/fsntfs.c
Kmods SIG 8b815c
+++ b/src/fsntfs.c
Kmods SIG 8b815c
@@ -1871,7 +1871,7 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 8b815c
 	struct ATTRIB *attr;
Kmods SIG 8b815c
 	struct ATTR_LIST_ENTRY *le;
Kmods SIG 8b815c
 	u64 sds_size;
Kmods SIG 8b815c
-	size_t cnt, off;
Kmods SIG 8b815c
+	size_t off;
Kmods SIG 8b815c
 	struct NTFS_DE *ne;
Kmods SIG 8b815c
 	struct NTFS_DE_SII *sii_e;
Kmods SIG 8b815c
 	struct ntfs_fnd *fnd_sii = NULL;
Kmods SIG 8b815c
@@ -1946,7 +1946,6 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 8b815c
 	sbi->security.next_off =
Kmods SIG 8b815c
 		Quad2Align(sds_size - SecurityDescriptorsBlockSize);
Kmods SIG 8b815c
 
Kmods SIG 8b815c
-	cnt = 0;
Kmods SIG 8b815c
 	off = 0;
Kmods SIG 8b815c
 	ne = NULL;
Kmods SIG 8b815c
 
Kmods SIG 8b815c
@@ -1964,8 +1963,6 @@ int ntfs_security_init(struct ntfs_sb_info *sbi)
Kmods SIG 8b815c
 		next_id = le32_to_cpu(sii_e->sec_id) + 1;
Kmods SIG 8b815c
 		if (next_id >= sbi->security.next_id)
Kmods SIG 8b815c
 			sbi->security.next_id = next_id;
Kmods SIG 8b815c
-
Kmods SIG 8b815c
-		cnt += 1;
Kmods SIG 8b815c
 	}
Kmods SIG 8b815c
 
Kmods SIG 8b815c
 	sbi->security.ni = ni;
Kmods SIG 8b815c
-- 
Kmods SIG 8b815c
2.31.1
Kmods SIG 8b815c