blob: e2897912fec71b341c8111bc31f267d01e3cb5e2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Nathan Scott7d4fb402006-06-09 15:27:16 +10002 * Copyright (c) 2000-2002,2005-2006 Silicon Graphics, Inc.
Nathan Scott7b718762005-11-02 14:58:39 +11003 * 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"
Christoph Hellwig993386c2007-08-28 16:12:30 +100019#include "xfs_vnodeops.h"
20
21/*
22 * The following six includes are needed so that we can include
23 * xfs_inode.h. What a mess..
24 */
25#include "xfs_bmap_btree.h"
26#include "xfs_inum.h"
27#include "xfs_dir2.h"
28#include "xfs_dir2_sf.h"
29#include "xfs_attr_sf.h"
30#include "xfs_dinode.h"
31
32#include "xfs_inode.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Nathan Scott7d4fb402006-06-09 15:27:16 +100034int fs_noerr(void) { return 0; }
35int fs_nosys(void) { return ENOSYS; }
36void fs_noval(void) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038void
Christoph Hellwig993386c2007-08-28 16:12:30 +100039xfs_tosspages(
40 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 xfs_off_t first,
42 xfs_off_t last,
43 int fiopt)
44{
Christoph Hellwig993386c2007-08-28 16:12:30 +100045 bhv_vnode_t *vp = XFS_ITOV(ip);
46 struct inode *inode = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48 if (VN_CACHED(vp))
Christoph Hellwig993386c2007-08-28 16:12:30 +100049 truncate_inode_pages(inode->i_mapping, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -070050}
51
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100052int
Christoph Hellwig993386c2007-08-28 16:12:30 +100053xfs_flushinval_pages(
54 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 xfs_off_t first,
56 xfs_off_t last,
57 int fiopt)
58{
Christoph Hellwig993386c2007-08-28 16:12:30 +100059 bhv_vnode_t *vp = XFS_ITOV(ip);
60 struct inode *inode = vn_to_inode(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100061 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63 if (VN_CACHED(vp)) {
Nathan Scott7d4fb402006-06-09 15:27:16 +100064 if (VN_TRUNC(vp))
65 VUNTRUNCATE(vp);
Christoph Hellwig993386c2007-08-28 16:12:30 +100066 ret = filemap_write_and_wait(inode->i_mapping);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100067 if (!ret)
Christoph Hellwig993386c2007-08-28 16:12:30 +100068 truncate_inode_pages(inode->i_mapping, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069 }
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100070 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071}
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073int
Christoph Hellwig993386c2007-08-28 16:12:30 +100074xfs_flush_pages(
75 xfs_inode_t *ip,
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 xfs_off_t first,
77 xfs_off_t last,
78 uint64_t flags,
79 int fiopt)
80{
Christoph Hellwig993386c2007-08-28 16:12:30 +100081 bhv_vnode_t *vp = XFS_ITOV(ip);
82 struct inode *inode = vn_to_inode(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100083 int ret = 0;
84 int ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Nathan Scott7d4fb402006-06-09 15:27:16 +100086 if (VN_DIRTY(vp)) {
87 if (VN_TRUNC(vp))
88 VUNTRUNCATE(vp);
Christoph Hellwig993386c2007-08-28 16:12:30 +100089 ret = filemap_fdatawrite(inode->i_mapping);
Nathan Scottee348072005-11-02 10:32:38 +110090 if (flags & XFS_B_ASYNC)
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100091 return ret;
Christoph Hellwig993386c2007-08-28 16:12:30 +100092 ret2 = filemap_fdatawait(inode->i_mapping);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100093 if (!ret)
94 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 }
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100096 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070097}