]> git.baikalelectronics.ru Git - kernel.git/commit
ext4 crypto: fix memory leak in ext4_bio_write_page()
authorTheodore Ts'o <tytso@mit.edu>
Sat, 3 Oct 2015 03:54:58 +0000 (23:54 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 3 Oct 2015 03:54:58 +0000 (23:54 -0400)
commit00848bdbf7c5a5b6f7fd1b4d847cdf99cddcb84e
treef7a734f126f8188996b8a3dc2dee956268946e3a
parent1eaa60cd6dfcba339102a7adaf02e6557a8c959c
ext4 crypto: fix memory leak in ext4_bio_write_page()

There are times when ext4_bio_write_page() is called even though we
don't actually need to do any I/O.  This happens when ext4_writepage()
gets called by the jbd2 commit path when an inode needs to force its
pages written out in order to provide data=ordered guarantees --- and
a page is backed by an unwritten (e.g., uninitialized) block on disk,
or if delayed allocation means the page's backing store hasn't been
allocated yet.  In that case, we need to skip the call to
ext4_encrypt_page(), since in addition to wasting CPU, it leads to a
bounce page and an ext4 crypto context getting leaked.

Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@vger.kernel.org
fs/ext4/page-io.c