blob: 2eb87cd082af5592bc354b8d1698a7f3f7b60910 [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"
19
Nathan Scott7d4fb402006-06-09 15:27:16 +100020int fs_noerr(void) { return 0; }
21int fs_nosys(void) { return ENOSYS; }
22void fs_noval(void) { return; }
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Linus Torvalds1da177e2005-04-16 15:20:36 -070024void
25fs_tosspages(
26 bhv_desc_t *bdp,
27 xfs_off_t first,
28 xfs_off_t last,
29 int fiopt)
30{
Nathan Scott67fcaa72006-06-09 17:00:52 +100031 bhv_vnode_t *vp = BHV_TO_VNODE(bdp);
Nathan Scottec86dc02006-03-17 17:25:36 +110032 struct inode *ip = vn_to_inode(vp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34 if (VN_CACHED(vp))
35 truncate_inode_pages(ip->i_mapping, first);
36}
37
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100038int
Linus Torvalds1da177e2005-04-16 15:20:36 -070039fs_flushinval_pages(
40 bhv_desc_t *bdp,
41 xfs_off_t first,
42 xfs_off_t last,
43 int fiopt)
44{
Nathan Scott67fcaa72006-06-09 17:00:52 +100045 bhv_vnode_t *vp = BHV_TO_VNODE(bdp);
Nathan Scottec86dc02006-03-17 17:25:36 +110046 struct inode *ip = vn_to_inode(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100047 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49 if (VN_CACHED(vp)) {
Nathan Scott7d4fb402006-06-09 15:27:16 +100050 if (VN_TRUNC(vp))
51 VUNTRUNCATE(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100052 ret = filemap_write_and_wait(ip->i_mapping);
53 if (!ret)
54 truncate_inode_pages(ip->i_mapping, first);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 }
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100056 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059int
60fs_flush_pages(
61 bhv_desc_t *bdp,
62 xfs_off_t first,
63 xfs_off_t last,
64 uint64_t flags,
65 int fiopt)
66{
Nathan Scott67fcaa72006-06-09 17:00:52 +100067 bhv_vnode_t *vp = BHV_TO_VNODE(bdp);
Nathan Scottec86dc02006-03-17 17:25:36 +110068 struct inode *ip = vn_to_inode(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100069 int ret = 0;
70 int ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Nathan Scott7d4fb402006-06-09 15:27:16 +100072 if (VN_DIRTY(vp)) {
73 if (VN_TRUNC(vp))
74 VUNTRUNCATE(vp);
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100075 ret = filemap_fdatawrite(ip->i_mapping);
Nathan Scottee348072005-11-02 10:32:38 +110076 if (flags & XFS_B_ASYNC)
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100077 return ret;
78 ret2 = filemap_fdatawait(ip->i_mapping);
79 if (!ret)
80 ret = ret2;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 }
Lachlan McIlroyd3cf2092007-05-08 13:49:27 +100082 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}