VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Christoph Hellwig <hch@lst.de> 2021-01-26 15:52:31 +0100 committer: Jens Axboe <axboe@kernel.dk> 2021-01-27 09:51:48 -0700 commit: f91ca2a370bec58eb3d54315b5cfa3a2a9288acc parent: 7684fbde45169e6de15c180b1c084d2005e99961
Commit Summary:
zonefs: use bio_alloc in zonefs_file_dio_append
Diffstat:
1 file changed, 1 insertion, 1 deletion
diff --git a/fs/zonefs/super.c b/fs/zonefs/super.c
index bec47f2d074b..faea2ed34b4a 100644
--- a/fs/zonefs/super.c
+++ b/fs/zonefs/super.c
@@ -678,7 +678,7 @@ static ssize_t zonefs_file_dio_append(struct kiocb *iocb, struct iov_iter *from)
 	if (!nr_pages)
 		return 0;
 
-	bio = bio_alloc_bioset(GFP_NOFS, nr_pages, &fs_bio_set);
+	bio = bio_alloc(GFP_NOFS, nr_pages);
 	if (!bio)
 		return -ENOMEM;