blob: 941202e7ac6e594e2c423c19bc89248397e39516 [file] [log] [blame]
David Chinnera167b172008-10-30 17:06:18 +11001/*
2 * Copyright (c) 2000-2006 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
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.
8 *
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.
13 *
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
17 */
David Chinnerfe4fa4b2008-10-30 17:06:08 +110018#ifndef XFS_SYNC_H
19#define XFS_SYNC_H 1
20
David Chinnera167b172008-10-30 17:06:18 +110021struct xfs_mount;
Christoph Hellwigfcafb712009-02-09 08:47:34 +010022struct xfs_perag;
David Chinnera167b172008-10-30 17:06:18 +110023
Christoph Hellwig8b5403a2009-06-08 15:37:16 +020024#define SYNC_WAIT 0x0001 /* wait for i/o to complete */
25#define SYNC_TRYLOCK 0x0002 /* only try to lock inodes */
David Chinnera167b172008-10-30 17:06:18 +110026
Dave Chinnerc6d09b62011-04-08 12:45:07 +100027extern struct workqueue_struct *xfs_syncd_wq; /* sync workqueue */
28
David Chinnera167b172008-10-30 17:06:18 +110029int xfs_syncd_init(struct xfs_mount *mp);
30void xfs_syncd_stop(struct xfs_mount *mp);
31
David Chinnere9f1c6e2008-10-30 17:15:50 +110032int xfs_quiesce_data(struct xfs_mount *mp);
David Chinner76bf1052008-10-30 17:16:21 +110033void xfs_quiesce_attr(struct xfs_mount *mp);
David Chinnerfe4fa4b2008-10-30 17:06:08 +110034
Dave Chinnera8d770d2009-04-06 18:44:54 +020035void xfs_flush_inodes(struct xfs_inode *ip);
David Chinnera167b172008-10-30 17:06:18 +110036
Dave Chinnerabc10642009-06-08 15:35:12 +020037int xfs_reclaim_inodes(struct xfs_mount *mp, int mode);
Dave Chinner8daaa832011-07-08 14:14:46 +100038int xfs_reclaim_inodes_count(struct xfs_mount *mp);
39void xfs_reclaim_inodes_nr(struct xfs_mount *mp, int nr_to_scan);
David Chinnerfce08f22008-10-30 17:37:03 +110040
David Chinner396beb82008-10-30 17:37:26 +110041void xfs_inode_set_reclaim_tag(struct xfs_inode *ip);
Christoph Hellwigbc990f52009-08-16 20:36:34 -040042void __xfs_inode_set_reclaim_tag(struct xfs_perag *pag, struct xfs_inode *ip);
David Chinner396beb82008-10-30 17:37:26 +110043void __xfs_inode_clear_reclaim_tag(struct xfs_mount *mp, struct xfs_perag *pag,
44 struct xfs_inode *ip);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +020045
Dave Chinner78ae5252010-09-28 12:28:19 +100046int xfs_sync_inode_grab(struct xfs_inode *ip);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +020047int xfs_inode_ag_iterator(struct xfs_mount *mp,
48 int (*execute)(struct xfs_inode *ip, struct xfs_perag *pag, int flags),
Dave Chinner65d0f202010-09-24 18:40:15 +100049 int flags);
Dave Chinner9bf729c2010-04-29 09:55:50 +100050
David Chinnerfe4fa4b2008-10-30 17:06:08 +110051#endif