diff options
author | Theodore Ts'o <tytso@mit.edu> | 2015-10-03 10:49:27 -0400 |
---|---|---|
committer | Theodore Ts'o <tytso@mit.edu> | 2015-10-03 10:49:27 -0400 |
commit | 687c3c36e754a999a8263745b27965128db4fee5 (patch) | |
tree | b2da54484833da41c4d112429becc0ae5df1941e /fs/ext4/crypto.c | |
parent | 3684de8ca2b82180f2cdcf5fbcfd3d29ef0afaf8 (diff) |
ext4 crypto: replace some BUG_ON()'s with error checks
Buggy (or hostile) userspace should not be able to cause the kernel to
crash.
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Cc: stable@vger.kernel.org
Diffstat (limited to 'fs/ext4/crypto.c')
-rw-r--r-- | fs/ext4/crypto.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ext4/crypto.c b/fs/ext4/crypto.c index 3a5a7a2597de..879cb15b7a21 100644 --- a/fs/ext4/crypto.c +++ b/fs/ext4/crypto.c @@ -295,7 +295,6 @@ static int ext4_page_crypto(struct inode *inode, else res = crypto_ablkcipher_encrypt(req); if (res == -EINPROGRESS || res == -EBUSY) { - BUG_ON(req->base.data != &ecr); wait_for_completion(&ecr.completion); res = ecr.res; } |