]> www.infradead.org Git - users/jedix/linux-maple.git/commit
ext4: avoid kmemcheck complaint from reading uninitialized memory
authorTheodore Ts'o <tytso@mit.edu>
Mon, 6 Aug 2012 03:28:16 +0000 (23:28 -0400)
committerMaxim Uvarov <maxim.uvarov@oracle.com>
Mon, 8 Oct 2012 10:01:55 +0000 (03:01 -0700)
commit2fdbae21bb9056a1049c235593aba9fb4849d769
treeb1cdcfbf3e1f0ff105adb67378c571f2a9553438
parent5f1fa4c5516233ba75e2d585cbd0b52c27bbce90
ext4: avoid kmemcheck complaint from reading uninitialized memory

commit 7e731bc9a12339f344cddf82166b82633d99dd86 upstream.

Commit 03179fe923 introduced a kmemcheck complaint in
ext4_da_get_block_prep() because we save and restore
ei->i_da_metadata_calc_last_lblock even though it is left
uninitialized in the case where i_da_metadata_calc_len is zero.

This doesn't hurt anything, but silencing the kmemcheck complaint
makes it easier for people to find real bugs.

Addresses https://bugzilla.kernel.org/show_bug.cgi?id=45631
(which is marked as a regression).

Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/ext4/super.c