2 * Copyright (c) 2000-2002,2005-2006 Silicon Graphics, Inc.
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.
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.
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
19 #include "xfs_vnodeops.h"
22 * The following six includes are needed so that we can include
23 * xfs_inode.h. What a mess..
25 #include "xfs_bmap_btree.h"
28 #include "xfs_dir2_sf.h"
29 #include "xfs_attr_sf.h"
30 #include "xfs_dinode.h"
32 #include "xfs_inode.h"
34 int fs_noerr(void) { return 0; }
35 int fs_nosys(void) { return ENOSYS
; }
36 void fs_noval(void) { return; }
45 bhv_vnode_t
*vp
= XFS_ITOV(ip
);
46 struct inode
*inode
= vn_to_inode(vp
);
49 truncate_inode_pages(inode
->i_mapping
, first
);
59 bhv_vnode_t
*vp
= XFS_ITOV(ip
);
60 struct inode
*inode
= vn_to_inode(vp
);
64 xfs_iflags_clear(ip
, XFS_ITRUNCATED
);
65 ret
= filemap_write_and_wait(inode
->i_mapping
);
67 truncate_inode_pages(inode
->i_mapping
, first
);
80 bhv_vnode_t
*vp
= XFS_ITOV(ip
);
81 struct inode
*inode
= vn_to_inode(vp
);
86 xfs_iflags_clear(ip
, XFS_ITRUNCATED
);
87 ret
= filemap_fdatawrite(inode
->i_mapping
);
88 if (flags
& XFS_B_ASYNC
)
90 ret2
= filemap_fdatawait(inode
->i_mapping
);