]> git.ipfire.org Git - thirdparty/kernel/linux.git/commit
fs: ext4: fix uninitialized symbols
authorRanganath V N <vnranganath.20@gmail.com>
Sat, 11 Oct 2025 06:38:29 +0000 (12:08 +0530)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 6 Nov 2025 15:34:20 +0000 (10:34 -0500)
commit6640d552185f7c11235c64a832004db9af119b2d
tree9768937b96c6d1a5aa0a7cacd2fa08621ae1cb86
parentce3236a3c7d8e048e0bcc7f445f12f911dd9dc7d
fs: ext4: fix uninitialized symbols

Fix the issue detected by the smatch tool.

fs/ext4/inode.c:3583 ext4_map_blocks_atomic_write_slow() error: uninitialized symbol 'next_pblk'.
fs/ext4/namei.c:1776 ext4_lookup() error: uninitialized symbol 'de'.
fs/ext4/namei.c:1829 ext4_get_parent() error: uninitialized symbol 'de'.
fs/ext4/namei.c:3162 ext4_rmdir() error: uninitialized symbol 'de'.
fs/ext4/namei.c:3242 __ext4_unlink() error: uninitialized symbol 'de'.
fs/ext4/namei.c:3697 ext4_find_delete_entry() error: uninitialized symbol 'de'.

These changes enhance code clarity, address static analysis tool errors.

Signed-off-by: Ranganath V N <vnranganath.20@gmail.com>
Message-ID: <20251011063830.47485-1-vnranganath.20@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/inode.c
fs/ext4/namei.c