]> git.karo-electronics.de Git - karo-tx-linux.git/blob - fs/xfs/xfs_file.c
Merge remote-tracking branch 'aio-direct/for-next'
[karo-tx-linux.git] / fs / xfs / xfs_file.c
1 /*
2  * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3  * All Rights Reserved.
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope that it would be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write the Free Software Foundation,
16  * Inc.,  51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18 #include "xfs.h"
19 #include "xfs_fs.h"
20 #include "xfs_log.h"
21 #include "xfs_sb.h"
22 #include "xfs_ag.h"
23 #include "xfs_trans.h"
24 #include "xfs_mount.h"
25 #include "xfs_bmap_btree.h"
26 #include "xfs_alloc.h"
27 #include "xfs_dinode.h"
28 #include "xfs_inode.h"
29 #include "xfs_inode_item.h"
30 #include "xfs_bmap.h"
31 #include "xfs_bmap_util.h"
32 #include "xfs_error.h"
33 #include "xfs_da_btree.h"
34 #include "xfs_dir2_format.h"
35 #include "xfs_dir2.h"
36 #include "xfs_dir2_priv.h"
37 #include "xfs_ioctl.h"
38 #include "xfs_trace.h"
39
40 #include <linux/aio.h>
41 #include <linux/dcache.h>
42 #include <linux/falloc.h>
43 #include <linux/pagevec.h>
44
45 static const struct vm_operations_struct xfs_file_vm_ops;
46
47 /*
48  * Locking primitives for read and write IO paths to ensure we consistently use
49  * and order the inode->i_mutex, ip->i_lock and ip->i_iolock.
50  */
51 static inline void
52 xfs_rw_ilock(
53         struct xfs_inode        *ip,
54         int                     type)
55 {
56         if (type & XFS_IOLOCK_EXCL)
57                 mutex_lock(&VFS_I(ip)->i_mutex);
58         xfs_ilock(ip, type);
59 }
60
61 static inline void
62 xfs_rw_iunlock(
63         struct xfs_inode        *ip,
64         int                     type)
65 {
66         xfs_iunlock(ip, type);
67         if (type & XFS_IOLOCK_EXCL)
68                 mutex_unlock(&VFS_I(ip)->i_mutex);
69 }
70
71 static inline void
72 xfs_rw_ilock_demote(
73         struct xfs_inode        *ip,
74         int                     type)
75 {
76         xfs_ilock_demote(ip, type);
77         if (type & XFS_IOLOCK_EXCL)
78                 mutex_unlock(&VFS_I(ip)->i_mutex);
79 }
80
81 /*
82  *      xfs_iozero
83  *
84  *      xfs_iozero clears the specified range of buffer supplied,
85  *      and marks all the affected blocks as valid and modified.  If
86  *      an affected block is not allocated, it will be allocated.  If
87  *      an affected block is not completely overwritten, and is not
88  *      valid before the operation, it will be read from disk before
89  *      being partially zeroed.
90  */
91 int
92 xfs_iozero(
93         struct xfs_inode        *ip,    /* inode                        */
94         loff_t                  pos,    /* offset in file               */
95         size_t                  count)  /* size of data to zero         */
96 {
97         struct page             *page;
98         struct address_space    *mapping;
99         int                     status;
100
101         mapping = VFS_I(ip)->i_mapping;
102         do {
103                 unsigned offset, bytes;
104                 void *fsdata;
105
106                 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
107                 bytes = PAGE_CACHE_SIZE - offset;
108                 if (bytes > count)
109                         bytes = count;
110
111                 status = pagecache_write_begin(NULL, mapping, pos, bytes,
112                                         AOP_FLAG_UNINTERRUPTIBLE,
113                                         &page, &fsdata);
114                 if (status)
115                         break;
116
117                 zero_user(page, offset, bytes);
118
119                 status = pagecache_write_end(NULL, mapping, pos, bytes, bytes,
120                                         page, fsdata);
121                 WARN_ON(status <= 0); /* can't return less than zero! */
122                 pos += bytes;
123                 count -= bytes;
124                 status = 0;
125         } while (count);
126
127         return (-status);
128 }
129
130 /*
131  * Fsync operations on directories are much simpler than on regular files,
132  * as there is no file data to flush, and thus also no need for explicit
133  * cache flush operations, and there are no non-transaction metadata updates
134  * on directories either.
135  */
136 STATIC int
137 xfs_dir_fsync(
138         struct file             *file,
139         loff_t                  start,
140         loff_t                  end,
141         int                     datasync)
142 {
143         struct xfs_inode        *ip = XFS_I(file->f_mapping->host);
144         struct xfs_mount        *mp = ip->i_mount;
145         xfs_lsn_t               lsn = 0;
146
147         trace_xfs_dir_fsync(ip);
148
149         xfs_ilock(ip, XFS_ILOCK_SHARED);
150         if (xfs_ipincount(ip))
151                 lsn = ip->i_itemp->ili_last_lsn;
152         xfs_iunlock(ip, XFS_ILOCK_SHARED);
153
154         if (!lsn)
155                 return 0;
156         return _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, NULL);
157 }
158
159 STATIC int
160 xfs_file_fsync(
161         struct file             *file,
162         loff_t                  start,
163         loff_t                  end,
164         int                     datasync)
165 {
166         struct inode            *inode = file->f_mapping->host;
167         struct xfs_inode        *ip = XFS_I(inode);
168         struct xfs_mount        *mp = ip->i_mount;
169         int                     error = 0;
170         int                     log_flushed = 0;
171         xfs_lsn_t               lsn = 0;
172
173         trace_xfs_file_fsync(ip);
174
175         error = filemap_write_and_wait_range(inode->i_mapping, start, end);
176         if (error)
177                 return error;
178
179         if (XFS_FORCED_SHUTDOWN(mp))
180                 return -XFS_ERROR(EIO);
181
182         xfs_iflags_clear(ip, XFS_ITRUNCATED);
183
184         if (mp->m_flags & XFS_MOUNT_BARRIER) {
185                 /*
186                  * If we have an RT and/or log subvolume we need to make sure
187                  * to flush the write cache the device used for file data
188                  * first.  This is to ensure newly written file data make
189                  * it to disk before logging the new inode size in case of
190                  * an extending write.
191                  */
192                 if (XFS_IS_REALTIME_INODE(ip))
193                         xfs_blkdev_issue_flush(mp->m_rtdev_targp);
194                 else if (mp->m_logdev_targp != mp->m_ddev_targp)
195                         xfs_blkdev_issue_flush(mp->m_ddev_targp);
196         }
197
198         /*
199          * All metadata updates are logged, which means that we just have
200          * to flush the log up to the latest LSN that touched the inode.
201          */
202         xfs_ilock(ip, XFS_ILOCK_SHARED);
203         if (xfs_ipincount(ip)) {
204                 if (!datasync ||
205                     (ip->i_itemp->ili_fields & ~XFS_ILOG_TIMESTAMP))
206                         lsn = ip->i_itemp->ili_last_lsn;
207         }
208         xfs_iunlock(ip, XFS_ILOCK_SHARED);
209
210         if (lsn)
211                 error = _xfs_log_force_lsn(mp, lsn, XFS_LOG_SYNC, &log_flushed);
212
213         /*
214          * If we only have a single device, and the log force about was
215          * a no-op we might have to flush the data device cache here.
216          * This can only happen for fdatasync/O_DSYNC if we were overwriting
217          * an already allocated file and thus do not have any metadata to
218          * commit.
219          */
220         if ((mp->m_flags & XFS_MOUNT_BARRIER) &&
221             mp->m_logdev_targp == mp->m_ddev_targp &&
222             !XFS_IS_REALTIME_INODE(ip) &&
223             !log_flushed)
224                 xfs_blkdev_issue_flush(mp->m_ddev_targp);
225
226         return -error;
227 }
228
229 STATIC ssize_t
230 xfs_file_read_iter(
231         struct kiocb            *iocb,
232         struct iov_iter         *iter,
233         loff_t                  pos)
234 {
235         struct file             *file = iocb->ki_filp;
236         struct inode            *inode = file->f_mapping->host;
237         struct xfs_inode        *ip = XFS_I(inode);
238         struct xfs_mount        *mp = ip->i_mount;
239         size_t                  size = 0;
240         ssize_t                 ret = 0;
241         int                     ioflags = 0;
242         xfs_fsize_t             n;
243
244         XFS_STATS_INC(xs_read_calls);
245
246         BUG_ON(iocb->ki_pos != pos);
247
248         if (unlikely(file->f_flags & O_DIRECT))
249                 ioflags |= IO_ISDIRECT;
250         if (file->f_mode & FMODE_NOCMTIME)
251                 ioflags |= IO_INVIS;
252
253         size = iov_iter_count(iter);
254
255         if (unlikely(ioflags & IO_ISDIRECT)) {
256                 xfs_buftarg_t   *target =
257                         XFS_IS_REALTIME_INODE(ip) ?
258                                 mp->m_rtdev_targp : mp->m_ddev_targp;
259                 if ((pos & target->bt_smask) || (size & target->bt_smask)) {
260                         if (pos == i_size_read(inode))
261                                 return 0;
262                         return -XFS_ERROR(EINVAL);
263                 }
264         }
265
266         n = mp->m_super->s_maxbytes - pos;
267         if (n <= 0 || size == 0)
268                 return 0;
269
270         if (n < size)
271                 size = n;
272
273         if (XFS_FORCED_SHUTDOWN(mp))
274                 return -EIO;
275
276         /*
277          * Locking is a bit tricky here. If we take an exclusive lock
278          * for direct IO, we effectively serialise all new concurrent
279          * read IO to this file and block it behind IO that is currently in
280          * progress because IO in progress holds the IO lock shared. We only
281          * need to hold the lock exclusive to blow away the page cache, so
282          * only take lock exclusively if the page cache needs invalidation.
283          * This allows the normal direct IO case of no page cache pages to
284          * proceeed concurrently without serialisation.
285          */
286         xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
287         if ((ioflags & IO_ISDIRECT) && inode->i_mapping->nrpages) {
288                 xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
289                 xfs_rw_ilock(ip, XFS_IOLOCK_EXCL);
290
291                 if (inode->i_mapping->nrpages) {
292                         ret = -filemap_write_and_wait_range(
293                                                         VFS_I(ip)->i_mapping,
294                                                         pos, -1);
295                         if (ret) {
296                                 xfs_rw_iunlock(ip, XFS_IOLOCK_EXCL);
297                                 return ret;
298                         }
299                         truncate_pagecache_range(VFS_I(ip), pos, -1);
300                 }
301                 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
302         }
303
304         trace_xfs_file_read(ip, size, pos, ioflags);
305
306         ret = generic_file_read_iter(iocb, iter, pos);
307         if (ret > 0)
308                 XFS_STATS_ADD(xs_read_bytes, ret);
309
310         xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
311         return ret;
312 }
313
314 STATIC ssize_t
315 xfs_file_splice_read(
316         struct file             *infilp,
317         loff_t                  *ppos,
318         struct pipe_inode_info  *pipe,
319         size_t                  count,
320         unsigned int            flags)
321 {
322         struct xfs_inode        *ip = XFS_I(infilp->f_mapping->host);
323         int                     ioflags = 0;
324         ssize_t                 ret;
325
326         XFS_STATS_INC(xs_read_calls);
327
328         if (infilp->f_mode & FMODE_NOCMTIME)
329                 ioflags |= IO_INVIS;
330
331         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
332                 return -EIO;
333
334         xfs_rw_ilock(ip, XFS_IOLOCK_SHARED);
335
336         trace_xfs_file_splice_read(ip, count, *ppos, ioflags);
337
338         ret = generic_file_splice_read(infilp, ppos, pipe, count, flags);
339         if (ret > 0)
340                 XFS_STATS_ADD(xs_read_bytes, ret);
341
342         xfs_rw_iunlock(ip, XFS_IOLOCK_SHARED);
343         return ret;
344 }
345
346 /*
347  * xfs_file_splice_write() does not use xfs_rw_ilock() because
348  * generic_file_splice_write() takes the i_mutex itself. This, in theory,
349  * couuld cause lock inversions between the aio_write path and the splice path
350  * if someone is doing concurrent splice(2) based writes and write(2) based
351  * writes to the same inode. The only real way to fix this is to re-implement
352  * the generic code here with correct locking orders.
353  */
354 STATIC ssize_t
355 xfs_file_splice_write(
356         struct pipe_inode_info  *pipe,
357         struct file             *outfilp,
358         loff_t                  *ppos,
359         size_t                  count,
360         unsigned int            flags)
361 {
362         struct inode            *inode = outfilp->f_mapping->host;
363         struct xfs_inode        *ip = XFS_I(inode);
364         int                     ioflags = 0;
365         ssize_t                 ret;
366
367         XFS_STATS_INC(xs_write_calls);
368
369         if (outfilp->f_mode & FMODE_NOCMTIME)
370                 ioflags |= IO_INVIS;
371
372         if (XFS_FORCED_SHUTDOWN(ip->i_mount))
373                 return -EIO;
374
375         xfs_ilock(ip, XFS_IOLOCK_EXCL);
376
377         trace_xfs_file_splice_write(ip, count, *ppos, ioflags);
378
379         ret = generic_file_splice_write(pipe, outfilp, ppos, count, flags);
380         if (ret > 0)
381                 XFS_STATS_ADD(xs_write_bytes, ret);
382
383         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
384         return ret;
385 }
386
387 /*
388  * This routine is called to handle zeroing any space in the last block of the
389  * file that is beyond the EOF.  We do this since the size is being increased
390  * without writing anything to that block and we don't want to read the
391  * garbage on the disk.
392  */
393 STATIC int                              /* error (positive) */
394 xfs_zero_last_block(
395         struct xfs_inode        *ip,
396         xfs_fsize_t             offset,
397         xfs_fsize_t             isize)
398 {
399         struct xfs_mount        *mp = ip->i_mount;
400         xfs_fileoff_t           last_fsb = XFS_B_TO_FSBT(mp, isize);
401         int                     zero_offset = XFS_B_FSB_OFFSET(mp, isize);
402         int                     zero_len;
403         int                     nimaps = 1;
404         int                     error = 0;
405         struct xfs_bmbt_irec    imap;
406
407         xfs_ilock(ip, XFS_ILOCK_EXCL);
408         error = xfs_bmapi_read(ip, last_fsb, 1, &imap, &nimaps, 0);
409         xfs_iunlock(ip, XFS_ILOCK_EXCL);
410         if (error)
411                 return error;
412
413         ASSERT(nimaps > 0);
414
415         /*
416          * If the block underlying isize is just a hole, then there
417          * is nothing to zero.
418          */
419         if (imap.br_startblock == HOLESTARTBLOCK)
420                 return 0;
421
422         zero_len = mp->m_sb.sb_blocksize - zero_offset;
423         if (isize + zero_len > offset)
424                 zero_len = offset - isize;
425         return xfs_iozero(ip, isize, zero_len);
426 }
427
428 /*
429  * Zero any on disk space between the current EOF and the new, larger EOF.
430  *
431  * This handles the normal case of zeroing the remainder of the last block in
432  * the file and the unusual case of zeroing blocks out beyond the size of the
433  * file.  This second case only happens with fixed size extents and when the
434  * system crashes before the inode size was updated but after blocks were
435  * allocated.
436  *
437  * Expects the iolock to be held exclusive, and will take the ilock internally.
438  */
439 int                                     /* error (positive) */
440 xfs_zero_eof(
441         struct xfs_inode        *ip,
442         xfs_off_t               offset,         /* starting I/O offset */
443         xfs_fsize_t             isize)          /* current inode size */
444 {
445         struct xfs_mount        *mp = ip->i_mount;
446         xfs_fileoff_t           start_zero_fsb;
447         xfs_fileoff_t           end_zero_fsb;
448         xfs_fileoff_t           zero_count_fsb;
449         xfs_fileoff_t           last_fsb;
450         xfs_fileoff_t           zero_off;
451         xfs_fsize_t             zero_len;
452         int                     nimaps;
453         int                     error = 0;
454         struct xfs_bmbt_irec    imap;
455
456         ASSERT(xfs_isilocked(ip, XFS_IOLOCK_EXCL));
457         ASSERT(offset > isize);
458
459         /*
460          * First handle zeroing the block on which isize resides.
461          *
462          * We only zero a part of that block so it is handled specially.
463          */
464         if (XFS_B_FSB_OFFSET(mp, isize) != 0) {
465                 error = xfs_zero_last_block(ip, offset, isize);
466                 if (error)
467                         return error;
468         }
469
470         /*
471          * Calculate the range between the new size and the old where blocks
472          * needing to be zeroed may exist.
473          *
474          * To get the block where the last byte in the file currently resides,
475          * we need to subtract one from the size and truncate back to a block
476          * boundary.  We subtract 1 in case the size is exactly on a block
477          * boundary.
478          */
479         last_fsb = isize ? XFS_B_TO_FSBT(mp, isize - 1) : (xfs_fileoff_t)-1;
480         start_zero_fsb = XFS_B_TO_FSB(mp, (xfs_ufsize_t)isize);
481         end_zero_fsb = XFS_B_TO_FSBT(mp, offset - 1);
482         ASSERT((xfs_sfiloff_t)last_fsb < (xfs_sfiloff_t)start_zero_fsb);
483         if (last_fsb == end_zero_fsb) {
484                 /*
485                  * The size was only incremented on its last block.
486                  * We took care of that above, so just return.
487                  */
488                 return 0;
489         }
490
491         ASSERT(start_zero_fsb <= end_zero_fsb);
492         while (start_zero_fsb <= end_zero_fsb) {
493                 nimaps = 1;
494                 zero_count_fsb = end_zero_fsb - start_zero_fsb + 1;
495
496                 xfs_ilock(ip, XFS_ILOCK_EXCL);
497                 error = xfs_bmapi_read(ip, start_zero_fsb, zero_count_fsb,
498                                           &imap, &nimaps, 0);
499                 xfs_iunlock(ip, XFS_ILOCK_EXCL);
500                 if (error)
501                         return error;
502
503                 ASSERT(nimaps > 0);
504
505                 if (imap.br_state == XFS_EXT_UNWRITTEN ||
506                     imap.br_startblock == HOLESTARTBLOCK) {
507                         start_zero_fsb = imap.br_startoff + imap.br_blockcount;
508                         ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
509                         continue;
510                 }
511
512                 /*
513                  * There are blocks we need to zero.
514                  */
515                 zero_off = XFS_FSB_TO_B(mp, start_zero_fsb);
516                 zero_len = XFS_FSB_TO_B(mp, imap.br_blockcount);
517
518                 if ((zero_off + zero_len) > offset)
519                         zero_len = offset - zero_off;
520
521                 error = xfs_iozero(ip, zero_off, zero_len);
522                 if (error)
523                         return error;
524
525                 start_zero_fsb = imap.br_startoff + imap.br_blockcount;
526                 ASSERT(start_zero_fsb <= (end_zero_fsb + 1));
527         }
528
529         return 0;
530 }
531
532 /*
533  * Common pre-write limit and setup checks.
534  *
535  * Called with the iolocked held either shared and exclusive according to
536  * @iolock, and returns with it held.  Might upgrade the iolock to exclusive
537  * if called for a direct write beyond i_size.
538  */
539 STATIC ssize_t
540 xfs_file_aio_write_checks(
541         struct file             *file,
542         loff_t                  *pos,
543         size_t                  *count,
544         int                     *iolock)
545 {
546         struct inode            *inode = file->f_mapping->host;
547         struct xfs_inode        *ip = XFS_I(inode);
548         int                     error = 0;
549
550 restart:
551         error = generic_write_checks(file, pos, count, S_ISBLK(inode->i_mode));
552         if (error)
553                 return error;
554
555         /*
556          * If the offset is beyond the size of the file, we need to zero any
557          * blocks that fall between the existing EOF and the start of this
558          * write.  If zeroing is needed and we are currently holding the
559          * iolock shared, we need to update it to exclusive which implies
560          * having to redo all checks before.
561          */
562         if (*pos > i_size_read(inode)) {
563                 if (*iolock == XFS_IOLOCK_SHARED) {
564                         xfs_rw_iunlock(ip, *iolock);
565                         *iolock = XFS_IOLOCK_EXCL;
566                         xfs_rw_ilock(ip, *iolock);
567                         goto restart;
568                 }
569                 error = -xfs_zero_eof(ip, *pos, i_size_read(inode));
570                 if (error)
571                         return error;
572         }
573
574         /*
575          * Updating the timestamps will grab the ilock again from
576          * xfs_fs_dirty_inode, so we have to call it after dropping the
577          * lock above.  Eventually we should look into a way to avoid
578          * the pointless lock roundtrip.
579          */
580         if (likely(!(file->f_mode & FMODE_NOCMTIME))) {
581                 error = file_update_time(file);
582                 if (error)
583                         return error;
584         }
585
586         /*
587          * If we're writing the file then make sure to clear the setuid and
588          * setgid bits if the process is not being run by root.  This keeps
589          * people from modifying setuid and setgid binaries.
590          */
591         return file_remove_suid(file);
592 }
593
594 /*
595  * xfs_file_dio_aio_write - handle direct IO writes
596  *
597  * Lock the inode appropriately to prepare for and issue a direct IO write.
598  * By separating it from the buffered write path we remove all the tricky to
599  * follow locking changes and looping.
600  *
601  * If there are cached pages or we're extending the file, we need IOLOCK_EXCL
602  * until we're sure the bytes at the new EOF have been zeroed and/or the cached
603  * pages are flushed out.
604  *
605  * In most cases the direct IO writes will be done holding IOLOCK_SHARED
606  * allowing them to be done in parallel with reads and other direct IO writes.
607  * However, if the IO is not aligned to filesystem blocks, the direct IO layer
608  * needs to do sub-block zeroing and that requires serialisation against other
609  * direct IOs to the same block. In this case we need to serialise the
610  * submission of the unaligned IOs so that we don't get racing block zeroing in
611  * the dio layer.  To avoid the problem with aio, we also need to wait for
612  * outstanding IOs to complete so that unwritten extent conversion is completed
613  * before we try to map the overlapping block. This is currently implemented by
614  * hitting it with a big hammer (i.e. inode_dio_wait()).
615  *
616  * Returns with locks held indicated by @iolock and errors indicated by
617  * negative return values.
618  */
619 STATIC ssize_t
620 xfs_file_dio_aio_write(
621         struct kiocb            *iocb,
622         struct iov_iter         *iter,
623         loff_t                  pos,
624         size_t                  count)
625 {
626         struct file             *file = iocb->ki_filp;
627         struct address_space    *mapping = file->f_mapping;
628         struct inode            *inode = mapping->host;
629         struct xfs_inode        *ip = XFS_I(inode);
630         struct xfs_mount        *mp = ip->i_mount;
631         ssize_t                 ret = 0;
632         int                     unaligned_io = 0;
633         int                     iolock;
634         struct xfs_buftarg      *target = XFS_IS_REALTIME_INODE(ip) ?
635                                         mp->m_rtdev_targp : mp->m_ddev_targp;
636
637         if ((pos & target->bt_smask) || (count & target->bt_smask))
638                 return -XFS_ERROR(EINVAL);
639
640         if ((pos & mp->m_blockmask) || ((pos + count) & mp->m_blockmask))
641                 unaligned_io = 1;
642
643         /*
644          * We don't need to take an exclusive lock unless there page cache needs
645          * to be invalidated or unaligned IO is being executed. We don't need to
646          * consider the EOF extension case here because
647          * xfs_file_aio_write_checks() will relock the inode as necessary for
648          * EOF zeroing cases and fill out the new inode size as appropriate.
649          */
650         if (unaligned_io || mapping->nrpages)
651                 iolock = XFS_IOLOCK_EXCL;
652         else
653                 iolock = XFS_IOLOCK_SHARED;
654         xfs_rw_ilock(ip, iolock);
655
656         /*
657          * Recheck if there are cached pages that need invalidate after we got
658          * the iolock to protect against other threads adding new pages while
659          * we were waiting for the iolock.
660          */
661         if (mapping->nrpages && iolock == XFS_IOLOCK_SHARED) {
662                 xfs_rw_iunlock(ip, iolock);
663                 iolock = XFS_IOLOCK_EXCL;
664                 xfs_rw_ilock(ip, iolock);
665         }
666
667         ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
668         if (ret)
669                 goto out;
670
671         if (mapping->nrpages) {
672                 ret = -filemap_write_and_wait_range(VFS_I(ip)->i_mapping,
673                                                     pos, -1);
674                 if (ret)
675                         goto out;
676                 truncate_pagecache_range(VFS_I(ip), pos, -1);
677         }
678
679         /*
680          * If we are doing unaligned IO, wait for all other IO to drain,
681          * otherwise demote the lock if we had to flush cached pages
682          */
683         if (unaligned_io)
684                 inode_dio_wait(inode);
685         else if (iolock == XFS_IOLOCK_EXCL) {
686                 xfs_rw_ilock_demote(ip, XFS_IOLOCK_EXCL);
687                 iolock = XFS_IOLOCK_SHARED;
688         }
689
690         trace_xfs_file_direct_write(ip, count, iocb->ki_pos, 0);
691         ret = generic_file_direct_write_iter(iocb, iter,
692                         pos, &iocb->ki_pos, count);
693
694 out:
695         xfs_rw_iunlock(ip, iolock);
696
697         /* No fallback to buffered IO on errors for XFS. */
698         ASSERT(ret < 0 || ret == count);
699         return ret;
700 }
701
702 STATIC ssize_t
703 xfs_file_buffered_aio_write(
704         struct kiocb            *iocb,
705         struct iov_iter         *iter,
706         loff_t                  pos,
707         size_t                  count)
708 {
709         struct file             *file = iocb->ki_filp;
710         struct address_space    *mapping = file->f_mapping;
711         struct inode            *inode = mapping->host;
712         struct xfs_inode        *ip = XFS_I(inode);
713         ssize_t                 ret;
714         int                     enospc = 0;
715         int                     iolock = XFS_IOLOCK_EXCL;
716
717         xfs_rw_ilock(ip, iolock);
718
719         ret = xfs_file_aio_write_checks(file, &pos, &count, &iolock);
720         if (ret)
721                 goto out;
722
723         /* We can write back this queue in page reclaim */
724         current->backing_dev_info = mapping->backing_dev_info;
725
726 write_retry:
727         trace_xfs_file_buffered_write(ip, count, iocb->ki_pos, 0);
728         ret = generic_file_buffered_write_iter(iocb, iter,
729                         pos, &iocb->ki_pos, count, 0);
730
731         /*
732          * If we just got an ENOSPC, try to write back all dirty inodes to
733          * convert delalloc space to free up some of the excess reserved
734          * metadata space.
735          */
736         if (ret == -ENOSPC && !enospc) {
737                 enospc = 1;
738                 xfs_flush_inodes(ip->i_mount);
739                 goto write_retry;
740         }
741
742         current->backing_dev_info = NULL;
743 out:
744         xfs_rw_iunlock(ip, iolock);
745         return ret;
746 }
747
748 STATIC ssize_t
749 xfs_file_write_iter(
750         struct kiocb            *iocb,
751         struct iov_iter         *iter,
752         loff_t                  pos)
753 {
754         struct file             *file = iocb->ki_filp;
755         struct address_space    *mapping = file->f_mapping;
756         struct inode            *inode = mapping->host;
757         struct xfs_inode        *ip = XFS_I(inode);
758         ssize_t                 ret;
759         size_t                  count = 0;
760
761         XFS_STATS_INC(xs_write_calls);
762
763         BUG_ON(iocb->ki_pos != pos);
764
765         count = iov_iter_count(iter);
766
767         if (count == 0)
768                 return 0;
769
770         if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
771                 ret = -EIO;
772                 goto out;
773         }
774
775         if (unlikely(file->f_flags & O_DIRECT))
776                 ret = xfs_file_dio_aio_write(iocb, iter, pos, count);
777         else
778                 ret = xfs_file_buffered_aio_write(iocb, iter, pos, count);
779
780         if (ret > 0) {
781                 ssize_t err;
782
783                 XFS_STATS_ADD(xs_write_bytes, ret);
784
785                 /* Handle various SYNC-type writes */
786                 err = generic_write_sync(file, pos, ret);
787                 if (err < 0)
788                         ret = err;
789         }
790
791 out:
792         return ret;
793 }
794
795 STATIC long
796 xfs_file_fallocate(
797         struct file     *file,
798         int             mode,
799         loff_t          offset,
800         loff_t          len)
801 {
802         struct inode    *inode = file_inode(file);
803         long            error;
804         loff_t          new_size = 0;
805         xfs_flock64_t   bf;
806         xfs_inode_t     *ip = XFS_I(inode);
807         int             cmd = XFS_IOC_RESVSP;
808         int             attr_flags = XFS_ATTR_NOLOCK;
809
810         if (mode & ~(FALLOC_FL_KEEP_SIZE | FALLOC_FL_PUNCH_HOLE))
811                 return -EOPNOTSUPP;
812
813         bf.l_whence = 0;
814         bf.l_start = offset;
815         bf.l_len = len;
816
817         xfs_ilock(ip, XFS_IOLOCK_EXCL);
818
819         if (mode & FALLOC_FL_PUNCH_HOLE)
820                 cmd = XFS_IOC_UNRESVSP;
821
822         /* check the new inode size is valid before allocating */
823         if (!(mode & FALLOC_FL_KEEP_SIZE) &&
824             offset + len > i_size_read(inode)) {
825                 new_size = offset + len;
826                 error = inode_newsize_ok(inode, new_size);
827                 if (error)
828                         goto out_unlock;
829         }
830
831         if (file->f_flags & O_DSYNC)
832                 attr_flags |= XFS_ATTR_SYNC;
833
834         error = -xfs_change_file_space(ip, cmd, &bf, 0, attr_flags);
835         if (error)
836                 goto out_unlock;
837
838         /* Change file size if needed */
839         if (new_size) {
840                 struct iattr iattr;
841
842                 iattr.ia_valid = ATTR_SIZE;
843                 iattr.ia_size = new_size;
844                 error = -xfs_setattr_size(ip, &iattr, XFS_ATTR_NOLOCK);
845         }
846
847 out_unlock:
848         xfs_iunlock(ip, XFS_IOLOCK_EXCL);
849         return error;
850 }
851
852
853 STATIC int
854 xfs_file_open(
855         struct inode    *inode,
856         struct file     *file)
857 {
858         if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
859                 return -EFBIG;
860         if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
861                 return -EIO;
862         return 0;
863 }
864
865 STATIC int
866 xfs_dir_open(
867         struct inode    *inode,
868         struct file     *file)
869 {
870         struct xfs_inode *ip = XFS_I(inode);
871         int             mode;
872         int             error;
873
874         error = xfs_file_open(inode, file);
875         if (error)
876                 return error;
877
878         /*
879          * If there are any blocks, read-ahead block 0 as we're almost
880          * certain to have the next operation be a read there.
881          */
882         mode = xfs_ilock_map_shared(ip);
883         if (ip->i_d.di_nextents > 0)
884                 xfs_dir3_data_readahead(NULL, ip, 0, -1);
885         xfs_iunlock(ip, mode);
886         return 0;
887 }
888
889 STATIC int
890 xfs_file_release(
891         struct inode    *inode,
892         struct file     *filp)
893 {
894         return -xfs_release(XFS_I(inode));
895 }
896
897 STATIC int
898 xfs_file_readdir(
899         struct file     *file,
900         struct dir_context *ctx)
901 {
902         struct inode    *inode = file_inode(file);
903         xfs_inode_t     *ip = XFS_I(inode);
904         int             error;
905         size_t          bufsize;
906
907         /*
908          * The Linux API doesn't pass down the total size of the buffer
909          * we read into down to the filesystem.  With the filldir concept
910          * it's not needed for correct information, but the XFS dir2 leaf
911          * code wants an estimate of the buffer size to calculate it's
912          * readahead window and size the buffers used for mapping to
913          * physical blocks.
914          *
915          * Try to give it an estimate that's good enough, maybe at some
916          * point we can change the ->readdir prototype to include the
917          * buffer size.  For now we use the current glibc buffer size.
918          */
919         bufsize = (size_t)min_t(loff_t, 32768, ip->i_d.di_size);
920
921         error = xfs_readdir(ip, ctx, bufsize);
922         if (error)
923                 return -error;
924         return 0;
925 }
926
927 STATIC int
928 xfs_file_mmap(
929         struct file     *filp,
930         struct vm_area_struct *vma)
931 {
932         vma->vm_ops = &xfs_file_vm_ops;
933
934         file_accessed(filp);
935         return 0;
936 }
937
938 /*
939  * mmap()d file has taken write protection fault and is being made
940  * writable. We can set the page state up correctly for a writable
941  * page, which means we can do correct delalloc accounting (ENOSPC
942  * checking!) and unwritten extent mapping.
943  */
944 STATIC int
945 xfs_vm_page_mkwrite(
946         struct vm_area_struct   *vma,
947         struct vm_fault         *vmf)
948 {
949         return block_page_mkwrite(vma, vmf, xfs_get_blocks);
950 }
951
952 /*
953  * This type is designed to indicate the type of offset we would like
954  * to search from page cache for either xfs_seek_data() or xfs_seek_hole().
955  */
956 enum {
957         HOLE_OFF = 0,
958         DATA_OFF,
959 };
960
961 /*
962  * Lookup the desired type of offset from the given page.
963  *
964  * On success, return true and the offset argument will point to the
965  * start of the region that was found.  Otherwise this function will
966  * return false and keep the offset argument unchanged.
967  */
968 STATIC bool
969 xfs_lookup_buffer_offset(
970         struct page             *page,
971         loff_t                  *offset,
972         unsigned int            type)
973 {
974         loff_t                  lastoff = page_offset(page);
975         bool                    found = false;
976         struct buffer_head      *bh, *head;
977
978         bh = head = page_buffers(page);
979         do {
980                 /*
981                  * Unwritten extents that have data in the page
982                  * cache covering them can be identified by the
983                  * BH_Unwritten state flag.  Pages with multiple
984                  * buffers might have a mix of holes, data and
985                  * unwritten extents - any buffer with valid
986                  * data in it should have BH_Uptodate flag set
987                  * on it.
988                  */
989                 if (buffer_unwritten(bh) ||
990                     buffer_uptodate(bh)) {
991                         if (type == DATA_OFF)
992                                 found = true;
993                 } else {
994                         if (type == HOLE_OFF)
995                                 found = true;
996                 }
997
998                 if (found) {
999                         *offset = lastoff;
1000                         break;
1001                 }
1002                 lastoff += bh->b_size;
1003         } while ((bh = bh->b_this_page) != head);
1004
1005         return found;
1006 }
1007
1008 /*
1009  * This routine is called to find out and return a data or hole offset
1010  * from the page cache for unwritten extents according to the desired
1011  * type for xfs_seek_data() or xfs_seek_hole().
1012  *
1013  * The argument offset is used to tell where we start to search from the
1014  * page cache.  Map is used to figure out the end points of the range to
1015  * lookup pages.
1016  *
1017  * Return true if the desired type of offset was found, and the argument
1018  * offset is filled with that address.  Otherwise, return false and keep
1019  * offset unchanged.
1020  */
1021 STATIC bool
1022 xfs_find_get_desired_pgoff(
1023         struct inode            *inode,
1024         struct xfs_bmbt_irec    *map,
1025         unsigned int            type,
1026         loff_t                  *offset)
1027 {
1028         struct xfs_inode        *ip = XFS_I(inode);
1029         struct xfs_mount        *mp = ip->i_mount;
1030         struct pagevec          pvec;
1031         pgoff_t                 index;
1032         pgoff_t                 end;
1033         loff_t                  endoff;
1034         loff_t                  startoff = *offset;
1035         loff_t                  lastoff = startoff;
1036         bool                    found = false;
1037
1038         pagevec_init(&pvec, 0);
1039
1040         index = startoff >> PAGE_CACHE_SHIFT;
1041         endoff = XFS_FSB_TO_B(mp, map->br_startoff + map->br_blockcount);
1042         end = endoff >> PAGE_CACHE_SHIFT;
1043         do {
1044                 int             want;
1045                 unsigned        nr_pages;
1046                 unsigned int    i;
1047
1048                 want = min_t(pgoff_t, end - index, PAGEVEC_SIZE);
1049                 nr_pages = pagevec_lookup(&pvec, inode->i_mapping, index,
1050                                           want);
1051                 /*
1052                  * No page mapped into given range.  If we are searching holes
1053                  * and if this is the first time we got into the loop, it means
1054                  * that the given offset is landed in a hole, return it.
1055                  *
1056                  * If we have already stepped through some block buffers to find
1057                  * holes but they all contains data.  In this case, the last
1058                  * offset is already updated and pointed to the end of the last
1059                  * mapped page, if it does not reach the endpoint to search,
1060                  * that means there should be a hole between them.
1061                  */
1062                 if (nr_pages == 0) {
1063                         /* Data search found nothing */
1064                         if (type == DATA_OFF)
1065                                 break;
1066
1067                         ASSERT(type == HOLE_OFF);
1068                         if (lastoff == startoff || lastoff < endoff) {
1069                                 found = true;
1070                                 *offset = lastoff;
1071                         }
1072                         break;
1073                 }
1074
1075                 /*
1076                  * At lease we found one page.  If this is the first time we
1077                  * step into the loop, and if the first page index offset is
1078                  * greater than the given search offset, a hole was found.
1079                  */
1080                 if (type == HOLE_OFF && lastoff == startoff &&
1081                     lastoff < page_offset(pvec.pages[0])) {
1082                         found = true;
1083                         break;
1084                 }
1085
1086                 for (i = 0; i < nr_pages; i++) {
1087                         struct page     *page = pvec.pages[i];
1088                         loff_t          b_offset;
1089
1090                         /*
1091                          * At this point, the page may be truncated or
1092                          * invalidated (changing page->mapping to NULL),
1093                          * or even swizzled back from swapper_space to tmpfs
1094                          * file mapping. However, page->index will not change
1095                          * because we have a reference on the page.
1096                          *
1097                          * Searching done if the page index is out of range.
1098                          * If the current offset is not reaches the end of
1099                          * the specified search range, there should be a hole
1100                          * between them.
1101                          */
1102                         if (page->index > end) {
1103                                 if (type == HOLE_OFF && lastoff < endoff) {
1104                                         *offset = lastoff;
1105                                         found = true;
1106                                 }
1107                                 goto out;
1108                         }
1109
1110                         lock_page(page);
1111                         /*
1112                          * Page truncated or invalidated(page->mapping == NULL).
1113                          * We can freely skip it and proceed to check the next
1114                          * page.
1115                          */
1116                         if (unlikely(page->mapping != inode->i_mapping)) {
1117                                 unlock_page(page);
1118                                 continue;
1119                         }
1120
1121                         if (!page_has_buffers(page)) {
1122                                 unlock_page(page);
1123                                 continue;
1124                         }
1125
1126                         found = xfs_lookup_buffer_offset(page, &b_offset, type);
1127                         if (found) {
1128                                 /*
1129                                  * The found offset may be less than the start
1130                                  * point to search if this is the first time to
1131                                  * come here.
1132                                  */
1133                                 *offset = max_t(loff_t, startoff, b_offset);
1134                                 unlock_page(page);
1135                                 goto out;
1136                         }
1137
1138                         /*
1139                          * We either searching data but nothing was found, or
1140                          * searching hole but found a data buffer.  In either
1141                          * case, probably the next page contains the desired
1142                          * things, update the last offset to it so.
1143                          */
1144                         lastoff = page_offset(page) + PAGE_SIZE;
1145                         unlock_page(page);
1146                 }
1147
1148                 /*
1149                  * The number of returned pages less than our desired, search
1150                  * done.  In this case, nothing was found for searching data,
1151                  * but we found a hole behind the last offset.
1152                  */
1153                 if (nr_pages < want) {
1154                         if (type == HOLE_OFF) {
1155                                 *offset = lastoff;
1156                                 found = true;
1157                         }
1158                         break;
1159                 }
1160
1161                 index = pvec.pages[i - 1]->index + 1;
1162                 pagevec_release(&pvec);
1163         } while (index <= end);
1164
1165 out:
1166         pagevec_release(&pvec);
1167         return found;
1168 }
1169
1170 STATIC loff_t
1171 xfs_seek_data(
1172         struct file             *file,
1173         loff_t                  start)
1174 {
1175         struct inode            *inode = file->f_mapping->host;
1176         struct xfs_inode        *ip = XFS_I(inode);
1177         struct xfs_mount        *mp = ip->i_mount;
1178         loff_t                  uninitialized_var(offset);
1179         xfs_fsize_t             isize;
1180         xfs_fileoff_t           fsbno;
1181         xfs_filblks_t           end;
1182         uint                    lock;
1183         int                     error;
1184
1185         lock = xfs_ilock_map_shared(ip);
1186
1187         isize = i_size_read(inode);
1188         if (start >= isize) {
1189                 error = ENXIO;
1190                 goto out_unlock;
1191         }
1192
1193         /*
1194          * Try to read extents from the first block indicated
1195          * by fsbno to the end block of the file.
1196          */
1197         fsbno = XFS_B_TO_FSBT(mp, start);
1198         end = XFS_B_TO_FSB(mp, isize);
1199         for (;;) {
1200                 struct xfs_bmbt_irec    map[2];
1201                 int                     nmap = 2;
1202                 unsigned int            i;
1203
1204                 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1205                                        XFS_BMAPI_ENTIRE);
1206                 if (error)
1207                         goto out_unlock;
1208
1209                 /* No extents at given offset, must be beyond EOF */
1210                 if (nmap == 0) {
1211                         error = ENXIO;
1212                         goto out_unlock;
1213                 }
1214
1215                 for (i = 0; i < nmap; i++) {
1216                         offset = max_t(loff_t, start,
1217                                        XFS_FSB_TO_B(mp, map[i].br_startoff));
1218
1219                         /* Landed in a data extent */
1220                         if (map[i].br_startblock == DELAYSTARTBLOCK ||
1221                             (map[i].br_state == XFS_EXT_NORM &&
1222                              !isnullstartblock(map[i].br_startblock)))
1223                                 goto out;
1224
1225                         /*
1226                          * Landed in an unwritten extent, try to search data
1227                          * from page cache.
1228                          */
1229                         if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1230                                 if (xfs_find_get_desired_pgoff(inode, &map[i],
1231                                                         DATA_OFF, &offset))
1232                                         goto out;
1233                         }
1234                 }
1235
1236                 /*
1237                  * map[0] is hole or its an unwritten extent but
1238                  * without data in page cache.  Probably means that
1239                  * we are reading after EOF if nothing in map[1].
1240                  */
1241                 if (nmap == 1) {
1242                         error = ENXIO;
1243                         goto out_unlock;
1244                 }
1245
1246                 ASSERT(i > 1);
1247
1248                 /*
1249                  * Nothing was found, proceed to the next round of search
1250                  * if reading offset not beyond or hit EOF.
1251                  */
1252                 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1253                 start = XFS_FSB_TO_B(mp, fsbno);
1254                 if (start >= isize) {
1255                         error = ENXIO;
1256                         goto out_unlock;
1257                 }
1258         }
1259
1260 out:
1261         offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
1262
1263 out_unlock:
1264         xfs_iunlock_map_shared(ip, lock);
1265
1266         if (error)
1267                 return -error;
1268         return offset;
1269 }
1270
1271 STATIC loff_t
1272 xfs_seek_hole(
1273         struct file             *file,
1274         loff_t                  start)
1275 {
1276         struct inode            *inode = file->f_mapping->host;
1277         struct xfs_inode        *ip = XFS_I(inode);
1278         struct xfs_mount        *mp = ip->i_mount;
1279         loff_t                  uninitialized_var(offset);
1280         xfs_fsize_t             isize;
1281         xfs_fileoff_t           fsbno;
1282         xfs_filblks_t           end;
1283         uint                    lock;
1284         int                     error;
1285
1286         if (XFS_FORCED_SHUTDOWN(mp))
1287                 return -XFS_ERROR(EIO);
1288
1289         lock = xfs_ilock_map_shared(ip);
1290
1291         isize = i_size_read(inode);
1292         if (start >= isize) {
1293                 error = ENXIO;
1294                 goto out_unlock;
1295         }
1296
1297         fsbno = XFS_B_TO_FSBT(mp, start);
1298         end = XFS_B_TO_FSB(mp, isize);
1299
1300         for (;;) {
1301                 struct xfs_bmbt_irec    map[2];
1302                 int                     nmap = 2;
1303                 unsigned int            i;
1304
1305                 error = xfs_bmapi_read(ip, fsbno, end - fsbno, map, &nmap,
1306                                        XFS_BMAPI_ENTIRE);
1307                 if (error)
1308                         goto out_unlock;
1309
1310                 /* No extents at given offset, must be beyond EOF */
1311                 if (nmap == 0) {
1312                         error = ENXIO;
1313                         goto out_unlock;
1314                 }
1315
1316                 for (i = 0; i < nmap; i++) {
1317                         offset = max_t(loff_t, start,
1318                                        XFS_FSB_TO_B(mp, map[i].br_startoff));
1319
1320                         /* Landed in a hole */
1321                         if (map[i].br_startblock == HOLESTARTBLOCK)
1322                                 goto out;
1323
1324                         /*
1325                          * Landed in an unwritten extent, try to search hole
1326                          * from page cache.
1327                          */
1328                         if (map[i].br_state == XFS_EXT_UNWRITTEN) {
1329                                 if (xfs_find_get_desired_pgoff(inode, &map[i],
1330                                                         HOLE_OFF, &offset))
1331                                         goto out;
1332                         }
1333                 }
1334
1335                 /*
1336                  * map[0] contains data or its unwritten but contains
1337                  * data in page cache, probably means that we are
1338                  * reading after EOF.  We should fix offset to point
1339                  * to the end of the file(i.e., there is an implicit
1340                  * hole at the end of any file).
1341                  */
1342                 if (nmap == 1) {
1343                         offset = isize;
1344                         break;
1345                 }
1346
1347                 ASSERT(i > 1);
1348
1349                 /*
1350                  * Both mappings contains data, proceed to the next round of
1351                  * search if the current reading offset not beyond or hit EOF.
1352                  */
1353                 fsbno = map[i - 1].br_startoff + map[i - 1].br_blockcount;
1354                 start = XFS_FSB_TO_B(mp, fsbno);
1355                 if (start >= isize) {
1356                         offset = isize;
1357                         break;
1358                 }
1359         }
1360
1361 out:
1362         /*
1363          * At this point, we must have found a hole.  However, the returned
1364          * offset may be bigger than the file size as it may be aligned to
1365          * page boundary for unwritten extents, we need to deal with this
1366          * situation in particular.
1367          */
1368         offset = min_t(loff_t, offset, isize);
1369         offset = vfs_setpos(file, offset, inode->i_sb->s_maxbytes);
1370
1371 out_unlock:
1372         xfs_iunlock_map_shared(ip, lock);
1373
1374         if (error)
1375                 return -error;
1376         return offset;
1377 }
1378
1379 STATIC loff_t
1380 xfs_file_llseek(
1381         struct file     *file,
1382         loff_t          offset,
1383         int             origin)
1384 {
1385         switch (origin) {
1386         case SEEK_END:
1387         case SEEK_CUR:
1388         case SEEK_SET:
1389                 return generic_file_llseek(file, offset, origin);
1390         case SEEK_DATA:
1391                 return xfs_seek_data(file, offset);
1392         case SEEK_HOLE:
1393                 return xfs_seek_hole(file, offset);
1394         default:
1395                 return -EINVAL;
1396         }
1397 }
1398
1399 const struct file_operations xfs_file_operations = {
1400         .llseek         = xfs_file_llseek,
1401         .read           = do_sync_read,
1402         .write          = do_sync_write,
1403         .read_iter      = xfs_file_read_iter,
1404         .write_iter     = xfs_file_write_iter,
1405         .splice_read    = xfs_file_splice_read,
1406         .splice_write   = xfs_file_splice_write,
1407         .unlocked_ioctl = xfs_file_ioctl,
1408 #ifdef CONFIG_COMPAT
1409         .compat_ioctl   = xfs_file_compat_ioctl,
1410 #endif
1411         .mmap           = xfs_file_mmap,
1412         .open           = xfs_file_open,
1413         .release        = xfs_file_release,
1414         .fsync          = xfs_file_fsync,
1415         .fallocate      = xfs_file_fallocate,
1416 };
1417
1418 const struct file_operations xfs_dir_file_operations = {
1419         .open           = xfs_dir_open,
1420         .read           = generic_read_dir,
1421         .iterate        = xfs_file_readdir,
1422         .llseek         = generic_file_llseek,
1423         .unlocked_ioctl = xfs_file_ioctl,
1424 #ifdef CONFIG_COMPAT
1425         .compat_ioctl   = xfs_file_compat_ioctl,
1426 #endif
1427         .fsync          = xfs_dir_fsync,
1428 };
1429
1430 static const struct vm_operations_struct xfs_file_vm_ops = {
1431         .fault          = filemap_fault,
1432         .page_mkwrite   = xfs_vm_page_mkwrite,
1433         .remap_pages    = generic_file_remap_pages,
1434 };