mm: enable hashdist by default on 64bit NUMA
[deliverable/linux.git] / fs / xfs / linux-2.6 / xfs_file.c
CommitLineData
1da177e4 1/*
7b718769
NS
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
1da177e4 4 *
7b718769
NS
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
1da177e4
LT
7 * published by the Free Software Foundation.
8 *
7b718769
NS
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.
1da177e4 13 *
7b718769
NS
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
1da177e4 17 */
1da177e4 18#include "xfs.h"
a844f451 19#include "xfs_bit.h"
1da177e4 20#include "xfs_log.h"
a844f451 21#include "xfs_inum.h"
1da177e4 22#include "xfs_sb.h"
a844f451 23#include "xfs_ag.h"
1da177e4
LT
24#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"
1da177e4
LT
34#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"
739bfb2a 39#include "xfs_vnodeops.h"
f999a5bf 40#include "xfs_da_btree.h"
ddcd856d 41#include "xfs_ioctl.h"
1da177e4
LT
42
43#include <linux/dcache.h>
44#include <linux/smp_lock.h>
45
3562fd45 46static struct vm_operations_struct xfs_file_vm_ops;
1da177e4 47
4d4be482
CH
48STATIC ssize_t
49xfs_file_aio_read(
1da177e4 50 struct kiocb *iocb,
027445c3
BP
51 const struct iovec *iov,
52 unsigned long nr_segs,
1da177e4
LT
53 loff_t pos)
54{
1da177e4 55 struct file *file = iocb->ki_filp;
4d4be482 56 int ioflags = IO_ISAIO;
1da177e4
LT
57
58 BUG_ON(iocb->ki_pos != pos);
1da177e4
LT
59 if (unlikely(file->f_flags & O_DIRECT))
60 ioflags |= IO_ISDIRECT;
4d4be482
CH
61 if (file->f_mode & FMODE_NOCMTIME)
62 ioflags |= IO_INVIS;
739bfb2a
CH
63 return xfs_read(XFS_I(file->f_path.dentry->d_inode), iocb, iov,
64 nr_segs, &iocb->ki_pos, ioflags);
1da177e4
LT
65}
66
1da177e4 67STATIC ssize_t
4d4be482 68xfs_file_aio_write(
027445c3
BP
69 struct kiocb *iocb,
70 const struct iovec *iov,
71 unsigned long nr_segs,
027445c3 72 loff_t pos)
1da177e4 73{
4d4be482
CH
74 struct file *file = iocb->ki_filp;
75 int ioflags = IO_ISAIO;
1da177e4
LT
76
77 BUG_ON(iocb->ki_pos != pos);
78 if (unlikely(file->f_flags & O_DIRECT))
79 ioflags |= IO_ISDIRECT;
4d4be482
CH
80 if (file->f_mode & FMODE_NOCMTIME)
81 ioflags |= IO_INVIS;
739bfb2a
CH
82 return xfs_write(XFS_I(file->f_mapping->host), iocb, iov, nr_segs,
83 &iocb->ki_pos, ioflags);
1da177e4
LT
84}
85
1b895840
NS
86STATIC ssize_t
87xfs_file_splice_read(
88 struct file *infilp,
cbb7e577 89 loff_t *ppos,
3a326a2c 90 struct pipe_inode_info *pipe,
1b895840
NS
91 size_t len,
92 unsigned int flags)
93{
4d4be482
CH
94 int ioflags = 0;
95
96 if (infilp->f_mode & FMODE_NOCMTIME)
97 ioflags |= IO_INVIS;
1b895840 98
739bfb2a 99 return xfs_splice_read(XFS_I(infilp->f_path.dentry->d_inode),
4d4be482 100 infilp, ppos, pipe, len, flags, ioflags);
1b895840
NS
101}
102
103STATIC ssize_t
104xfs_file_splice_write(
3a326a2c 105 struct pipe_inode_info *pipe,
1b895840 106 struct file *outfilp,
cbb7e577 107 loff_t *ppos,
1b895840
NS
108 size_t len,
109 unsigned int flags)
110{
4d4be482
CH
111 int ioflags = 0;
112
113 if (outfilp->f_mode & FMODE_NOCMTIME)
114 ioflags |= IO_INVIS;
1b895840 115
739bfb2a 116 return xfs_splice_write(XFS_I(outfilp->f_path.dentry->d_inode),
4d4be482 117 pipe, outfilp, ppos, len, flags, ioflags);
1b895840 118}
1da177e4
LT
119
120STATIC int
3562fd45 121xfs_file_open(
1da177e4 122 struct inode *inode,
f999a5bf 123 struct file *file)
1da177e4 124{
f999a5bf 125 if (!(file->f_flags & O_LARGEFILE) && i_size_read(inode) > MAX_NON_LFS)
1da177e4 126 return -EFBIG;
f999a5bf
CH
127 if (XFS_FORCED_SHUTDOWN(XFS_M(inode->i_sb)))
128 return -EIO;
129 return 0;
130}
131
132STATIC int
133xfs_dir_open(
134 struct inode *inode,
135 struct file *file)
136{
137 struct xfs_inode *ip = XFS_I(inode);
138 int mode;
139 int error;
140
141 error = xfs_file_open(inode, file);
142 if (error)
143 return error;
144
145 /*
146 * If there are any blocks, read-ahead block 0 as we're almost
147 * certain to have the next operation be a read there.
148 */
149 mode = xfs_ilock_map_shared(ip);
150 if (ip->i_d.di_nextents > 0)
151 xfs_da_reada_buf(NULL, ip, 0, XFS_DATA_FORK);
152 xfs_iunlock(ip, mode);
153 return 0;
1da177e4
LT
154}
155
1da177e4 156STATIC int
3562fd45 157xfs_file_release(
1da177e4
LT
158 struct inode *inode,
159 struct file *filp)
160{
739bfb2a 161 return -xfs_release(XFS_I(inode));
1da177e4
LT
162}
163
978b7237
DC
164/*
165 * We ignore the datasync flag here because a datasync is effectively
166 * identical to an fsync. That is, datasync implies that we need to write
167 * only the metadata needed to be able to access the data that is written
168 * if we crash after the call completes. Hence if we are writing beyond
169 * EOF we have to log the inode size change as well, which makes it a
170 * full fsync. If we don't write beyond EOF, the inode core will be
171 * clean in memory and so we don't need to log the inode, just like
172 * fsync.
173 */
1da177e4 174STATIC int
3562fd45 175xfs_file_fsync(
1da177e4
LT
176 struct file *filp,
177 struct dentry *dentry,
178 int datasync)
179{
b3aea4ed 180 xfs_iflags_clear(XFS_I(dentry->d_inode), XFS_ITRUNCATED);
978b7237 181 return -xfs_fsync(XFS_I(dentry->d_inode));
1da177e4
LT
182}
183
1da177e4 184STATIC int
3562fd45 185xfs_file_readdir(
1da177e4
LT
186 struct file *filp,
187 void *dirent,
188 filldir_t filldir)
189{
051e7cd4 190 struct inode *inode = filp->f_path.dentry->d_inode;
739bfb2a 191 xfs_inode_t *ip = XFS_I(inode);
051e7cd4
CH
192 int error;
193 size_t bufsize;
194
195 /*
196 * The Linux API doesn't pass down the total size of the buffer
197 * we read into down to the filesystem. With the filldir concept
198 * it's not needed for correct information, but the XFS dir2 leaf
199 * code wants an estimate of the buffer size to calculate it's
200 * readahead window and size the buffers used for mapping to
201 * physical blocks.
202 *
203 * Try to give it an estimate that's good enough, maybe at some
204 * point we can change the ->readdir prototype to include the
205 * buffer size.
206 */
d415867e 207 bufsize = (size_t)min_t(loff_t, PAGE_SIZE, ip->i_d.di_size);
051e7cd4 208
739bfb2a 209 error = xfs_readdir(ip, dirent, bufsize,
051e7cd4
CH
210 (xfs_off_t *)&filp->f_pos, filldir);
211 if (error)
212 return -error;
213 return 0;
1da177e4
LT
214}
215
1da177e4 216STATIC int
3562fd45 217xfs_file_mmap(
1da177e4
LT
218 struct file *filp,
219 struct vm_area_struct *vma)
220{
3562fd45 221 vma->vm_ops = &xfs_file_vm_ops;
d0217ac0 222 vma->vm_flags |= VM_CAN_NONLINEAR;
6fac0cb4 223
fbc1462b 224 file_accessed(filp);
1da177e4
LT
225 return 0;
226}
227
4f57dbc6
DC
228/*
229 * mmap()d file has taken write protection fault and is being made
230 * writable. We can set the page state up correctly for a writable
231 * page, which means we can do correct delalloc accounting (ENOSPC
232 * checking!) and unwritten extent mapping.
233 */
234STATIC int
235xfs_vm_page_mkwrite(
236 struct vm_area_struct *vma,
237 struct page *page)
238{
239 return block_page_mkwrite(vma, page, xfs_get_blocks);
240}
241
4b6f5d20 242const struct file_operations xfs_file_operations = {
1da177e4
LT
243 .llseek = generic_file_llseek,
244 .read = do_sync_read,
bb3f724e 245 .write = do_sync_write,
3562fd45
NS
246 .aio_read = xfs_file_aio_read,
247 .aio_write = xfs_file_aio_write,
1b895840
NS
248 .splice_read = xfs_file_splice_read,
249 .splice_write = xfs_file_splice_write,
3562fd45 250 .unlocked_ioctl = xfs_file_ioctl,
1da177e4 251#ifdef CONFIG_COMPAT
3562fd45 252 .compat_ioctl = xfs_file_compat_ioctl,
1da177e4 253#endif
3562fd45
NS
254 .mmap = xfs_file_mmap,
255 .open = xfs_file_open,
256 .release = xfs_file_release,
257 .fsync = xfs_file_fsync,
1da177e4 258#ifdef HAVE_FOP_OPEN_EXEC
3562fd45 259 .open_exec = xfs_file_open_exec,
1da177e4
LT
260#endif
261};
262
4b6f5d20 263const struct file_operations xfs_dir_file_operations = {
f999a5bf 264 .open = xfs_dir_open,
1da177e4 265 .read = generic_read_dir,
3562fd45 266 .readdir = xfs_file_readdir,
59af1584 267 .llseek = generic_file_llseek,
3562fd45 268 .unlocked_ioctl = xfs_file_ioctl,
d3870398 269#ifdef CONFIG_COMPAT
3562fd45 270 .compat_ioctl = xfs_file_compat_ioctl,
d3870398 271#endif
3562fd45 272 .fsync = xfs_file_fsync,
1da177e4
LT
273};
274
3562fd45 275static struct vm_operations_struct xfs_file_vm_ops = {
54cb8821 276 .fault = filemap_fault,
4f57dbc6 277 .page_mkwrite = xfs_vm_page_mkwrite,
6fac0cb4 278};
This page took 0.366974 seconds and 5 git commands to generate.