blob: 72fc8d8c8bc197994adb27c3751b2c56987b5932 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7b718762005-11-02 14:58:39 +11002 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Nathan Scott7b718762005-11-02 14:58:39 +11005 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * published by the Free Software Foundation.
8 *
Nathan Scott7b718762005-11-02 14:58:39 +11009 * 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.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Nathan Scott7b718762005-11-02 14:58:39 +110014 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include "xfs.h"
Nathan Scotta844f452005-11-02 14:38:42 +110019#include "xfs_bit.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "xfs_log.h"
Nathan Scotta844f452005-11-02 14:38:42 +110021#include "xfs_inum.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include "xfs_sb.h"
Nathan Scotta844f452005-11-02 14:38:42 +110023#include "xfs_ag.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "xfs_dir2.h"
25#include "xfs_trans.h"
26#include "xfs_dmapi.h"
27#include "xfs_mount.h"
28#include "xfs_bmap_btree.h"
29#include "xfs_alloc_btree.h"
30#include "xfs_ialloc_btree.h"
31#include "xfs_alloc.h"
32#include "xfs_btree.h"
33#include "xfs_attr_sf.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include "xfs_dir2_sf.h"
35#include "xfs_dinode.h"
36#include "xfs_inode.h"
37#include "xfs_error.h"
38#include "xfs_rw.h"
39#include "xfs_ioctl32.h"
Christoph Hellwig739bfb22007-08-29 10:58:01 +100040#include "xfs_vnodeops.h"
Christoph Hellwigf999a5b2008-11-28 14:23:32 +110041#include "xfs_da_btree.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43#include <linux/dcache.h>
44#include <linux/smp_lock.h>
45
Nathan Scott3562fd42006-03-14 14:00:35 +110046static struct vm_operations_struct xfs_file_vm_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Chinner7989cb82007-02-10 18:34:56 +110048STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110049__xfs_file_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070051 const struct iovec *iov,
52 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 int ioflags,
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 loff_t pos)
55{
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 BUG_ON(iocb->ki_pos != pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 if (unlikely(file->f_flags & O_DIRECT))
60 ioflags |= IO_ISDIRECT;
Christoph Hellwig739bfb22007-08-29 10:58:01 +100061 return xfs_read(XFS_I(file->f_path.dentry->d_inode), iocb, iov,
62 nr_segs, &iocb->ki_pos, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063}
64
Linus Torvalds1da177e2005-04-16 15:20:36 -070065STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110066xfs_file_aio_read(
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070068 const struct iovec *iov,
69 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 loff_t pos)
71{
Badari Pulavarty027445c2006-09-30 23:28:46 -070072 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070073}
74
75STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110076xfs_file_aio_read_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -070078 const struct iovec *iov,
79 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 loff_t pos)
81{
Badari Pulavarty027445c2006-09-30 23:28:46 -070082 return __xfs_file_read(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
David Chinner7989cb82007-02-10 18:34:56 +110085STATIC_INLINE ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +110086__xfs_file_write(
Badari Pulavarty027445c2006-09-30 23:28:46 -070087 struct kiocb *iocb,
88 const struct iovec *iov,
89 unsigned long nr_segs,
90 int ioflags,
91 loff_t pos)
Linus Torvalds1da177e2005-04-16 15:20:36 -070092{
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 struct file *file = iocb->ki_filp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95 BUG_ON(iocb->ki_pos != pos);
96 if (unlikely(file->f_flags & O_DIRECT))
97 ioflags |= IO_ISDIRECT;
Christoph Hellwig739bfb22007-08-29 10:58:01 +100098 return xfs_write(XFS_I(file->f_mapping->host), iocb, iov, nr_segs,
99 &iocb->ki_pos, ioflags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100}
101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100103xfs_file_aio_write(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700105 const struct iovec *iov,
106 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 loff_t pos)
108{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700109 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110}
111
112STATIC ssize_t
Nathan Scott3562fd42006-03-14 14:00:35 +1100113xfs_file_aio_write_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 struct kiocb *iocb,
Badari Pulavarty027445c2006-09-30 23:28:46 -0700115 const struct iovec *iov,
116 unsigned long nr_segs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 loff_t pos)
118{
Badari Pulavarty027445c2006-09-30 23:28:46 -0700119 return __xfs_file_write(iocb, iov, nr_segs, IO_ISAIO|IO_INVIS, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122STATIC ssize_t
Nathan Scott1b895842006-03-31 13:08:59 +1000123xfs_file_splice_read(
124 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200125 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200126 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000127 size_t len,
128 unsigned int flags)
129{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000130 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
131 infilp, ppos, pipe, len, flags, 0);
Nathan Scott1b895842006-03-31 13:08:59 +1000132}
133
134STATIC ssize_t
135xfs_file_splice_read_invis(
136 struct file *infilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200137 loff_t *ppos,
Ingo Molnar3a326a22006-04-10 15:18:35 +0200138 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000139 size_t len,
140 unsigned int flags)
141{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000142 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
143 infilp, ppos, pipe, len, flags, IO_INVIS);
Nathan Scott1b895842006-03-31 13:08:59 +1000144}
145
146STATIC ssize_t
147xfs_file_splice_write(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200148 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000149 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200150 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000151 size_t len,
152 unsigned int flags)
153{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000154 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
155 pipe, outfilp, ppos, len, flags, 0);
Nathan Scott1b895842006-03-31 13:08:59 +1000156}
157
158STATIC ssize_t
159xfs_file_splice_write_invis(
Ingo Molnar3a326a22006-04-10 15:18:35 +0200160 struct pipe_inode_info *pipe,
Nathan Scott1b895842006-03-31 13:08:59 +1000161 struct file *outfilp,
Jens Axboecbb7e572006-04-11 14:57:50 +0200162 loff_t *ppos,
Nathan Scott1b895842006-03-31 13:08:59 +1000163 size_t len,
164 unsigned int flags)
165{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000166 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
167 pipe, outfilp, ppos, len, flags, IO_INVIS);
Nathan Scott1b895842006-03-31 13:08:59 +1000168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100171xfs_file_open(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 struct inode *inode,
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100173 struct file *file)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100175 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -EFBIG;
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100177 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
178 return -EIO;
179 return 0;
180}
181
182STATIC int
183xfs_dir_open(
184 struct inode *inode,
185 struct file *file)
186{
187 struct xfs_inode *ip = XFS_I(inode);
188 int mode;
189 int error;
190
191 error = xfs_file_open(inode, file);
192 if (error)
193 return error;
194
195 /*
196 * If there are any blocks, read-ahead block 0 as we're almost
197 * certain to have the next operation be a read there.
198 */
199 mode = xfs_ilock_map_shared(ip);
200 if (ip->i_d.di_nextents > 0)
201 xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
202 xfs_iunlock(ip, mode);
203 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100207xfs_file_release(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 struct inode *inode,
209 struct file *filp)
210{
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000211 return -xfs_release(XFS_I(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212}
213
David Chinner978b7232008-05-19 16:29:46 +1000214/*
215 * We ignore the datasync flag here because a datasync is effectively
216 * identical to an fsync. That is, datasync implies that we need to write
217 * only the metadata needed to be able to access the data that is written
218 * if we crash after the call completes. Hence if we are writing beyond
219 * EOF we have to log the inode size change as well, which makes it a
220 * full fsync. If we don't write beyond EOF, the inode core will be
221 * clean in memory and so we don't need to log the inode, just like
222 * fsync.
223 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100225xfs_file_fsync(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 struct file *filp,
227 struct dentry *dentry,
228 int datasync)
229{
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000230 xfs_iflags_clear(XFS_I(dentry->d_inode), XFS_ITRUNCATED);
David Chinner978b7232008-05-19 16:29:46 +1000231 return -xfs_fsync(XFS_I(dentry->d_inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100235xfs_file_readdir(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 struct file *filp,
237 void *dirent,
238 filldir_t filldir)
239{
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000240 struct inode *inode = filp->f_path.dentry->d_inode;
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000241 xfs_inode_t *ip = XFS_I(inode);
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000242 int error;
243 size_t bufsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000245 /*
246 * The Linux API doesn't pass down the total size of the buffer
247 * we read into down to the filesystem. With the filldir concept
248 * it's not needed for correct information, but the XFS dir2 leaf
249 * code wants an estimate of the buffer size to calculate it's
250 * readahead window and size the buffers used for mapping to
251 * physical blocks.
252 *
253 * Try to give it an estimate that's good enough, maybe at some
254 * point we can change the ->readdir prototype to include the
255 * buffer size.
256 */
257 bufsize = (size_t)min_t(loff_t, PAGE_SIZE, inode->i_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000259 error = xfs_readdir(ip, dirent, bufsize,
Christoph Hellwig051e7cd2007-08-28 13:58:24 +1000260 (xfs_off_t *)&filp->f_pos, filldir);
261 if (error)
262 return -error;
263 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266STATIC int
Nathan Scott3562fd42006-03-14 14:00:35 +1100267xfs_file_mmap(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct file *filp,
269 struct vm_area_struct *vma)
270{
Nathan Scott3562fd42006-03-14 14:00:35 +1100271 vma->vm_ops = &xfs_file_vm_ops;
Nick Piggind0217ac2007-07-19 01:47:03 -0700272 vma->vm_flags |= VM_CAN_NONLINEAR;
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000273
Nathan Scottfbc14622006-06-09 14:52:13 +1000274 file_accessed(filp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return 0;
276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100279xfs_file_ioctl(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 struct file *filp,
281 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000282 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800285 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000287 error = xfs_ioctl(XFS_I(inode), filp, 0, cmd, (void __user *)p);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000288 xfs_iflags_set(XFS_I(inode), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289
290 /* NOTE: some of the ioctl's return positive #'s as a
291 * byte count indicating success, such as
292 * readlink_by_handle. So we don't "sign flip"
293 * like most other routines. This means true
294 * errors need to be returned as a negative value.
295 */
296 return error;
297}
298
299STATIC long
Nathan Scott3562fd42006-03-14 14:00:35 +1100300xfs_file_ioctl_invis(
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 struct file *filp,
302 unsigned int cmd,
Nathan Scott67fcaa72006-06-09 17:00:52 +1000303 unsigned long p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
Nathan Scott1b895842006-03-31 13:08:59 +1000305 int error;
Josef "Jeff" Sipeke678fb02006-12-08 02:36:49 -0800306 struct inode *inode = filp->f_path.dentry->d_inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Christoph Hellwig739bfb22007-08-29 10:58:01 +1000308 error = xfs_ioctl(XFS_I(inode), filp, IO_INVIS, cmd, (void __user *)p);
Christoph Hellwigb3aea4e2007-08-29 11:44:37 +1000309 xfs_iflags_set(XFS_I(inode), XFS_IMODIFIED);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 /* NOTE: some of the ioctl's return positive #'s as a
312 * byte count indicating success, such as
313 * readlink_by_handle. So we don't "sign flip"
314 * like most other routines. This means true
315 * errors need to be returned as a negative value.
316 */
317 return error;
318}
319
David Chinner4f57dbc2007-07-19 16:28:17 +1000320/*
321 * mmap()d file has taken write protection fault and is being made
322 * writable. We can set the page state up correctly for a writable
323 * page, which means we can do correct delalloc accounting (ENOSPC
324 * checking!) and unwritten extent mapping.
325 */
326STATIC int
327xfs_vm_page_mkwrite(
328 struct vm_area_struct *vma,
329 struct page *page)
330{
331 return block_page_mkwrite(vma, page, xfs_get_blocks);
332}
333
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800334const struct file_operations xfs_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .llseek = generic_file_llseek,
336 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000337 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100338 .aio_read = xfs_file_aio_read,
339 .aio_write = xfs_file_aio_write,
Nathan Scott1b895842006-03-31 13:08:59 +1000340 .splice_read = xfs_file_splice_read,
341 .splice_write = xfs_file_splice_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100342 .unlocked_ioctl = xfs_file_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100344 .compat_ioctl = xfs_file_compat_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100346 .mmap = xfs_file_mmap,
347 .open = xfs_file_open,
348 .release = xfs_file_release,
349 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350#ifdef HAVE_FOP_OPEN_EXEC
Nathan Scott3562fd42006-03-14 14:00:35 +1100351 .open_exec = xfs_file_open_exec,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#endif
353};
354
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800355const struct file_operations xfs_invis_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 .llseek = generic_file_llseek,
357 .read = do_sync_read,
Dean Roehrichbb3f7242005-09-02 15:43:05 +1000358 .write = do_sync_write,
Nathan Scott3562fd42006-03-14 14:00:35 +1100359 .aio_read = xfs_file_aio_read_invis,
360 .aio_write = xfs_file_aio_write_invis,
Nathan Scott1b895842006-03-31 13:08:59 +1000361 .splice_read = xfs_file_splice_read_invis,
362 .splice_write = xfs_file_splice_write_invis,
Nathan Scott3562fd42006-03-14 14:00:35 +1100363 .unlocked_ioctl = xfs_file_ioctl_invis,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100365 .compat_ioctl = xfs_file_compat_invis_ioctl,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100367 .mmap = xfs_file_mmap,
368 .open = xfs_file_open,
369 .release = xfs_file_release,
370 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
372
373
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800374const struct file_operations xfs_dir_file_operations = {
Christoph Hellwigf999a5b2008-11-28 14:23:32 +1100375 .open = xfs_dir_open,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 .read = generic_read_dir,
Nathan Scott3562fd42006-03-14 14:00:35 +1100377 .readdir = xfs_file_readdir,
Al Viro59af1582008-08-24 07:24:41 -0400378 .llseek = generic_file_llseek,
Nathan Scott3562fd42006-03-14 14:00:35 +1100379 .unlocked_ioctl = xfs_file_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700380#ifdef CONFIG_COMPAT
Nathan Scott3562fd42006-03-14 14:00:35 +1100381 .compat_ioctl = xfs_file_compat_ioctl,
Nathan Scottd3870392005-05-06 06:44:46 -0700382#endif
Nathan Scott3562fd42006-03-14 14:00:35 +1100383 .fsync = xfs_file_fsync,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384};
385
Nathan Scott3562fd42006-03-14 14:00:35 +1100386static struct vm_operations_struct xfs_file_vm_ops = {
Nick Piggin54cb8822007-07-19 01:46:59 -0700387 .fault = filemap_fault,
David Chinner4f57dbc2007-07-19 16:28:17 +1000388 .page_mkwrite = xfs_vm_page_mkwrite,
Dean Roehrich6fac0cb2005-06-21 14:07:45 +1000389};