]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - include/xfs_inode.h
xfs: defer should allow ->finish_item to request a new transaction
[thirdparty/xfsprogs-dev.git] / include / xfs_inode.h
CommitLineData
b626fb59
DC
1/*
2 * Copyright (c) 2000-2005 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 */
18
19#ifndef __XFS_INODE_H__
20#define __XFS_INODE_H__
21
22/* These match kernel side includes */
6b803e5a
CH
23#include "xfs_inode_buf.h"
24#include "xfs_inode_fork.h"
b626fb59
DC
25
26struct xfs_trans;
27struct xfs_mount;
28struct xfs_inode_log_item;
29struct xfs_dir_ops;
30
31/*
1bc6cbe3
DC
32 * Inode interface. This fakes up a "VFS inode" to make the xfs_inode appear
33 * similar to the kernel which now is used tohold certain parts of the on-disk
34 * metadata.
b626fb59 35 */
1bc6cbe3 36struct inode {
e37bf53c 37 mode_t i_mode;
bcbe04c1 38 uint32_t i_nlink;
6652c253 39 uint32_t i_generation;
9abcc5cd 40 uint64_t i_version;
1bc6cbe3
DC
41 struct timespec i_atime;
42 struct timespec i_mtime;
43 struct timespec i_ctime;
44};
45
b626fb59
DC
46typedef struct xfs_inode {
47 struct cache_node i_node;
48 struct xfs_mount *i_mount; /* fs mount struct ptr */
49 xfs_ino_t i_ino; /* inode number (agno/agino) */
50 struct xfs_imap i_imap; /* location for xfs_imap() */
51 struct xfs_buftarg i_dev; /* dev for this inode */
52 struct xfs_ifork *i_afp; /* attribute fork pointer */
53 struct xfs_ifork i_df; /* data fork */
54 struct xfs_trans *i_transp; /* ptr to owning transaction */
55 struct xfs_inode_log_item *i_itemp; /* logging information */
56 unsigned int i_delayed_blks; /* count of delay alloc blks */
57 struct xfs_icdinode i_d; /* most of ondisk inode */
58 xfs_fsize_t i_size; /* in-memory size */
59 const struct xfs_dir_ops *d_ops; /* directory ops vector */
1bc6cbe3 60 struct inode i_vnode;
b626fb59
DC
61} xfs_inode_t;
62
1bc6cbe3
DC
63static inline struct inode *VFS_I(struct xfs_inode *ip)
64{
65 return &ip->i_vnode;
66}
67
e37bf53c
DC
68/*
69 * wrappers around the mode checks to simplify code
70 */
71static inline bool XFS_ISREG(struct xfs_inode *ip)
72{
73 return S_ISREG(VFS_I(ip)->i_mode);
74}
75
76static inline bool XFS_ISDIR(struct xfs_inode *ip)
77{
78 return S_ISDIR(VFS_I(ip)->i_mode);
79}
80
b626fb59
DC
81/*
82 * For regular files we only update the on-disk filesize when actually
83 * writing data back to disk. Until then only the copy in the VFS inode
84 * is uptodate.
85 */
86static inline xfs_fsize_t XFS_ISIZE(struct xfs_inode *ip)
87{
e37bf53c 88 if (XFS_ISREG(ip))
b626fb59
DC
89 return ip->i_size;
90 return ip->i_d.di_size;
91}
92#define XFS_IS_REALTIME_INODE(ip) ((ip)->i_d.di_flags & XFS_DIFLAG_REALTIME)
93
bcbe04c1
DC
94/* inode link counts */
95static inline void set_nlink(struct inode *inode, uint32_t nlink)
96{
97 inode->i_nlink = nlink;
98}
99static inline void inc_nlink(struct inode *inode)
100{
101 inode->i_nlink++;
102}
103
b626fb59
DC
104/*
105 * Project quota id helpers (previously projid was 16bit only and using two
106 * 16bit values to hold new 32bit projid was chosen to retain compatibility with
107 * "old" filesystems).
108 *
109 * Copied here from xfs_inode.h because it has to be defined after the struct
110 * xfs_inode...
111 */
112static inline prid_t
113xfs_get_projid(struct xfs_icdinode *id)
114{
115 return (prid_t)id->di_projid_hi << 16 | id->di_projid_lo;
116}
117
118static inline void
119xfs_set_projid(struct xfs_icdinode *id, prid_t projid)
120{
121 id->di_projid_hi = (__uint16_t) (projid >> 16);
122 id->di_projid_lo = (__uint16_t) (projid & 0xffff);
123}
124
125typedef struct cred {
126 uid_t cr_uid;
127 gid_t cr_gid;
128} cred_t;
129
130extern int libxfs_inode_alloc (struct xfs_trans **, struct xfs_inode *,
131 mode_t, nlink_t, xfs_dev_t, struct cred *,
132 struct fsxattr *, struct xfs_inode **);
133extern void libxfs_trans_inode_alloc_buf (struct xfs_trans *,
134 struct xfs_buf *);
135
136extern void libxfs_trans_ichgtime(struct xfs_trans *,
137 struct xfs_inode *, int);
138extern int libxfs_iflush_int (struct xfs_inode *, struct xfs_buf *);
139
140/* Inode Cache Interfaces */
141extern int libxfs_iget(struct xfs_mount *, struct xfs_trans *, xfs_ino_t,
81f8132a 142 uint, struct xfs_inode **);
b626fb59
DC
143extern void libxfs_iput(struct xfs_inode *);
144
145#define IRELE(ip) libxfs_iput(ip)
146
147#endif /* __XFS_INODE_H__ */