On Mon, Dec 09, 2019 at 12:45:09PM -0800, Eric Biggers wrote: > From: Eric Biggers <ebiggers@xxxxxxxxxx> > > submit_bio_wait() already returns bi_status translated to an errno. > So the additional check of bi_status is redundant and can be removed. > > Signed-off-by: Eric Biggers <ebiggers@xxxxxxxxxx> > --- > fs/crypto/bio.c | 2 -- > 1 file changed, 2 deletions(-) > > diff --git a/fs/crypto/bio.c b/fs/crypto/bio.c > index 1f4b8a2770606..b88d417e186e5 100644 > --- a/fs/crypto/bio.c > +++ b/fs/crypto/bio.c > @@ -77,8 +77,6 @@ int fscrypt_zeroout_range(const struct inode *inode, pgoff_t lblk, > goto errout; > } > err = submit_bio_wait(bio); > - if (err == 0 && bio->bi_status) > - err = -EIO; > bio_put(bio); > if (err) > goto errout; > -- > 2.24.0.393.g34dc348eaf-goog > Applied to fscrypt.git#master for 5.6. - Eric