Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Nathan Scott | 7b71876 | 2005-11-02 14:58:39 +1100 | [diff] [blame] | 2 | * Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 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 | */ |
| 18 | #ifndef __XFS_VNODE_H__ |
| 19 | #define __XFS_VNODE_H__ |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | struct file; |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 22 | struct bhv_vattr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | struct xfs_iomap; |
| 24 | struct attrlist_cursor_kern; |
| 25 | |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 26 | typedef struct dentry bhv_vname_t; |
| 27 | typedef __u64 bhv_vnumber_t; |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 28 | typedef struct inode bhv_vnode_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 30 | #define VN_ISLNK(vp) S_ISLNK((vp)->i_mode) |
| 31 | #define VN_ISREG(vp) S_ISREG((vp)->i_mode) |
| 32 | #define VN_ISDIR(vp) S_ISDIR((vp)->i_mode) |
| 33 | #define VN_ISCHR(vp) S_ISCHR((vp)->i_mode) |
| 34 | #define VN_ISBLK(vp) S_ISBLK((vp)->i_mode) |
Christoph Hellwig | 0432dab | 2005-09-02 16:46:51 +1000 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | /* |
| 37 | * Vnode to Linux inode mapping. |
| 38 | */ |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 39 | static inline bhv_vnode_t *vn_from_inode(struct inode *inode) |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 40 | { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 41 | return inode; |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 42 | } |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 43 | static inline struct inode *vn_to_inode(bhv_vnode_t *vnode) |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 44 | { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 45 | return vnode; |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 46 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | |
| 48 | /* |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 49 | * Values for the vop_rwlock/rwunlock flags parameter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 51 | typedef enum bhv_vrwlock { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | VRWLOCK_NONE, |
| 53 | VRWLOCK_READ, |
| 54 | VRWLOCK_WRITE, |
| 55 | VRWLOCK_WRITE_DIRECT, |
| 56 | VRWLOCK_TRY_READ, |
| 57 | VRWLOCK_TRY_WRITE |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 58 | } bhv_vrwlock_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | /* |
Christoph Hellwig | 739bfb2 | 2007-08-29 10:58:01 +1000 | [diff] [blame] | 61 | * Return values for xfs_inactive. A return value of |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | * VN_INACTIVE_NOCACHE implies that the file system behavior |
| 63 | * has disassociated its state and bhv_desc_t from the vnode. |
| 64 | */ |
| 65 | #define VN_INACTIVE_CACHE 0 |
| 66 | #define VN_INACTIVE_NOCACHE 1 |
| 67 | |
| 68 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | * Flags for read/write calls - same values as IRIX |
| 70 | */ |
| 71 | #define IO_ISAIO 0x00001 /* don't wait for completion */ |
| 72 | #define IO_ISDIRECT 0x00004 /* bypass page cache */ |
| 73 | #define IO_INVIS 0x00020 /* don't update inode timestamps */ |
| 74 | |
| 75 | /* |
David Chinner | a3f74ff | 2008-03-06 13:43:42 +1100 | [diff] [blame^] | 76 | * Flags for xfs_inode_flush |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | */ |
| 78 | #define FLUSH_SYNC 1 /* wait for flush to complete */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
| 80 | /* |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 81 | * Flush/Invalidate options for vop_toss/flush/flushinval_pages. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | */ |
| 83 | #define FI_NONE 0 /* none */ |
| 84 | #define FI_REMAPF 1 /* Do a remapf prior to the operation */ |
| 85 | #define FI_REMAPF_LOCKED 2 /* Do a remapf prior to the operation. |
| 86 | Prevent VM access to the pages until |
| 87 | the operation completes. */ |
| 88 | |
| 89 | /* |
| 90 | * Vnode attributes. va_mask indicates those attributes the caller |
| 91 | * wants to set or extract. |
| 92 | */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 93 | typedef struct bhv_vattr { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 94 | int va_mask; /* bit-mask of attributes present */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | mode_t va_mode; /* file access mode and type */ |
Nathan Scott | 31b084a | 2005-05-05 13:25:00 -0700 | [diff] [blame] | 96 | xfs_nlink_t va_nlink; /* number of references to file */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | uid_t va_uid; /* owner user id */ |
| 98 | gid_t va_gid; /* owner group id */ |
| 99 | xfs_ino_t va_nodeid; /* file id */ |
| 100 | xfs_off_t va_size; /* file size in bytes */ |
| 101 | u_long va_blocksize; /* blocksize preferred for i/o */ |
| 102 | struct timespec va_atime; /* time of last access */ |
| 103 | struct timespec va_mtime; /* time of last modification */ |
| 104 | struct timespec va_ctime; /* time file changed */ |
| 105 | u_int va_gen; /* generation number of file */ |
| 106 | xfs_dev_t va_rdev; /* device the special file represents */ |
| 107 | __int64_t va_nblocks; /* number of blocks allocated */ |
| 108 | u_long va_xflags; /* random extended file flags */ |
| 109 | u_long va_extsize; /* file extent size */ |
| 110 | u_long va_nextents; /* number of extents in file */ |
| 111 | u_long va_anextents; /* number of attr extents in file */ |
Nathan Scott | b74e215 | 2005-06-21 13:21:49 +1000 | [diff] [blame] | 112 | prid_t va_projid; /* project id */ |
Nathan Scott | 8285fb5 | 2006-06-09 17:07:12 +1000 | [diff] [blame] | 113 | } bhv_vattr_t; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | |
| 115 | /* |
| 116 | * setattr or getattr attributes |
| 117 | */ |
| 118 | #define XFS_AT_TYPE 0x00000001 |
| 119 | #define XFS_AT_MODE 0x00000002 |
| 120 | #define XFS_AT_UID 0x00000004 |
| 121 | #define XFS_AT_GID 0x00000008 |
| 122 | #define XFS_AT_FSID 0x00000010 |
| 123 | #define XFS_AT_NODEID 0x00000020 |
| 124 | #define XFS_AT_NLINK 0x00000040 |
| 125 | #define XFS_AT_SIZE 0x00000080 |
| 126 | #define XFS_AT_ATIME 0x00000100 |
| 127 | #define XFS_AT_MTIME 0x00000200 |
| 128 | #define XFS_AT_CTIME 0x00000400 |
| 129 | #define XFS_AT_RDEV 0x00000800 |
| 130 | #define XFS_AT_BLKSIZE 0x00001000 |
| 131 | #define XFS_AT_NBLOCKS 0x00002000 |
| 132 | #define XFS_AT_VCODE 0x00004000 |
| 133 | #define XFS_AT_MAC 0x00008000 |
| 134 | #define XFS_AT_UPDATIME 0x00010000 |
| 135 | #define XFS_AT_UPDMTIME 0x00020000 |
| 136 | #define XFS_AT_UPDCTIME 0x00040000 |
| 137 | #define XFS_AT_ACL 0x00080000 |
| 138 | #define XFS_AT_CAP 0x00100000 |
| 139 | #define XFS_AT_INF 0x00200000 |
| 140 | #define XFS_AT_XFLAGS 0x00400000 |
| 141 | #define XFS_AT_EXTSIZE 0x00800000 |
| 142 | #define XFS_AT_NEXTENTS 0x01000000 |
| 143 | #define XFS_AT_ANEXTENTS 0x02000000 |
| 144 | #define XFS_AT_PROJID 0x04000000 |
| 145 | #define XFS_AT_SIZE_NOPERM 0x08000000 |
| 146 | #define XFS_AT_GENCOUNT 0x10000000 |
| 147 | |
| 148 | #define XFS_AT_ALL (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\ |
| 149 | XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\ |
| 150 | XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\ |
| 151 | XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|XFS_AT_MAC|\ |
| 152 | XFS_AT_ACL|XFS_AT_CAP|XFS_AT_INF|XFS_AT_XFLAGS|XFS_AT_EXTSIZE|\ |
| 153 | XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_PROJID|XFS_AT_GENCOUNT) |
| 154 | |
| 155 | #define XFS_AT_STAT (XFS_AT_TYPE|XFS_AT_MODE|XFS_AT_UID|XFS_AT_GID|\ |
| 156 | XFS_AT_FSID|XFS_AT_NODEID|XFS_AT_NLINK|XFS_AT_SIZE|\ |
| 157 | XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME|XFS_AT_RDEV|\ |
| 158 | XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_PROJID) |
| 159 | |
| 160 | #define XFS_AT_TIMES (XFS_AT_ATIME|XFS_AT_MTIME|XFS_AT_CTIME) |
| 161 | |
| 162 | #define XFS_AT_UPDTIMES (XFS_AT_UPDATIME|XFS_AT_UPDMTIME|XFS_AT_UPDCTIME) |
| 163 | |
| 164 | #define XFS_AT_NOSET (XFS_AT_NLINK|XFS_AT_RDEV|XFS_AT_FSID|XFS_AT_NODEID|\ |
| 165 | XFS_AT_TYPE|XFS_AT_BLKSIZE|XFS_AT_NBLOCKS|XFS_AT_VCODE|\ |
| 166 | XFS_AT_NEXTENTS|XFS_AT_ANEXTENTS|XFS_AT_GENCOUNT) |
| 167 | |
| 168 | /* |
| 169 | * Modes. |
| 170 | */ |
| 171 | #define VSUID S_ISUID /* set user id on execution */ |
| 172 | #define VSGID S_ISGID /* set group id on execution */ |
| 173 | #define VSVTX S_ISVTX /* save swapped text even after use */ |
| 174 | #define VREAD S_IRUSR /* read, write, execute permissions */ |
| 175 | #define VWRITE S_IWUSR |
| 176 | #define VEXEC S_IXUSR |
| 177 | |
| 178 | #define MODEMASK S_IALLUGO /* mode bits plus permission bits */ |
| 179 | |
| 180 | /* |
| 181 | * Check whether mandatory file locking is enabled. |
| 182 | */ |
| 183 | #define MANDLOCK(vp, mode) \ |
Christoph Hellwig | 0432dab | 2005-09-02 16:46:51 +1000 | [diff] [blame] | 184 | (VN_ISREG(vp) && ((mode) & (VSGID|(VEXEC>>3))) == VSGID) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | |
| 186 | extern void vn_init(void); |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 187 | extern int vn_revalidate(bhv_vnode_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | |
Christoph Hellwig | b677c21 | 2007-08-29 11:46:28 +1000 | [diff] [blame] | 189 | /* |
| 190 | * Yeah, these don't take vnode anymore at all, all this should be |
| 191 | * cleaned up at some point. |
| 192 | */ |
| 193 | extern void vn_iowait(struct xfs_inode *ip); |
| 194 | extern void vn_iowake(struct xfs_inode *ip); |
| 195 | extern void vn_ioerror(struct xfs_inode *ip, int error, char *f, int l); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 197 | static inline int vn_count(bhv_vnode_t *vp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 198 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 199 | return atomic_read(&vn_to_inode(vp)->i_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /* |
| 203 | * Vnode reference counting functions (and macros for compatibility). |
| 204 | */ |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 205 | extern bhv_vnode_t *vn_hold(bhv_vnode_t *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 207 | #if defined(XFS_INODE_TRACE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | #define VN_HOLD(vp) \ |
| 209 | ((void)vn_hold(vp), \ |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 210 | xfs_itrace_hold(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | #define VN_RELE(vp) \ |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 212 | (xfs_itrace_rele(xfs_vtoi(vp), __FILE__, __LINE__, (inst_t *)__return_address), \ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 213 | iput(vn_to_inode(vp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | #else |
| 215 | #define VN_HOLD(vp) ((void)vn_hold(vp)) |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 216 | #define VN_RELE(vp) (iput(vn_to_inode(vp))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | #endif |
| 218 | |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 219 | static inline bhv_vnode_t *vn_grab(bhv_vnode_t *vp) |
Christoph Hellwig | cdb6268 | 2005-09-02 16:24:19 +1000 | [diff] [blame] | 220 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 221 | struct inode *inode = igrab(vn_to_inode(vp)); |
| 222 | return inode ? vn_from_inode(inode) : NULL; |
Christoph Hellwig | cdb6268 | 2005-09-02 16:24:19 +1000 | [diff] [blame] | 223 | } |
| 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | /* |
| 226 | * Vname handling macros. |
| 227 | */ |
| 228 | #define VNAME(dentry) ((char *) (dentry)->d_name.name) |
| 229 | #define VNAMELEN(dentry) ((dentry)->d_name.len) |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 230 | #define VNAME_TO_VNODE(dentry) (vn_from_inode((dentry)->d_inode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 231 | |
| 232 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | * Dealing with bad inodes |
| 234 | */ |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 235 | static inline int VN_BAD(bhv_vnode_t *vp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | { |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 237 | return is_bad_inode(vn_to_inode(vp)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | /* |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 241 | * Extracting atime values in various formats |
| 242 | */ |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 243 | static inline void vn_atime_to_bstime(bhv_vnode_t *vp, xfs_bstime_t *bs_atime) |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 244 | { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 245 | bs_atime->tv_sec = vp->i_atime.tv_sec; |
| 246 | bs_atime->tv_nsec = vp->i_atime.tv_nsec; |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 247 | } |
| 248 | |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 249 | static inline void vn_atime_to_timespec(bhv_vnode_t *vp, struct timespec *ts) |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 250 | { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 251 | *ts = vp->i_atime; |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 252 | } |
| 253 | |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 254 | static inline void vn_atime_to_time_t(bhv_vnode_t *vp, time_t *tt) |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 255 | { |
Christoph Hellwig | 0a74cd1 | 2007-08-29 11:53:12 +1000 | [diff] [blame] | 256 | *tt = vp->i_atime.tv_sec; |
Nathan Scott | ca5ccbf | 2006-01-11 21:03:04 +1100 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | * Some useful predicates. |
| 261 | */ |
Nathan Scott | ec86dc0 | 2006-03-17 17:25:36 +1100 | [diff] [blame] | 262 | #define VN_MAPPED(vp) mapping_mapped(vn_to_inode(vp)->i_mapping) |
| 263 | #define VN_CACHED(vp) (vn_to_inode(vp)->i_mapping->nrpages) |
| 264 | #define VN_DIRTY(vp) mapping_tagged(vn_to_inode(vp)->i_mapping, \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | PAGECACHE_TAG_DIRTY) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | |
| 267 | /* |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 268 | * Flags to vop_setattr/getattr. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | */ |
| 270 | #define ATTR_UTIME 0x01 /* non-default utime(2) request */ |
| 271 | #define ATTR_DMI 0x08 /* invocation from a DMI function */ |
| 272 | #define ATTR_LAZY 0x80 /* set/get attributes lazily */ |
| 273 | #define ATTR_NONBLOCK 0x100 /* return EAGAIN if operation would block */ |
Dean Roehrich | 5fcbab3 | 2005-05-05 13:27:19 -0700 | [diff] [blame] | 274 | #define ATTR_NOLOCK 0x200 /* Don't grab any conflicting locks */ |
Eric Sandeen | 1f730e3 | 2005-11-02 15:08:10 +1100 | [diff] [blame] | 275 | #define ATTR_NOSIZETOK 0x400 /* Don't get the SIZE token */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
| 277 | /* |
Nathan Scott | 67fcaa7 | 2006-06-09 17:00:52 +1000 | [diff] [blame] | 278 | * Flags to vop_fsync/reclaim. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | */ |
| 280 | #define FSYNC_NOWAIT 0 /* asynchronous flush */ |
| 281 | #define FSYNC_WAIT 0x1 /* synchronous fsync or forced reclaim */ |
| 282 | #define FSYNC_INVAL 0x2 /* flush and invalidate cached data */ |
| 283 | #define FSYNC_DATA 0x4 /* synchronous fsync of data only */ |
| 284 | |
| 285 | /* |
| 286 | * Tracking vnode activity. |
| 287 | */ |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 288 | #if defined(XFS_INODE_TRACE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 289 | |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 290 | #define INODE_TRACE_SIZE 16 /* number of trace entries */ |
| 291 | #define INODE_KTRACE_ENTRY 1 |
| 292 | #define INODE_KTRACE_EXIT 2 |
| 293 | #define INODE_KTRACE_HOLD 3 |
| 294 | #define INODE_KTRACE_REF 4 |
| 295 | #define INODE_KTRACE_RELE 5 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 297 | extern void _xfs_itrace_entry(struct xfs_inode *, const char *, inst_t *); |
| 298 | extern void _xfs_itrace_exit(struct xfs_inode *, const char *, inst_t *); |
| 299 | extern void xfs_itrace_hold(struct xfs_inode *, char *, int, inst_t *); |
| 300 | extern void _xfs_itrace_ref(struct xfs_inode *, char *, int, inst_t *); |
| 301 | extern void xfs_itrace_rele(struct xfs_inode *, char *, int, inst_t *); |
| 302 | #define xfs_itrace_entry(ip) \ |
| 303 | _xfs_itrace_entry(ip, __FUNCTION__, (inst_t *)__return_address) |
| 304 | #define xfs_itrace_exit(ip) \ |
| 305 | _xfs_itrace_exit(ip, __FUNCTION__, (inst_t *)__return_address) |
Lachlan McIlroy | 15947f2 | 2007-09-17 13:11:58 +1000 | [diff] [blame] | 306 | #define xfs_itrace_exit_tag(ip, tag) \ |
| 307 | _xfs_itrace_exit(ip, tag, (inst_t *)__return_address) |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 308 | #define xfs_itrace_ref(ip) \ |
| 309 | _xfs_itrace_ref(ip, __FILE__, __LINE__, (inst_t *)__return_address) |
| 310 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | #else |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 312 | #define xfs_itrace_entry(a) |
| 313 | #define xfs_itrace_exit(a) |
Lachlan McIlroy | 15947f2 | 2007-09-17 13:11:58 +1000 | [diff] [blame] | 314 | #define xfs_itrace_exit_tag(a, b) |
Lachlan McIlroy | cf441ee | 2008-02-07 16:42:19 +1100 | [diff] [blame] | 315 | #define xfs_itrace_hold(a, b, c, d) |
| 316 | #define xfs_itrace_ref(a) |
| 317 | #define xfs_itrace_rele(a, b, c, d) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | #endif |
| 319 | |
| 320 | #endif /* __XFS_VNODE_H__ */ |