diff options
author | Michael Halcrow <mhalcrow@us.ibm.com> | 2007-11-05 14:51:03 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-11-05 15:12:33 -0800 |
commit | 778d1a2bd42ae862a6c6d20a1c3af5e45b3c1924 (patch) | |
tree | afc2eed74ad70fb03b0734b13d61c1bd9e6089f3 /fs | |
parent | 01aae97196f2cdfbfebc5a0365bad82d98975588 (diff) | |
download | kernel_samsung_espresso10-778d1a2bd42ae862a6c6d20a1c3af5e45b3c1924.zip kernel_samsung_espresso10-778d1a2bd42ae862a6c6d20a1c3af5e45b3c1924.tar.gz kernel_samsung_espresso10-778d1a2bd42ae862a6c6d20a1c3af5e45b3c1924.tar.bz2 |
eCryptfs: increment extent_offset once per loop interation
The extent_offset is getting incremented twice per loop iteration through any
given page. It should only be getting incremented once. This bug should only
impact hosts with >4K page sizes.
Signed-off-by: Michael Halcrow <mhalcrow@us.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/ecryptfs/crypto.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 9d70289..9ea4769 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -504,7 +504,6 @@ int ecryptfs_encrypt_page(struct page *page) "\n", rc); goto out; } - extent_offset++; } out: kfree(enc_extent_virt); @@ -640,7 +639,6 @@ int ecryptfs_decrypt_page(struct page *page) "rc = [%d]\n", __FUNCTION__, rc); goto out; } - extent_offset++; } out: kfree(enc_extent_virt); |