diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-12-11 23:22:42 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-12-11 23:22:42 +0100 |
commit | 782598ecea73a4aecdd25cb0ceb0b19e8674cf30 (patch) | |
tree | 5b0a168c31787c79cef35934a5252781f480e2e0 /fs | |
parent | bpf: Fix enum names for bpf_this_cpu_ptr() and bpf_per_cpu_ptr() helpers (diff) | |
parent | zonefs: fix page reference and BIO leak (diff) | |
download | linux-782598ecea73a4aecdd25cb0ceb0b19e8674cf30.tar.xz linux-782598ecea73a4aecdd25cb0ceb0b19e8674cf30.zip |
Merge tag 'zonefs-5.10-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs
Pull zonefs fix from Damien Le Moal:
"A single patch in this pull request to fix a BIO and page reference
leak when writing sequential zone files"
* tag 'zonefs-5.10-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
zonefs: fix page reference and BIO leak
Diffstat (limited to 'fs')
-rw-r--r-- | fs/zonefs/super.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c index ff5930be096c..bec47f2d074b 100644 --- a/fs/zonefs/super.c +++ b/fs/zonefs/super.c @@ -691,21 +691,23 @@ static ssize_t zonefs_file_dio_append(struct kiocb *iocb, struct iov_iter *from) bio->bi_opf |= REQ_FUA; ret = bio_iov_iter_get_pages(bio, from); - if (unlikely(ret)) { - bio_io_error(bio); - return ret; - } + if (unlikely(ret)) + goto out_release; + size = bio->bi_iter.bi_size; - task_io_account_write(ret); + task_io_account_write(size); if (iocb->ki_flags & IOCB_HIPRI) bio_set_polled(bio, iocb); ret = submit_bio_wait(bio); + zonefs_file_write_dio_end_io(iocb, size, ret, 0); + +out_release: + bio_release_pages(bio, false); bio_put(bio); - zonefs_file_write_dio_end_io(iocb, size, ret, 0); if (ret >= 0) { iocb->ki_pos += size; return size; |