]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - block/fops.c
block: Add independent access ranges support
[thirdparty/kernel/linux.git] / block / fops.c
CommitLineData
cd82cca7
CH
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright (C) 2001 Andrea Arcangeli <andrea@suse.de> SuSE
5 * Copyright (C) 2016 - 2020 Christoph Hellwig
6 */
7#include <linux/init.h>
8#include <linux/mm.h>
9#include <linux/blkdev.h>
10#include <linux/buffer_head.h>
11#include <linux/mpage.h>
12#include <linux/uio.h>
13#include <linux/namei.h>
14#include <linux/task_io_accounting_ops.h>
15#include <linux/falloc.h>
16#include <linux/suspend.h>
f278eb3d 17#include <linux/fs.h>
cd82cca7
CH
18#include "blk.h"
19
fac7c6d5 20static inline struct inode *bdev_file_inode(struct file *file)
cd82cca7
CH
21{
22 return file->f_mapping->host;
23}
24
25static int blkdev_get_block(struct inode *inode, sector_t iblock,
26 struct buffer_head *bh, int create)
27{
28 bh->b_bdev = I_BDEV(inode);
29 bh->b_blocknr = iblock;
30 set_buffer_mapped(bh);
31 return 0;
32}
33
34static unsigned int dio_bio_write_op(struct kiocb *iocb)
35{
36 unsigned int op = REQ_OP_WRITE | REQ_SYNC | REQ_IDLE;
37
38 /* avoid the need for a I/O completion work item */
39 if (iocb->ki_flags & IOCB_DSYNC)
40 op |= REQ_FUA;
41 return op;
42}
43
44#define DIO_INLINE_BIO_VECS 4
45
46static void blkdev_bio_end_io_simple(struct bio *bio)
47{
48 struct task_struct *waiter = bio->bi_private;
49
50 WRITE_ONCE(bio->bi_private, NULL);
51 blk_wake_io_task(waiter);
52}
53
54static ssize_t __blkdev_direct_IO_simple(struct kiocb *iocb,
55 struct iov_iter *iter, unsigned int nr_pages)
56{
fac7c6d5 57 struct block_device *bdev = iocb->ki_filp->private_data;
cd82cca7
CH
58 struct bio_vec inline_vecs[DIO_INLINE_BIO_VECS], *vecs;
59 loff_t pos = iocb->ki_pos;
60 bool should_dirty = false;
61 struct bio bio;
62 ssize_t ret;
cd82cca7
CH
63
64 if ((pos | iov_iter_alignment(iter)) &
65 (bdev_logical_block_size(bdev) - 1))
66 return -EINVAL;
67
68 if (nr_pages <= DIO_INLINE_BIO_VECS)
69 vecs = inline_vecs;
70 else {
71 vecs = kmalloc_array(nr_pages, sizeof(struct bio_vec),
72 GFP_KERNEL);
73 if (!vecs)
74 return -ENOMEM;
75 }
76
77 bio_init(&bio, vecs, nr_pages);
78 bio_set_dev(&bio, bdev);
6549a874 79 bio.bi_iter.bi_sector = pos >> SECTOR_SHIFT;
cd82cca7
CH
80 bio.bi_write_hint = iocb->ki_hint;
81 bio.bi_private = current;
82 bio.bi_end_io = blkdev_bio_end_io_simple;
83 bio.bi_ioprio = iocb->ki_ioprio;
84
85 ret = bio_iov_iter_get_pages(&bio, iter);
86 if (unlikely(ret))
87 goto out;
88 ret = bio.bi_iter.bi_size;
89
90 if (iov_iter_rw(iter) == READ) {
91 bio.bi_opf = REQ_OP_READ;
92 if (iter_is_iovec(iter))
93 should_dirty = true;
94 } else {
95 bio.bi_opf = dio_bio_write_op(iocb);
96 task_io_account_write(ret);
97 }
98 if (iocb->ki_flags & IOCB_NOWAIT)
99 bio.bi_opf |= REQ_NOWAIT;
100 if (iocb->ki_flags & IOCB_HIPRI)
101 bio_set_polled(&bio, iocb);
102
3e08773c 103 submit_bio(&bio);
cd82cca7
CH
104 for (;;) {
105 set_current_state(TASK_UNINTERRUPTIBLE);
106 if (!READ_ONCE(bio.bi_private))
107 break;
5a72e899 108 if (!(iocb->ki_flags & IOCB_HIPRI) || !bio_poll(&bio, NULL, 0))
cd82cca7
CH
109 blk_io_schedule();
110 }
111 __set_current_state(TASK_RUNNING);
112
113 bio_release_pages(&bio, should_dirty);
114 if (unlikely(bio.bi_status))
115 ret = blk_status_to_errno(bio.bi_status);
116
117out:
118 if (vecs != inline_vecs)
119 kfree(vecs);
120
121 bio_uninit(&bio);
122
123 return ret;
124}
125
09ce8744
JA
126enum {
127 DIO_MULTI_BIO = 1,
128 DIO_SHOULD_DIRTY = 2,
129 DIO_IS_SYNC = 4,
130};
131
cd82cca7
CH
132struct blkdev_dio {
133 union {
134 struct kiocb *iocb;
135 struct task_struct *waiter;
136 };
137 size_t size;
138 atomic_t ref;
09ce8744 139 unsigned int flags;
6155631a 140 struct bio bio ____cacheline_aligned_in_smp;
cd82cca7
CH
141};
142
143static struct bio_set blkdev_dio_pool;
144
cd82cca7
CH
145static void blkdev_bio_end_io(struct bio *bio)
146{
147 struct blkdev_dio *dio = bio->bi_private;
09ce8744 148 bool should_dirty = dio->flags & DIO_SHOULD_DIRTY;
cd82cca7
CH
149
150 if (bio->bi_status && !dio->bio.bi_status)
151 dio->bio.bi_status = bio->bi_status;
152
09ce8744
JA
153 if (!(dio->flags & DIO_MULTI_BIO) || atomic_dec_and_test(&dio->ref)) {
154 if (!(dio->flags & DIO_IS_SYNC)) {
cd82cca7
CH
155 struct kiocb *iocb = dio->iocb;
156 ssize_t ret;
157
3e08773c
CH
158 WRITE_ONCE(iocb->private, NULL);
159
cd82cca7
CH
160 if (likely(!dio->bio.bi_status)) {
161 ret = dio->size;
162 iocb->ki_pos += ret;
163 } else {
164 ret = blk_status_to_errno(dio->bio.bi_status);
165 }
166
167 dio->iocb->ki_complete(iocb, ret, 0);
09ce8744 168 if (dio->flags & DIO_MULTI_BIO)
cd82cca7
CH
169 bio_put(&dio->bio);
170 } else {
171 struct task_struct *waiter = dio->waiter;
172
173 WRITE_ONCE(dio->waiter, NULL);
174 blk_wake_io_task(waiter);
175 }
176 }
177
178 if (should_dirty) {
179 bio_check_pages_dirty(bio);
180 } else {
181 bio_release_pages(bio, false);
182 bio_put(bio);
183 }
184}
185
186static ssize_t __blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
187 unsigned int nr_pages)
188{
fac7c6d5 189 struct block_device *bdev = iocb->ki_filp->private_data;
cd82cca7
CH
190 struct blk_plug plug;
191 struct blkdev_dio *dio;
192 struct bio *bio;
71fc3f5e 193 bool do_poll = (iocb->ki_flags & IOCB_HIPRI);
cd82cca7
CH
194 bool is_read = (iov_iter_rw(iter) == READ), is_sync;
195 loff_t pos = iocb->ki_pos;
cd82cca7
CH
196 int ret = 0;
197
198 if ((pos | iov_iter_alignment(iter)) &
199 (bdev_logical_block_size(bdev) - 1))
200 return -EINVAL;
201
202 bio = bio_alloc_kiocb(iocb, nr_pages, &blkdev_dio_pool);
203
204 dio = container_of(bio, struct blkdev_dio, bio);
09ce8744
JA
205 is_sync = is_sync_kiocb(iocb);
206 if (is_sync) {
207 dio->flags = DIO_IS_SYNC;
cd82cca7
CH
208 dio->waiter = current;
209 bio_get(bio);
210 } else {
09ce8744 211 dio->flags = 0;
cd82cca7
CH
212 dio->iocb = iocb;
213 }
214
215 dio->size = 0;
09ce8744
JA
216 if (is_read && iter_is_iovec(iter))
217 dio->flags |= DIO_SHOULD_DIRTY;
cd82cca7
CH
218
219 /*
220 * Don't plug for HIPRI/polled IO, as those should go straight
221 * to issue
222 */
71fc3f5e 223 if (!(iocb->ki_flags & IOCB_HIPRI))
cd82cca7
CH
224 blk_start_plug(&plug);
225
226 for (;;) {
227 bio_set_dev(bio, bdev);
6549a874 228 bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
cd82cca7
CH
229 bio->bi_write_hint = iocb->ki_hint;
230 bio->bi_private = dio;
231 bio->bi_end_io = blkdev_bio_end_io;
232 bio->bi_ioprio = iocb->ki_ioprio;
233
234 ret = bio_iov_iter_get_pages(bio, iter);
235 if (unlikely(ret)) {
236 bio->bi_status = BLK_STS_IOERR;
237 bio_endio(bio);
238 break;
239 }
240
241 if (is_read) {
242 bio->bi_opf = REQ_OP_READ;
09ce8744 243 if (dio->flags & DIO_SHOULD_DIRTY)
cd82cca7
CH
244 bio_set_pages_dirty(bio);
245 } else {
246 bio->bi_opf = dio_bio_write_op(iocb);
247 task_io_account_write(bio->bi_iter.bi_size);
248 }
249 if (iocb->ki_flags & IOCB_NOWAIT)
250 bio->bi_opf |= REQ_NOWAIT;
251
252 dio->size += bio->bi_iter.bi_size;
253 pos += bio->bi_iter.bi_size;
254
255 nr_pages = bio_iov_vecs_to_alloc(iter, BIO_MAX_VECS);
256 if (!nr_pages) {
71fc3f5e 257 if (do_poll)
cd82cca7 258 bio_set_polled(bio, iocb);
3e08773c 259 submit_bio(bio);
71fc3f5e 260 if (do_poll)
3e08773c 261 WRITE_ONCE(iocb->private, bio);
cd82cca7
CH
262 break;
263 }
09ce8744 264 if (!(dio->flags & DIO_MULTI_BIO)) {
cd82cca7
CH
265 /*
266 * AIO needs an extra reference to ensure the dio
267 * structure which is embedded into the first bio
268 * stays around.
269 */
270 if (!is_sync)
271 bio_get(bio);
09ce8744 272 dio->flags |= DIO_MULTI_BIO;
cd82cca7 273 atomic_set(&dio->ref, 2);
71fc3f5e 274 do_poll = false;
cd82cca7
CH
275 } else {
276 atomic_inc(&dio->ref);
277 }
278
279 submit_bio(bio);
280 bio = bio_alloc(GFP_KERNEL, nr_pages);
281 }
282
71fc3f5e 283 if (!(iocb->ki_flags & IOCB_HIPRI))
cd82cca7
CH
284 blk_finish_plug(&plug);
285
286 if (!is_sync)
287 return -EIOCBQUEUED;
288
289 for (;;) {
290 set_current_state(TASK_UNINTERRUPTIBLE);
291 if (!READ_ONCE(dio->waiter))
292 break;
293
5a72e899 294 if (!do_poll || !bio_poll(bio, NULL, 0))
cd82cca7
CH
295 blk_io_schedule();
296 }
297 __set_current_state(TASK_RUNNING);
298
299 if (!ret)
300 ret = blk_status_to_errno(dio->bio.bi_status);
301 if (likely(!ret))
302 ret = dio->size;
303
304 bio_put(&dio->bio);
305 return ret;
306}
307
54a88eb8
PB
308static void blkdev_bio_end_io_async(struct bio *bio)
309{
310 struct blkdev_dio *dio = container_of(bio, struct blkdev_dio, bio);
311 struct kiocb *iocb = dio->iocb;
312 ssize_t ret;
313
314 if (likely(!bio->bi_status)) {
315 ret = dio->size;
316 iocb->ki_pos += ret;
317 } else {
318 ret = blk_status_to_errno(bio->bi_status);
319 }
320
321 iocb->ki_complete(iocb, ret, 0);
322
323 if (dio->flags & DIO_SHOULD_DIRTY) {
324 bio_check_pages_dirty(bio);
325 } else {
326 bio_release_pages(bio, false);
327 bio_put(bio);
328 }
329}
330
331static ssize_t __blkdev_direct_IO_async(struct kiocb *iocb,
332 struct iov_iter *iter,
333 unsigned int nr_pages)
334{
335 struct block_device *bdev = iocb->ki_filp->private_data;
336 struct blkdev_dio *dio;
337 struct bio *bio;
338 loff_t pos = iocb->ki_pos;
339 int ret = 0;
340
341 if ((pos | iov_iter_alignment(iter)) &
342 (bdev_logical_block_size(bdev) - 1))
343 return -EINVAL;
344
345 bio = bio_alloc_kiocb(iocb, nr_pages, &blkdev_dio_pool);
346 dio = container_of(bio, struct blkdev_dio, bio);
347 dio->flags = 0;
348 dio->iocb = iocb;
349 bio_set_dev(bio, bdev);
350 bio->bi_iter.bi_sector = pos >> SECTOR_SHIFT;
351 bio->bi_write_hint = iocb->ki_hint;
352 bio->bi_end_io = blkdev_bio_end_io_async;
353 bio->bi_ioprio = iocb->ki_ioprio;
354
355 ret = bio_iov_iter_get_pages(bio, iter);
356 if (unlikely(ret)) {
357 bio->bi_status = BLK_STS_IOERR;
358 bio_endio(bio);
359 return ret;
360 }
361 dio->size = bio->bi_iter.bi_size;
362
363 if (iov_iter_rw(iter) == READ) {
364 bio->bi_opf = REQ_OP_READ;
365 if (iter_is_iovec(iter)) {
366 dio->flags |= DIO_SHOULD_DIRTY;
367 bio_set_pages_dirty(bio);
368 }
369 } else {
370 bio->bi_opf = dio_bio_write_op(iocb);
371 task_io_account_write(bio->bi_iter.bi_size);
372 }
373
374 if (iocb->ki_flags & IOCB_NOWAIT)
375 bio->bi_opf |= REQ_NOWAIT;
376
377 if (iocb->ki_flags & IOCB_HIPRI) {
378 bio_set_polled(bio, iocb);
379 submit_bio(bio);
380 WRITE_ONCE(iocb->private, bio);
381 } else {
382 submit_bio(bio);
383 }
384 return -EIOCBQUEUED;
385}
386
cd82cca7
CH
387static ssize_t blkdev_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
388{
389 unsigned int nr_pages;
390
391 if (!iov_iter_count(iter))
392 return 0;
393
394 nr_pages = bio_iov_vecs_to_alloc(iter, BIO_MAX_VECS + 1);
54a88eb8
PB
395 if (likely(nr_pages <= BIO_MAX_VECS)) {
396 if (is_sync_kiocb(iocb))
397 return __blkdev_direct_IO_simple(iocb, iter, nr_pages);
398 return __blkdev_direct_IO_async(iocb, iter, nr_pages);
399 }
cd82cca7
CH
400 return __blkdev_direct_IO(iocb, iter, bio_max_segs(nr_pages));
401}
402
403static int blkdev_writepage(struct page *page, struct writeback_control *wbc)
404{
405 return block_write_full_page(page, blkdev_get_block, wbc);
406}
407
408static int blkdev_readpage(struct file * file, struct page * page)
409{
410 return block_read_full_page(page, blkdev_get_block);
411}
412
413static void blkdev_readahead(struct readahead_control *rac)
414{
415 mpage_readahead(rac, blkdev_get_block);
416}
417
418static int blkdev_write_begin(struct file *file, struct address_space *mapping,
419 loff_t pos, unsigned len, unsigned flags, struct page **pagep,
420 void **fsdata)
421{
422 return block_write_begin(mapping, pos, len, flags, pagep,
423 blkdev_get_block);
424}
425
426static int blkdev_write_end(struct file *file, struct address_space *mapping,
427 loff_t pos, unsigned len, unsigned copied, struct page *page,
428 void *fsdata)
429{
430 int ret;
431 ret = block_write_end(file, mapping, pos, len, copied, page, fsdata);
432
433 unlock_page(page);
434 put_page(page);
435
436 return ret;
437}
438
439static int blkdev_writepages(struct address_space *mapping,
440 struct writeback_control *wbc)
441{
442 return generic_writepages(mapping, wbc);
443}
444
445const struct address_space_operations def_blk_aops = {
446 .set_page_dirty = __set_page_dirty_buffers,
447 .readpage = blkdev_readpage,
448 .readahead = blkdev_readahead,
449 .writepage = blkdev_writepage,
450 .write_begin = blkdev_write_begin,
451 .write_end = blkdev_write_end,
452 .writepages = blkdev_writepages,
453 .direct_IO = blkdev_direct_IO,
454 .migratepage = buffer_migrate_page_norefs,
455 .is_dirty_writeback = buffer_check_dirty_writeback,
456};
457
458/*
459 * for a block special file file_inode(file)->i_size is zero
460 * so we compute the size by hand (just as in block_read/write above)
461 */
462static loff_t blkdev_llseek(struct file *file, loff_t offset, int whence)
463{
464 struct inode *bd_inode = bdev_file_inode(file);
465 loff_t retval;
466
467 inode_lock(bd_inode);
468 retval = fixed_size_llseek(file, offset, whence, i_size_read(bd_inode));
469 inode_unlock(bd_inode);
470 return retval;
471}
472
473static int blkdev_fsync(struct file *filp, loff_t start, loff_t end,
474 int datasync)
475{
fac7c6d5 476 struct block_device *bdev = filp->private_data;
cd82cca7
CH
477 int error;
478
479 error = file_write_and_wait_range(filp, start, end);
480 if (error)
481 return error;
482
483 /*
484 * There is no need to serialise calls to blkdev_issue_flush with
485 * i_mutex and doing so causes performance issues with concurrent
486 * O_SYNC writers to a block device.
487 */
488 error = blkdev_issue_flush(bdev);
489 if (error == -EOPNOTSUPP)
490 error = 0;
491
492 return error;
493}
494
495static int blkdev_open(struct inode *inode, struct file *filp)
496{
497 struct block_device *bdev;
498
499 /*
500 * Preserve backwards compatibility and allow large file access
501 * even if userspace doesn't ask for it explicitly. Some mkfs
502 * binary needs it. We might want to drop this workaround
503 * during an unstable branch.
504 */
505 filp->f_flags |= O_LARGEFILE;
506 filp->f_mode |= FMODE_NOWAIT | FMODE_BUF_RASYNC;
507
508 if (filp->f_flags & O_NDELAY)
509 filp->f_mode |= FMODE_NDELAY;
510 if (filp->f_flags & O_EXCL)
511 filp->f_mode |= FMODE_EXCL;
512 if ((filp->f_flags & O_ACCMODE) == 3)
513 filp->f_mode |= FMODE_WRITE_IOCTL;
514
515 bdev = blkdev_get_by_dev(inode->i_rdev, filp->f_mode, filp);
516 if (IS_ERR(bdev))
517 return PTR_ERR(bdev);
fac7c6d5
PB
518
519 filp->private_data = bdev;
cd82cca7
CH
520 filp->f_mapping = bdev->bd_inode->i_mapping;
521 filp->f_wb_err = filemap_sample_wb_err(filp->f_mapping);
522 return 0;
523}
524
525static int blkdev_close(struct inode *inode, struct file *filp)
526{
fac7c6d5 527 struct block_device *bdev = filp->private_data;
cd82cca7
CH
528
529 blkdev_put(bdev, filp->f_mode);
530 return 0;
531}
532
cd82cca7
CH
533/*
534 * Write data to the block device. Only intended for the block device itself
535 * and the raw driver which basically is a fake block device.
536 *
537 * Does not take i_mutex for the write and thus is not for general purpose
538 * use.
539 */
540static ssize_t blkdev_write_iter(struct kiocb *iocb, struct iov_iter *from)
541{
fac7c6d5
PB
542 struct block_device *bdev = iocb->ki_filp->private_data;
543 struct inode *bd_inode = bdev->bd_inode;
cd82cca7
CH
544 loff_t size = i_size_read(bd_inode);
545 struct blk_plug plug;
546 size_t shorted = 0;
547 ssize_t ret;
548
fac7c6d5 549 if (bdev_read_only(bdev))
cd82cca7
CH
550 return -EPERM;
551
552 if (IS_SWAPFILE(bd_inode) && !is_hibernate_resume_dev(bd_inode->i_rdev))
553 return -ETXTBSY;
554
555 if (!iov_iter_count(from))
556 return 0;
557
558 if (iocb->ki_pos >= size)
559 return -ENOSPC;
560
561 if ((iocb->ki_flags & (IOCB_NOWAIT | IOCB_DIRECT)) == IOCB_NOWAIT)
562 return -EOPNOTSUPP;
563
564 size -= iocb->ki_pos;
565 if (iov_iter_count(from) > size) {
566 shorted = iov_iter_count(from) - size;
567 iov_iter_truncate(from, size);
568 }
569
570 blk_start_plug(&plug);
571 ret = __generic_file_write_iter(iocb, from);
572 if (ret > 0)
573 ret = generic_write_sync(iocb, ret);
574 iov_iter_reexpand(from, iov_iter_count(from) + shorted);
575 blk_finish_plug(&plug);
576 return ret;
577}
578
579static ssize_t blkdev_read_iter(struct kiocb *iocb, struct iov_iter *to)
580{
fac7c6d5
PB
581 struct block_device *bdev = iocb->ki_filp->private_data;
582 loff_t size = i_size_read(bdev->bd_inode);
cd82cca7
CH
583 loff_t pos = iocb->ki_pos;
584 size_t shorted = 0;
585 ssize_t ret;
586
6450fe1f
PB
587 if (unlikely(pos + iov_iter_count(to) > size)) {
588 if (pos >= size)
589 return 0;
590 size -= pos;
591 if (iov_iter_count(to) > size) {
592 shorted = iov_iter_count(to) - size;
593 iov_iter_truncate(to, size);
594 }
cd82cca7
CH
595 }
596
597 ret = generic_file_read_iter(iocb, to);
6450fe1f
PB
598
599 if (unlikely(shorted))
600 iov_iter_reexpand(to, iov_iter_count(to) + shorted);
cd82cca7
CH
601 return ret;
602}
603
604#define BLKDEV_FALLOC_FL_SUPPORTED \
605 (FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE | \
606 FALLOC_FL_ZERO_RANGE | FALLOC_FL_NO_HIDE_STALE)
607
608static long blkdev_fallocate(struct file *file, int mode, loff_t start,
609 loff_t len)
610{
f278eb3d
ML
611 struct inode *inode = bdev_file_inode(file);
612 struct block_device *bdev = I_BDEV(inode);
cd82cca7
CH
613 loff_t end = start + len - 1;
614 loff_t isize;
615 int error;
616
617 /* Fail if we don't recognize the flags. */
618 if (mode & ~BLKDEV_FALLOC_FL_SUPPORTED)
619 return -EOPNOTSUPP;
620
621 /* Don't go off the end of the device. */
622 isize = i_size_read(bdev->bd_inode);
623 if (start >= isize)
624 return -EINVAL;
625 if (end >= isize) {
626 if (mode & FALLOC_FL_KEEP_SIZE) {
627 len = isize - start;
628 end = start + len - 1;
629 } else
630 return -EINVAL;
631 }
632
633 /*
634 * Don't allow IO that isn't aligned to logical block size.
635 */
636 if ((start | len) & (bdev_logical_block_size(bdev) - 1))
637 return -EINVAL;
638
f278eb3d
ML
639 filemap_invalidate_lock(inode->i_mapping);
640
cd82cca7
CH
641 /* Invalidate the page cache, including dirty pages. */
642 error = truncate_bdev_range(bdev, file->f_mode, start, end);
643 if (error)
f278eb3d 644 goto fail;
cd82cca7
CH
645
646 switch (mode) {
647 case FALLOC_FL_ZERO_RANGE:
648 case FALLOC_FL_ZERO_RANGE | FALLOC_FL_KEEP_SIZE:
6549a874
PB
649 error = blkdev_issue_zeroout(bdev, start >> SECTOR_SHIFT,
650 len >> SECTOR_SHIFT, GFP_KERNEL,
651 BLKDEV_ZERO_NOUNMAP);
cd82cca7
CH
652 break;
653 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE:
6549a874
PB
654 error = blkdev_issue_zeroout(bdev, start >> SECTOR_SHIFT,
655 len >> SECTOR_SHIFT, GFP_KERNEL,
656 BLKDEV_ZERO_NOFALLBACK);
cd82cca7
CH
657 break;
658 case FALLOC_FL_PUNCH_HOLE | FALLOC_FL_KEEP_SIZE | FALLOC_FL_NO_HIDE_STALE:
6549a874
PB
659 error = blkdev_issue_discard(bdev, start >> SECTOR_SHIFT,
660 len >> SECTOR_SHIFT, GFP_KERNEL, 0);
cd82cca7
CH
661 break;
662 default:
f278eb3d 663 error = -EOPNOTSUPP;
cd82cca7 664 }
cd82cca7 665
f278eb3d
ML
666 fail:
667 filemap_invalidate_unlock(inode->i_mapping);
668 return error;
cd82cca7
CH
669}
670
671const struct file_operations def_blk_fops = {
672 .open = blkdev_open,
673 .release = blkdev_close,
674 .llseek = blkdev_llseek,
675 .read_iter = blkdev_read_iter,
676 .write_iter = blkdev_write_iter,
3e08773c 677 .iopoll = iocb_bio_iopoll,
cd82cca7
CH
678 .mmap = generic_file_mmap,
679 .fsync = blkdev_fsync,
8a709512 680 .unlocked_ioctl = blkdev_ioctl,
cd82cca7
CH
681#ifdef CONFIG_COMPAT
682 .compat_ioctl = compat_blkdev_ioctl,
683#endif
684 .splice_read = generic_file_splice_read,
685 .splice_write = iter_file_splice_write,
686 .fallocate = blkdev_fallocate,
687};
688
689static __init int blkdev_init(void)
690{
691 return bioset_init(&blkdev_dio_pool, 4,
692 offsetof(struct blkdev_dio, bio),
693 BIOSET_NEED_BVECS|BIOSET_PERCPU_CACHE);
694}
695module_init(blkdev_init);