diff options
author | 2021-07-16 11:20:53 -0700 | |
---|---|---|
committer | 2021-07-16 11:20:53 -0700 | |
commit | 45312bd762d37bfc7dda6de8a70bb5604e899015 (patch) | |
tree | d6d4be35bdc49bc8e8c6bebdc72e6fce338e88c3 | |
parent | Merge tag 'drm-fixes-2021-07-16' of git://anongit.freedesktop.org/drm/drm (diff) | |
parent | zonefs: remove redundant null bio check (diff) | |
download | linux-dev-45312bd762d37bfc7dda6de8a70bb5604e899015.tar.xz linux-dev-45312bd762d37bfc7dda6de8a70bb5604e899015.zip |
Merge tag 'zonefs-5.14-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs
Pull zonefs fix from Damien Le Moal:
"A single patch to remove an unnecessary NULL bio check (from
Xianting)"
* tag 'zonefs-5.14-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
zonefs: remove redundant null bio check
-rw-r--r-- | fs/zonefs/super.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c index dbf03635869c..70055d486bf7 100644 --- a/fs/zonefs/super.c +++ b/fs/zonefs/super.c @@ -705,9 +705,6 @@ static ssize_t zonefs_file_dio_append(struct kiocb *iocb, struct iov_iter *from) return 0; bio = bio_alloc(GFP_NOFS, nr_pages); - if (!bio) - return -ENOMEM; - bio_set_dev(bio, bdev); bio->bi_iter.bi_sector = zi->i_zsector; bio->bi_write_hint = iocb->ki_hint; |