Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 2 | * Copyright (c) 2000-2002,2005-2006 Silicon Graphics, Inc. |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 3 | * All Rights Reserved. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * published by the Free Software Foundation. |
| 8 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include "xfs.h" |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 19 | #include "xfs_vnodeops.h" |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 20 | #include "xfs_bmap_btree.h" |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 21 | #include "xfs_inode.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Nathan Scott | 7d4fb40 | 2006-06-09 15:27:16 +1000 | [diff] [blame] | 23 | int fs_noerr(void) { return 0; } |
| 24 | int fs_nosys(void) { return ENOSYS; } |
| 25 | void fs_noval(void) { return; } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | void |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 28 | xfs_tosspages( |
| 29 | xfs_inode_t *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | xfs_off_t first, |
| 31 | xfs_off_t last, |
| 32 | int fiopt) |
| 33 | { |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 34 | struct address_space *mapping = ip->i_vnode->i_mapping; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 36 | if (mapping->nrpages) |
| 37 | truncate_inode_pages(mapping, first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 40 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 41 | xfs_flushinval_pages( |
| 42 | xfs_inode_t *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | xfs_off_t first, |
| 44 | xfs_off_t last, |
| 45 | int fiopt) |
| 46 | { |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 47 | struct address_space *mapping = ip->i_vnode->i_mapping; |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 48 | int ret = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 50 | if (mapping->nrpages) { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 51 | xfs_iflags_clear(ip, XFS_ITRUNCATED); |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 52 | ret = filemap_write_and_wait(mapping); |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 53 | if (!ret) |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 54 | truncate_inode_pages(mapping, first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 56 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | int |
Christoph Hellwig | 993386c | 2007-08-28 16:12:30 +1000 | [diff] [blame] | 60 | xfs_flush_pages( |
| 61 | xfs_inode_t *ip, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | xfs_off_t first, |
| 63 | xfs_off_t last, |
| 64 | uint64_t flags, |
| 65 | int fiopt) |
| 66 | { |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 67 | struct address_space *mapping = ip->i_vnode->i_mapping; |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 68 | int ret = 0; |
| 69 | int ret2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 71 | if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) { |
Christoph Hellwig | b3aea4e | 2007-08-29 11:44:37 +1000 | [diff] [blame] | 72 | xfs_iflags_clear(ip, XFS_ITRUNCATED); |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 73 | ret = filemap_fdatawrite(mapping); |
Nathan Scott | ee34807 | 2005-11-02 10:32:38 +1100 | [diff] [blame] | 74 | if (flags & XFS_B_ASYNC) |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 75 | return ret; |
Christoph Hellwig | a8b3acd | 2008-03-06 13:44:41 +1100 | [diff] [blame] | 76 | ret2 = filemap_fdatawait(mapping); |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 77 | if (!ret) |
| 78 | ret = ret2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | } |
Lachlan McIlroy | d3cf209 | 2007-05-08 13:49:27 +1000 | [diff] [blame] | 80 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | } |