blob: 9bb1253a402304bcb11b26305d0b592158a775b1 [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
Dave Chinnera8d770d2009-04-06 18:44:54 +020024typedef struct xfs_sync_work {
David Chinnera167b172008-10-30 17:06:18 +110025 struct list_head w_list;
26 struct xfs_mount *w_mount;
27 void *w_data; /* syncer routine argument */
28 void (*w_syncer)(struct xfs_mount *, void *);
Dave Chinnere43afd72009-04-06 18:47:27 +020029 struct completion *w_completion;
Dave Chinnera8d770d2009-04-06 18:44:54 +020030} xfs_sync_work_t;
David Chinnera167b172008-10-30 17:06:18 +110031
32#define SYNC_ATTR 0x0001 /* sync attributes */
David Chinnera4e4c4f2008-10-30 17:16:11 +110033#define SYNC_DELWRI 0x0002 /* look at delayed writes */
34#define SYNC_WAIT 0x0004 /* wait for i/o to complete */
35#define SYNC_BDFLUSH 0x0008 /* BDFLUSH is calling -- don't block */
36#define SYNC_IOWAIT 0x0010 /* wait for all I/O to complete */
Dave Chinnera8d770d2009-04-06 18:44:54 +020037#define SYNC_TRYLOCK 0x0020 /* only try to lock inodes */
David Chinnera167b172008-10-30 17:06:18 +110038
39int xfs_syncd_init(struct xfs_mount *mp);
40void xfs_syncd_stop(struct xfs_mount *mp);
41
David Chinner2030b5a2008-10-30 17:15:12 +110042int xfs_sync_inodes(struct xfs_mount *mp, int flags);
David Chinnere9f1c6e2008-10-30 17:15:50 +110043int xfs_sync_fsdata(struct xfs_mount *mp, int flags);
44
45int xfs_quiesce_data(struct xfs_mount *mp);
David Chinner76bf1052008-10-30 17:16:21 +110046void xfs_quiesce_attr(struct xfs_mount *mp);
David Chinnerfe4fa4b2008-10-30 17:06:08 +110047
Dave Chinnera8d770d2009-04-06 18:44:54 +020048void xfs_flush_inodes(struct xfs_inode *ip);
David Chinnera167b172008-10-30 17:06:18 +110049
David Chinner1dc33182008-10-30 17:37:15 +110050int xfs_reclaim_inode(struct xfs_inode *ip, int locked, int sync_mode);
Dave Chinnerabc10642009-06-08 15:35:12 +020051int xfs_reclaim_inodes(struct xfs_mount *mp, int mode);
David Chinnerfce08f22008-10-30 17:37:03 +110052
David Chinner396beb82008-10-30 17:37:26 +110053void xfs_inode_set_reclaim_tag(struct xfs_inode *ip);
54void xfs_inode_clear_reclaim_tag(struct xfs_inode *ip);
55void __xfs_inode_clear_reclaim_tag(struct xfs_mount *mp, struct xfs_perag *pag,
56 struct xfs_inode *ip);
Christoph Hellwigfe588ed2009-06-08 15:35:27 +020057
58int xfs_sync_inode_valid(struct xfs_inode *ip, struct xfs_perag *pag);
59int xfs_inode_ag_iterator(struct xfs_mount *mp,
60 int (*execute)(struct xfs_inode *ip, struct xfs_perag *pag, int flags),
61 int flags, int tag);
62
David Chinnerfe4fa4b2008-10-30 17:06:08 +110063#endif