blob: b5612cbb62a51b75dc97699490658ce6939a4118 [file] [log] [blame]
David Teiglandb3b94fa2006-01-16 16:50:04 +00001/*
2 * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
Bob Petersonca390602008-01-28 11:15:57 -06003 * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
David Teiglandb3b94fa2006-01-16 16:50:04 +00004 *
5 * This copyrighted material is made available to anyone wishing to use,
6 * modify, copy, or redistribute it subject to the terms and conditions
Steven Whitehousee9fc2aa2006-09-01 11:05:15 -04007 * of the GNU General Public License version 2.
David Teiglandb3b94fa2006-01-16 16:50:04 +00008 */
9
10#include <linux/sched.h>
11#include <linux/slab.h>
12#include <linux/spinlock.h>
13#include <linux/completion.h>
14#include <linux/buffer_head.h>
15#include <linux/posix_acl.h>
16#include <linux/sort.h>
Steven Whitehouse5c676f62006-02-27 17:23:27 -050017#include <linux/gfs2_ondisk.h>
Steven Whitehouse71b86f52006-03-28 14:14:04 -050018#include <linux/crc32.h>
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -040019#include <linux/security.h>
Steven Whitehouse719ee342008-09-18 13:53:59 +010020#include <linux/time.h>
David Teiglandb3b94fa2006-01-16 16:50:04 +000021
22#include "gfs2.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050023#include "incore.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000024#include "acl.h"
25#include "bmap.h"
26#include "dir.h"
Steven Whitehouse307cf6e2009-08-26 18:51:04 +010027#include "xattr.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000028#include "glock.h"
29#include "glops.h"
30#include "inode.h"
31#include "log.h"
32#include "meta_io.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000033#include "quota.h"
34#include "rgrp.h"
35#include "trans.h"
Steven Whitehouse5c676f62006-02-27 17:23:27 -050036#include "util.h"
David Teiglandb3b94fa2006-01-16 16:50:04 +000037
Steven Whitehousebb8d8a62007-06-01 14:11:58 +010038struct gfs2_inum_range_host {
39 u64 ir_start;
40 u64 ir_length;
41};
42
David Teiglandb3b94fa2006-01-16 16:50:04 +000043static int iget_test(struct inode *inode, void *opaque)
44{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040045 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010046 u64 *no_addr = opaque;
David Teiglandb3b94fa2006-01-16 16:50:04 +000047
Steven Whitehouse009d8512009-12-08 12:12:13 +000048 if (ip->i_no_addr == *no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000049 return 1;
50
51 return 0;
52}
53
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040054static int iget_set(struct inode *inode, void *opaque)
55{
56 struct gfs2_inode *ip = GFS2_I(inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010057 u64 *no_addr = opaque;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040058
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010059 inode->i_ino = (unsigned long)*no_addr;
60 ip->i_no_addr = *no_addr;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040061 return 0;
62}
63
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010064struct inode *gfs2_ilookup(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000065{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010066 unsigned long hash = (unsigned long)no_addr;
67 return ilookup5(sb, hash, iget_test, &no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +000068}
69
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010070static struct inode *gfs2_iget(struct super_block *sb, u64 no_addr)
David Teiglandb3b94fa2006-01-16 16:50:04 +000071{
Steven Whitehousedbb7cae2007-05-15 15:37:50 +010072 unsigned long hash = (unsigned long)no_addr;
73 return iget5_locked(sb, hash, iget_test, iget_set, &no_addr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -040074}
75
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -050076struct gfs2_skip_data {
77 u64 no_addr;
78 int skipped;
79};
80
81static int iget_skip_test(struct inode *inode, void *opaque)
82{
83 struct gfs2_inode *ip = GFS2_I(inode);
84 struct gfs2_skip_data *data = opaque;
85
Steven Whitehouse009d8512009-12-08 12:12:13 +000086 if (ip->i_no_addr == data->no_addr) {
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -050087 if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE)){
88 data->skipped = 1;
89 return 0;
90 }
91 return 1;
92 }
93 return 0;
94}
95
96static int iget_skip_set(struct inode *inode, void *opaque)
97{
98 struct gfs2_inode *ip = GFS2_I(inode);
99 struct gfs2_skip_data *data = opaque;
100
101 if (data->skipped)
102 return 1;
103 inode->i_ino = (unsigned long)(data->no_addr);
104 ip->i_no_addr = data->no_addr;
105 return 0;
106}
107
108static struct inode *gfs2_iget_skip(struct super_block *sb,
109 u64 no_addr)
110{
111 struct gfs2_skip_data data;
112 unsigned long hash = (unsigned long)no_addr;
113
114 data.no_addr = no_addr;
115 data.skipped = 0;
116 return iget5_locked(sb, hash, iget_skip_test, iget_skip_set, &data);
117}
118
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400119/**
Wendy Cheng35dcc522007-06-27 17:07:53 -0400120 * GFS2 lookup code fills in vfs inode contents based on info obtained
121 * from directory entry inside gfs2_inode_lookup(). This has caused issues
122 * with NFS code path since its get_dentry routine doesn't have the relevant
123 * directory entry when gfs2_inode_lookup() is invoked. Part of the code
124 * segment inside gfs2_inode_lookup code needs to get moved around.
125 *
Christoph Hellwigeaff8072009-12-17 14:25:01 +0100126 * Clears I_NEW as well.
Wendy Cheng35dcc522007-06-27 17:07:53 -0400127 **/
128
129void gfs2_set_iop(struct inode *inode)
130{
Wendy Chengc97bfe42007-11-29 17:56:51 -0500131 struct gfs2_sbd *sdp = GFS2_SB(inode);
Wendy Cheng35dcc522007-06-27 17:07:53 -0400132 umode_t mode = inode->i_mode;
133
134 if (S_ISREG(mode)) {
135 inode->i_op = &gfs2_file_iops;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000136 if (gfs2_localflocks(sdp))
Christoph Hellwig10d21982009-04-07 19:42:17 +0200137 inode->i_fop = &gfs2_file_fops_nolock;
Wendy Chengc97bfe42007-11-29 17:56:51 -0500138 else
Christoph Hellwig10d21982009-04-07 19:42:17 +0200139 inode->i_fop = &gfs2_file_fops;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400140 } else if (S_ISDIR(mode)) {
141 inode->i_op = &gfs2_dir_iops;
Steven Whitehousef057f6c2009-01-12 10:43:39 +0000142 if (gfs2_localflocks(sdp))
Christoph Hellwig10d21982009-04-07 19:42:17 +0200143 inode->i_fop = &gfs2_dir_fops_nolock;
Wendy Chengc97bfe42007-11-29 17:56:51 -0500144 else
Christoph Hellwig10d21982009-04-07 19:42:17 +0200145 inode->i_fop = &gfs2_dir_fops;
Wendy Cheng35dcc522007-06-27 17:07:53 -0400146 } else if (S_ISLNK(mode)) {
147 inode->i_op = &gfs2_symlink_iops;
148 } else {
Denis Chengd83225d2008-02-26 15:25:03 +0800149 inode->i_op = &gfs2_file_iops;
Denis Cheng43a33c52008-02-26 15:25:04 +0800150 init_special_inode(inode, inode->i_mode, inode->i_rdev);
Wendy Cheng35dcc522007-06-27 17:07:53 -0400151 }
152
153 unlock_new_inode(inode);
154}
155
156/**
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400157 * gfs2_inode_lookup - Lookup an inode
158 * @sb: The super block
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100159 * @no_addr: The inode number
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400160 * @type: The type of the inode
161 *
162 * Returns: A VFS inode, or an error
163 */
164
Bob Peterson091806ed2008-04-29 12:35:48 -0500165struct inode *gfs2_inode_lookup(struct super_block *sb,
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400166 unsigned int type,
167 u64 no_addr,
Bob Peterson1a0eae82010-04-14 11:58:16 -0400168 u64 no_formal_ino)
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400169{
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500170 struct inode *inode;
171 struct gfs2_inode *ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400172 struct gfs2_glock *io_gl;
173 int error;
174
Bob Peterson1a0eae82010-04-14 11:58:16 -0400175 inode = gfs2_iget(sb, no_addr);
Benjamin Marzinski7a9f53b2007-09-18 13:33:18 -0500176 ip = GFS2_I(inode);
177
Steven Whitehouse26d83de2006-10-30 16:59:08 -0500178 if (!inode)
179 return ERR_PTR(-ENOBUFS);
180
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400181 if (inode->i_state & I_NEW) {
182 struct gfs2_sbd *sdp = GFS2_SB(inode);
Wendy Chengbb9bcf02007-06-27 17:07:08 -0400183 ip->i_no_formal_ino = no_formal_ino;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400184
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100185 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400186 if (unlikely(error))
187 goto fail;
188 ip->i_gl->gl_object = ip;
189
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100190 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400191 if (unlikely(error))
192 goto fail_put;
193
Steven Whitehousebfded272006-11-01 16:05:38 -0500194 set_bit(GIF_INVALID, &ip->i_flags);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400195 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, GL_EXACT, &ip->i_iopen_gh);
196 if (unlikely(error))
197 goto fail_iopen;
Abhijith Dasd93cfa92007-06-11 08:22:32 +0100198 ip->i_iopen_gh.gh_gl->gl_object = ip;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400199
200 gfs2_glock_put(io_gl);
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100201
Wendy Cheng35dcc522007-06-27 17:07:53 -0400202 if ((type == DT_UNKNOWN) && (no_formal_ino == 0))
203 goto gfs2_nfsbypass;
204
205 inode->i_mode = DT2IF(type);
206
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100207 /*
208 * We must read the inode in order to work out its type in
209 * this case. Note that this doesn't happen often as we normally
210 * know the type beforehand. This code path only occurs during
211 * unlinked inode recovery (where it is safe to do this glock,
212 * which is not true in the general case).
213 */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100214 if (type == DT_UNKNOWN) {
215 struct gfs2_holder gh;
216 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, 0, &gh);
217 if (unlikely(error))
218 goto fail_glock;
219 /* Inode is now uptodate */
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100220 gfs2_glock_dq_uninit(&gh);
221 }
222
Wendy Cheng35dcc522007-06-27 17:07:53 -0400223 gfs2_set_iop(inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000224 }
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400225
Wendy Cheng35dcc522007-06-27 17:07:53 -0400226gfs2_nfsbypass:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400227 return inode;
Steven Whitehousec8cdf472007-06-08 10:05:33 +0100228fail_glock:
229 gfs2_glock_dq(&ip->i_iopen_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400230fail_iopen:
231 gfs2_glock_put(io_gl);
232fail_put:
Bob Peterson1a0eae82010-04-14 11:58:16 -0400233 if (inode->i_state & I_NEW)
234 ip->i_gl->gl_object = NULL;
235 gfs2_glock_put(ip->i_gl);
236fail:
237 if (inode->i_state & I_NEW)
238 iget_failed(inode);
239 else
240 iput(inode);
241 return ERR_PTR(error);
242}
243
244/**
Bob Petersoned4878e2010-05-20 23:30:11 -0400245 * gfs2_process_unlinked_inode - Lookup an unlinked inode for reclamation
246 * and try to reclaim it by doing iput.
247 *
248 * This function assumes no rgrp locks are currently held.
249 *
Bob Peterson1a0eae82010-04-14 11:58:16 -0400250 * @sb: The super block
251 * no_addr: The inode number
Bob Peterson1a0eae82010-04-14 11:58:16 -0400252 *
Bob Peterson1a0eae82010-04-14 11:58:16 -0400253 */
254
Bob Petersoned4878e2010-05-20 23:30:11 -0400255void gfs2_process_unlinked_inode(struct super_block *sb, u64 no_addr)
Bob Peterson1a0eae82010-04-14 11:58:16 -0400256{
257 struct gfs2_sbd *sdp;
258 struct gfs2_inode *ip;
259 struct gfs2_glock *io_gl;
260 int error;
261 struct gfs2_holder gh;
Bob Petersoned4878e2010-05-20 23:30:11 -0400262 struct inode *inode;
Bob Peterson1a0eae82010-04-14 11:58:16 -0400263
Bob Petersoned4878e2010-05-20 23:30:11 -0400264 inode = gfs2_iget_skip(sb, no_addr);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400265
Bob Petersoned4878e2010-05-20 23:30:11 -0400266 if (!inode)
267 return;
Bob Peterson1a0eae82010-04-14 11:58:16 -0400268
Bob Petersoned4878e2010-05-20 23:30:11 -0400269 /* If it's not a new inode, someone's using it, so leave it alone. */
270 if (!(inode->i_state & I_NEW)) {
271 iput(inode);
272 return;
273 }
Bob Peterson1a0eae82010-04-14 11:58:16 -0400274
Bob Petersoned4878e2010-05-20 23:30:11 -0400275 ip = GFS2_I(inode);
276 sdp = GFS2_SB(inode);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400277 ip->i_no_formal_ino = -1;
278
279 error = gfs2_glock_get(sdp, no_addr, &gfs2_inode_glops, CREATE, &ip->i_gl);
280 if (unlikely(error))
281 goto fail;
282 ip->i_gl->gl_object = ip;
283
284 error = gfs2_glock_get(sdp, no_addr, &gfs2_iopen_glops, CREATE, &io_gl);
285 if (unlikely(error))
286 goto fail_put;
287
288 set_bit(GIF_INVALID, &ip->i_flags);
289 error = gfs2_glock_nq_init(io_gl, LM_ST_SHARED, LM_FLAG_TRY | GL_EXACT,
290 &ip->i_iopen_gh);
Bob Petersoned4878e2010-05-20 23:30:11 -0400291 if (unlikely(error))
Bob Peterson1a0eae82010-04-14 11:58:16 -0400292 goto fail_iopen;
Bob Petersoned4878e2010-05-20 23:30:11 -0400293
Bob Peterson1a0eae82010-04-14 11:58:16 -0400294 ip->i_iopen_gh.gh_gl->gl_object = ip;
295 gfs2_glock_put(io_gl);
296
Bob Petersoned4878e2010-05-20 23:30:11 -0400297 inode->i_mode = DT2IF(DT_UNKNOWN);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400298
299 /*
300 * We must read the inode in order to work out its type in
301 * this case. Note that this doesn't happen often as we normally
302 * know the type beforehand. This code path only occurs during
303 * unlinked inode recovery (where it is safe to do this glock,
304 * which is not true in the general case).
305 */
306 error = gfs2_glock_nq_init(ip->i_gl, LM_ST_EXCLUSIVE, LM_FLAG_TRY,
307 &gh);
Bob Petersoned4878e2010-05-20 23:30:11 -0400308 if (unlikely(error))
Bob Peterson1a0eae82010-04-14 11:58:16 -0400309 goto fail_glock;
Bob Petersoned4878e2010-05-20 23:30:11 -0400310
Bob Peterson1a0eae82010-04-14 11:58:16 -0400311 /* Inode is now uptodate */
312 gfs2_glock_dq_uninit(&gh);
Bob Petersoned4878e2010-05-20 23:30:11 -0400313 gfs2_set_iop(inode);
Bob Peterson1a0eae82010-04-14 11:58:16 -0400314
Bob Petersoned4878e2010-05-20 23:30:11 -0400315 /* The iput will cause it to be deleted. */
316 iput(inode);
317 return;
318
Bob Peterson1a0eae82010-04-14 11:58:16 -0400319fail_glock:
320 gfs2_glock_dq(&ip->i_iopen_gh);
321fail_iopen:
322 gfs2_glock_put(io_gl);
323fail_put:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400324 ip->i_gl->gl_object = NULL;
325 gfs2_glock_put(ip->i_gl);
326fail:
Bob Petersoned4878e2010-05-20 23:30:11 -0400327 iget_failed(inode);
328 return;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000329}
330
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500331static int gfs2_dinode_in(struct gfs2_inode *ip, const void *buf)
Steven Whitehouseea744d02006-10-31 15:28:00 -0500332{
Steven Whitehouseea744d02006-10-31 15:28:00 -0500333 const struct gfs2_dinode *str = buf;
Steven Whitehouse719ee342008-09-18 13:53:59 +0100334 struct timespec atime;
Steven Whitehouse9a004502008-02-01 09:23:44 +0000335 u16 height, depth;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500336
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000337 if (unlikely(ip->i_no_addr != be64_to_cpu(str->di_num.no_addr)))
338 goto corrupt;
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100339 ip->i_no_formal_ino = be64_to_cpu(str->di_num.no_formal_ino);
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500340 ip->i_inode.i_mode = be32_to_cpu(str->di_mode);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500341 ip->i_inode.i_rdev = 0;
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500342 switch (ip->i_inode.i_mode & S_IFMT) {
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500343 case S_IFBLK:
344 case S_IFCHR:
345 ip->i_inode.i_rdev = MKDEV(be32_to_cpu(str->di_major),
346 be32_to_cpu(str->di_minor));
347 break;
348 };
349
Steven Whitehouse2933f922006-11-01 13:23:29 -0500350 ip->i_inode.i_uid = be32_to_cpu(str->di_uid);
351 ip->i_inode.i_gid = be32_to_cpu(str->di_gid);
Steven Whitehouse4f561102006-11-01 14:04:17 -0500352 /*
353 * We will need to review setting the nlink count here in the
354 * light of the forthcoming ro bind mount work. This is a reminder
355 * to do that.
356 */
357 ip->i_inode.i_nlink = be32_to_cpu(str->di_nlink);
Steven Whitehousec9e98882008-11-04 09:47:33 +0000358 ip->i_disksize = be64_to_cpu(str->di_size);
359 i_size_write(&ip->i_inode, ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000360 gfs2_set_inode_blocks(&ip->i_inode, be64_to_cpu(str->di_blocks));
Steven Whitehouse719ee342008-09-18 13:53:59 +0100361 atime.tv_sec = be64_to_cpu(str->di_atime);
362 atime.tv_nsec = be32_to_cpu(str->di_atime_nsec);
363 if (timespec_compare(&ip->i_inode.i_atime, &atime) < 0)
364 ip->i_inode.i_atime = atime;
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500365 ip->i_inode.i_mtime.tv_sec = be64_to_cpu(str->di_mtime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100366 ip->i_inode.i_mtime.tv_nsec = be32_to_cpu(str->di_mtime_nsec);
Steven Whitehouse1a7b1ee2006-11-01 14:35:17 -0500367 ip->i_inode.i_ctime.tv_sec = be64_to_cpu(str->di_ctime);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100368 ip->i_inode.i_ctime.tv_nsec = be32_to_cpu(str->di_ctime_nsec);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500369
Steven Whitehousece276b02008-02-06 09:25:45 +0000370 ip->i_goal = be64_to_cpu(str->di_goal_meta);
Steven Whitehousebcf0b5b2008-11-03 13:39:46 +0000371 ip->i_generation = be64_to_cpu(str->di_generation);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500372
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000373 ip->i_diskflags = be32_to_cpu(str->di_flags);
Steven Whitehouse6b124d82006-11-08 12:51:06 -0500374 gfs2_set_inode_flags(&ip->i_inode);
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000375 height = be16_to_cpu(str->di_height);
376 if (unlikely(height > GFS2_MAX_META_HEIGHT))
377 goto corrupt;
378 ip->i_height = (u8)height;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500379
Steven Whitehouse9a004502008-02-01 09:23:44 +0000380 depth = be16_to_cpu(str->di_depth);
381 if (unlikely(depth > GFS2_DIR_MAX_DEPTH))
382 goto corrupt;
383 ip->i_depth = (u8)depth;
Steven Whitehousead6203f2008-11-03 13:59:19 +0000384 ip->i_entries = be32_to_cpu(str->di_entries);
Steven Whitehouseea744d02006-10-31 15:28:00 -0500385
Steven Whitehouse3767ac22008-11-03 14:28:42 +0000386 ip->i_eattr = be64_to_cpu(str->di_eattr);
Steven Whitehouse55610932007-10-17 08:47:38 +0100387 if (S_ISREG(ip->i_inode.i_mode))
388 gfs2_set_aops(&ip->i_inode);
389
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500390 return 0;
Steven Whitehouseecc30c72008-01-28 10:37:35 +0000391corrupt:
392 if (gfs2_consist_inode(ip))
393 gfs2_dinode_print(ip);
394 return -EIO;
Steven Whitehouseea744d02006-10-31 15:28:00 -0500395}
396
David Teiglandb3b94fa2006-01-16 16:50:04 +0000397/**
398 * gfs2_inode_refresh - Refresh the incore copy of the dinode
399 * @ip: The GFS2 inode
400 *
401 * Returns: errno
402 */
403
404int gfs2_inode_refresh(struct gfs2_inode *ip)
405{
406 struct buffer_head *dibh;
407 int error;
408
409 error = gfs2_meta_inode_buffer(ip, &dibh);
410 if (error)
411 return error;
412
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400413 if (gfs2_metatype_check(GFS2_SB(&ip->i_inode), dibh, GFS2_METATYPE_DI)) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000414 brelse(dibh);
415 return -EIO;
416 }
417
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500418 error = gfs2_dinode_in(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000419 brelse(dibh);
Steven Whitehousebfded272006-11-01 16:05:38 -0500420 clear_bit(GIF_INVALID, &ip->i_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000421
Steven Whitehouseaf339c02006-11-01 10:34:15 -0500422 return error;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000423}
424
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400425int gfs2_dinode_dealloc(struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000426{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400427 struct gfs2_sbd *sdp = GFS2_SB(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000428 struct gfs2_alloc *al;
429 struct gfs2_rgrpd *rgd;
430 int error;
431
Steven Whitehouse77658aa2008-02-12 14:17:27 +0000432 if (gfs2_get_inode_blocks(&ip->i_inode) != 1) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000433 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500434 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000435 return -EIO;
436 }
437
438 al = gfs2_alloc_get(ip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300439 if (!al)
440 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000441
442 error = gfs2_quota_hold(ip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
443 if (error)
444 goto out;
445
446 error = gfs2_rindex_hold(sdp, &al->al_ri_gh);
447 if (error)
448 goto out_qs;
449
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100450 rgd = gfs2_blk2rgrpd(sdp, ip->i_no_addr);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000451 if (!rgd) {
452 gfs2_consist_inode(ip);
453 error = -EIO;
454 goto out_rindex_relse;
455 }
456
457 error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_EXCLUSIVE, 0,
458 &al->al_rgd_gh);
459 if (error)
460 goto out_rindex_relse;
461
Steven Whitehouse420b9e52006-07-31 15:42:17 -0400462 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS + RES_QUOTA, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000463 if (error)
464 goto out_rg_gunlock;
465
Steven Whitehouse2bcd6102007-11-08 14:25:12 +0000466 set_bit(GLF_DIRTY, &ip->i_gl->gl_flags);
467 set_bit(GLF_LFLUSH, &ip->i_gl->gl_flags);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000468
469 gfs2_free_di(rgd, ip);
470
David Teiglandb3b94fa2006-01-16 16:50:04 +0000471 gfs2_trans_end(sdp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000472
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400473out_rg_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000474 gfs2_glock_dq_uninit(&al->al_rgd_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400475out_rindex_relse:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000476 gfs2_glock_dq_uninit(&al->al_ri_gh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400477out_qs:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000478 gfs2_quota_unhold(ip);
Steven Whitehouse36327522006-04-28 10:46:21 -0400479out:
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400480 gfs2_alloc_put(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000481 return error;
482}
483
484/**
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500485 * gfs2_change_nlink - Change nlink count on inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000486 * @ip: The GFS2 inode
487 * @diff: The change in the nlink count required
488 *
489 * Returns: errno
490 */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500491int gfs2_change_nlink(struct gfs2_inode *ip, int diff)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000492{
493 struct buffer_head *dibh;
Steven Whitehousecd915492006-09-04 12:49:07 -0400494 u32 nlink;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000495 int error;
496
Steven Whitehouse4f561102006-11-01 14:04:17 -0500497 BUG_ON(diff != 1 && diff != -1);
498 nlink = ip->i_inode.i_nlink + diff;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000499
500 /* If we are reducing the nlink count, but the new value ends up being
501 bigger than the old one, we must have underflowed. */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500502 if (diff < 0 && nlink > ip->i_inode.i_nlink) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000503 if (gfs2_consist_inode(ip))
Steven Whitehouse4cc14f02006-10-31 19:00:24 -0500504 gfs2_dinode_print(ip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000505 return -EIO;
506 }
507
508 error = gfs2_meta_inode_buffer(ip, &dibh);
509 if (error)
510 return error;
511
Steven Whitehouse4f561102006-11-01 14:04:17 -0500512 if (diff > 0)
513 inc_nlink(&ip->i_inode);
514 else
515 drop_nlink(&ip->i_inode);
516
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100517 ip->i_inode.i_ctime = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000518
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000519 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500520 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000521 brelse(dibh);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400522 mark_inode_dirty(&ip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000523
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500524 if (ip->i_inode.i_nlink == 0)
Russell Cattelanddee7602007-01-29 17:13:44 -0600525 gfs2_unlink_di(&ip->i_inode); /* mark inode unlinked */
S. Wendy Cheng87d21e02007-01-18 16:07:03 -0500526
S. Wendy Cheng55098262007-01-18 15:56:34 -0500527 return error;
528}
529
Steven Whitehousec7526662006-03-20 12:30:04 -0500530struct inode *gfs2_lookup_simple(struct inode *dip, const char *name)
531{
532 struct qstr qstr;
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600533 struct inode *inode;
Steven Whitehouse71b86f52006-03-28 14:14:04 -0500534 gfs2_str2qstr(&qstr, name);
Al Viroa569c712008-07-23 14:42:05 -0400535 inode = gfs2_lookupi(dip, &qstr, 1);
Russell Cattelan6c93fd12007-01-08 17:47:51 -0600536 /* gfs2_lookupi has inconsistent callers: vfs
537 * related routines expect NULL for no entry found,
538 * gfs2_lookup_simple callers expect ENOENT
539 * and do not check for NULL.
540 */
541 if (inode == NULL)
542 return ERR_PTR(-ENOENT);
543 else
544 return inode;
Steven Whitehousec7526662006-03-20 12:30:04 -0500545}
546
547
David Teiglandb3b94fa2006-01-16 16:50:04 +0000548/**
549 * gfs2_lookupi - Look up a filename in a directory and return its inode
550 * @d_gh: An initialized holder for the directory glock
551 * @name: The name of the inode to look for
552 * @is_root: If 1, ignore the caller's permissions
553 * @i_gh: An uninitialized holder for the new inode glock
554 *
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000555 * This can be called via the VFS filldir function when NFS is doing
556 * a readdirplus and the inode which its intending to stat isn't
557 * already in cache. In this case we must not take the directory glock
558 * again, since the readdir call will have already taken that lock.
David Teiglandb3b94fa2006-01-16 16:50:04 +0000559 *
560 * Returns: errno
561 */
562
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400563struct inode *gfs2_lookupi(struct inode *dir, const struct qstr *name,
Al Viroa569c712008-07-23 14:42:05 -0400564 int is_root)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000565{
Steven Whitehousec9fd4302006-03-01 15:31:02 -0500566 struct super_block *sb = dir->i_sb;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400567 struct gfs2_inode *dip = GFS2_I(dir);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000568 struct gfs2_holder d_gh;
akpm@linux-foundation.org037bcbb2007-06-08 16:42:14 -0700569 int error = 0;
Steven Whitehousec7526662006-03-20 12:30:04 -0500570 struct inode *inode = NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000571 int unlock = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000572
573 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehousec7526662006-03-20 12:30:04 -0500574 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000575
Steven Whitehousec7526662006-03-20 12:30:04 -0500576 if ((name->len == 1 && memcmp(name->name, ".", 1) == 0) ||
577 (name->len == 2 && memcmp(name->name, "..", 2) == 0 &&
578 dir == sb->s_root->d_inode)) {
Steven Whitehouse320dd102006-05-18 16:25:27 -0400579 igrab(dir);
580 return dir;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000581 }
582
Steven Whitehouse7afd88d2008-02-22 16:07:18 +0000583 if (gfs2_glock_is_locked_by_me(dip->i_gl) == NULL) {
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000584 error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &d_gh);
585 if (error)
586 return ERR_PTR(error);
587 unlock = 1;
588 }
David Teiglandb3b94fa2006-01-16 16:50:04 +0000589
590 if (!is_root) {
Miklos Szeredif58ba882008-07-02 21:12:01 +0200591 error = gfs2_permission(dir, MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000592 if (error)
593 goto out;
594 }
595
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100596 inode = gfs2_dir_search(dir, name);
597 if (IS_ERR(inode))
598 error = PTR_ERR(inode);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000599out:
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000600 if (unlock)
601 gfs2_glock_dq_uninit(&d_gh);
Steven Whitehousec7526662006-03-20 12:30:04 -0500602 if (error == -ENOENT)
603 return NULL;
Steven Whitehoused7c103d2007-01-25 17:14:59 +0000604 return inode ? inode : ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000605}
606
David Teiglandb3b94fa2006-01-16 16:50:04 +0000607/**
608 * create_ok - OK to create a new on-disk inode here?
609 * @dip: Directory in which dinode is to be created
610 * @name: Name of new dinode
611 * @mode:
612 *
613 * Returns: errno
614 */
615
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400616static int create_ok(struct gfs2_inode *dip, const struct qstr *name,
David Teiglandb3b94fa2006-01-16 16:50:04 +0000617 unsigned int mode)
618{
619 int error;
620
Miklos Szeredif58ba882008-07-02 21:12:01 +0200621 error = gfs2_permission(&dip->i_inode, MAY_WRITE | MAY_EXEC);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000622 if (error)
623 return error;
624
625 /* Don't create entries in an unlinked directory */
Steven Whitehouse4f561102006-11-01 14:04:17 -0500626 if (!dip->i_inode.i_nlink)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000627 return -EPERM;
628
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100629 error = gfs2_dir_check(&dip->i_inode, name, NULL);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000630 switch (error) {
631 case -ENOENT:
632 error = 0;
633 break;
634 case 0:
635 return -EEXIST;
636 default:
637 return error;
638 }
639
Steven Whitehousead6203f2008-11-03 13:59:19 +0000640 if (dip->i_entries == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000641 return -EFBIG;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500642 if (S_ISDIR(mode) && dip->i_inode.i_nlink == (u32)-1)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000643 return -EMLINK;
644
645 return 0;
646}
647
648static void munge_mode_uid_gid(struct gfs2_inode *dip, unsigned int *mode,
649 unsigned int *uid, unsigned int *gid)
650{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400651 if (GFS2_SB(&dip->i_inode)->sd_args.ar_suiddir &&
Steven Whitehouse2933f922006-11-01 13:23:29 -0500652 (dip->i_inode.i_mode & S_ISUID) && dip->i_inode.i_uid) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000653 if (S_ISDIR(*mode))
654 *mode |= S_ISUID;
David Howells3de7be32008-11-14 10:38:53 +1100655 else if (dip->i_inode.i_uid != current_fsuid())
David Teiglandb3b94fa2006-01-16 16:50:04 +0000656 *mode &= ~07111;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500657 *uid = dip->i_inode.i_uid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000658 } else
David Howells3de7be32008-11-14 10:38:53 +1100659 *uid = current_fsuid();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000660
Steven Whitehouseb60623c2006-11-01 12:22:46 -0500661 if (dip->i_inode.i_mode & S_ISGID) {
David Teiglandb3b94fa2006-01-16 16:50:04 +0000662 if (S_ISDIR(*mode))
663 *mode |= S_ISGID;
Steven Whitehouse2933f922006-11-01 13:23:29 -0500664 *gid = dip->i_inode.i_gid;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000665 } else
David Howells3de7be32008-11-14 10:38:53 +1100666 *gid = current_fsgid();
David Teiglandb3b94fa2006-01-16 16:50:04 +0000667}
668
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100669static int alloc_dinode(struct gfs2_inode *dip, u64 *no_addr, u64 *generation)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000670{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400671 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000672 int error;
673
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000674 if (gfs2_alloc_get(dip) == NULL)
675 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000676
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000677 dip->i_alloc->al_requested = RES_DINODE;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000678 error = gfs2_inplace_reserve(dip);
679 if (error)
680 goto out;
681
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400682 error = gfs2_trans_begin(sdp, RES_RG_BIT + RES_STATFS, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000683 if (error)
684 goto out_ipreserv;
685
Steven Whitehouse6050b9c2009-07-31 16:19:40 +0100686 error = gfs2_alloc_di(dip, no_addr, generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000687
688 gfs2_trans_end(sdp);
689
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400690out_ipreserv:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000691 gfs2_inplace_release(dip);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400692out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000693 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000694 return error;
695}
696
697/**
698 * init_dinode - Fill in a new dinode structure
699 * @dip: the directory this inode is being created in
700 * @gl: The glock covering the new inode
701 * @inum: the inode number
702 * @mode: the file permissions
703 * @uid:
704 * @gid:
705 *
706 */
707
708static void init_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400709 const struct gfs2_inum_host *inum, unsigned int mode,
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400710 unsigned int uid, unsigned int gid,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400711 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000712{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400713 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000714 struct gfs2_dinode *di;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000715 struct buffer_head *dibh;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100716 struct timespec tv = CURRENT_TIME;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000717
718 dibh = gfs2_meta_new(gl, inum->no_addr);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000719 gfs2_trans_add_bh(gl, dibh, 1);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000720 gfs2_metatype_set(dibh, GFS2_METATYPE_DI, GFS2_FORMAT_DI);
721 gfs2_buffer_clear_tail(dibh, sizeof(struct gfs2_dinode));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000722 di = (struct gfs2_dinode *)dibh->b_data;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000723
Steven Whitehouse2442a092006-01-30 11:49:32 +0000724 di->di_num.no_formal_ino = cpu_to_be64(inum->no_formal_ino);
725 di->di_num.no_addr = cpu_to_be64(inum->no_addr);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000726 di->di_mode = cpu_to_be32(mode);
727 di->di_uid = cpu_to_be32(uid);
728 di->di_gid = cpu_to_be32(gid);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500729 di->di_nlink = 0;
730 di->di_size = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000731 di->di_blocks = cpu_to_be64(1);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100732 di->di_atime = di->di_mtime = di->di_ctime = cpu_to_be64(tv.tv_sec);
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500733 di->di_major = cpu_to_be32(MAJOR(dev));
734 di->di_minor = cpu_to_be32(MINOR(dev));
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000735 di->di_goal_meta = di->di_goal_data = cpu_to_be64(inum->no_addr);
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400736 di->di_generation = cpu_to_be64(*generation);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500737 di->di_flags = 0;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000738
739 if (S_ISREG(mode)) {
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000740 if ((dip->i_diskflags & GFS2_DIF_INHERIT_JDATA) ||
David Teiglandb3b94fa2006-01-16 16:50:04 +0000741 gfs2_tune_get(sdp, gt_new_files_jdata))
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000742 di->di_flags |= cpu_to_be32(GFS2_DIF_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000743 } else if (S_ISDIR(mode)) {
Steven Whitehouse383f01f2008-11-04 10:05:22 +0000744 di->di_flags |= cpu_to_be32(dip->i_diskflags &
Steven Whitehouse568f4c92006-02-27 12:00:42 -0500745 GFS2_DIF_INHERIT_JDATA);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000746 }
747
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000748 di->__pad1 = 0;
Steven Whitehousea9583c72006-11-01 20:09:14 -0500749 di->di_payload_format = cpu_to_be32(S_ISDIR(mode) ? GFS2_FORMAT_DE : 0);
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500750 di->di_height = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000751 di->__pad2 = 0;
752 di->__pad3 = 0;
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500753 di->di_depth = 0;
754 di->di_entries = 0;
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000755 memset(&di->__pad4, 0, sizeof(di->__pad4));
Steven Whitehouse294caaa2006-11-02 11:59:28 -0500756 di->di_eattr = 0;
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +0100757 di->di_atime_nsec = cpu_to_be32(tv.tv_nsec);
758 di->di_mtime_nsec = cpu_to_be32(tv.tv_nsec);
759 di->di_ctime_nsec = cpu_to_be32(tv.tv_nsec);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000760 memset(&di->di_reserved, 0, sizeof(di->di_reserved));
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400761
762 set_buffer_uptodate(dibh);
Steven Whitehouseb96ca4f2006-01-18 10:57:10 +0000763
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400764 *bhp = dibh;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000765}
766
767static int make_dinode(struct gfs2_inode *dip, struct gfs2_glock *gl,
Al Viro629a21e2006-10-13 22:51:24 -0400768 unsigned int mode, const struct gfs2_inum_host *inum,
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400769 const u64 *generation, dev_t dev, struct buffer_head **bhp)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000770{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400771 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000772 unsigned int uid, gid;
773 int error;
774
775 munge_mode_uid_gid(dip, &mode, &uid, &gid);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300776 if (!gfs2_alloc_get(dip))
777 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000778
779 error = gfs2_quota_lock(dip, uid, gid);
780 if (error)
781 goto out;
782
783 error = gfs2_quota_check(dip, uid, gid);
784 if (error)
785 goto out_quota;
786
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400787 error = gfs2_trans_begin(sdp, RES_DINODE + RES_QUOTA, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000788 if (error)
789 goto out_quota;
790
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400791 init_dinode(dip, gl, inum, mode, uid, gid, generation, dev, bhp);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000792 gfs2_quota_change(dip, +1, uid, gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000793 gfs2_trans_end(sdp);
794
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400795out_quota:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000796 gfs2_quota_unlock(dip);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400797out:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000798 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000799 return error;
800}
801
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400802static int link_dinode(struct gfs2_inode *dip, const struct qstr *name,
803 struct gfs2_inode *ip)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000804{
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400805 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000806 struct gfs2_alloc *al;
807 int alloc_required;
808 struct buffer_head *dibh;
809 int error;
810
811 al = gfs2_alloc_get(dip);
Cyrill Gorcunov182fe5a2008-03-03 21:54:21 +0300812 if (!al)
813 return -ENOMEM;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000814
815 error = gfs2_quota_lock(dip, NO_QUOTA_CHANGE, NO_QUOTA_CHANGE);
816 if (error)
817 goto fail;
818
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400819 error = alloc_required = gfs2_diradd_alloc_required(&dip->i_inode, name);
Steven Whitehousec7526662006-03-20 12:30:04 -0500820 if (alloc_required < 0)
Bob Peterson1b8177e2008-01-19 21:50:24 -0600821 goto fail_quota_locks;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000822 if (alloc_required) {
Steven Whitehouse2933f922006-11-01 13:23:29 -0500823 error = gfs2_quota_check(dip, dip->i_inode.i_uid, dip->i_inode.i_gid);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000824 if (error)
825 goto fail_quota_locks;
826
827 al->al_requested = sdp->sd_max_dirres;
828
829 error = gfs2_inplace_reserve(dip);
830 if (error)
831 goto fail_quota_locks;
832
Steven Whitehouse320dd102006-05-18 16:25:27 -0400833 error = gfs2_trans_begin(sdp, sdp->sd_max_dirres +
Steven Whitehousebb8d8a62007-06-01 14:11:58 +0100834 al->al_rgd->rd_length +
Steven Whitehouse907b9bc2006-09-25 09:26:04 -0400835 2 * RES_DINODE +
David Teiglandb3b94fa2006-01-16 16:50:04 +0000836 RES_STATFS + RES_QUOTA, 0);
837 if (error)
838 goto fail_ipreserv;
839 } else {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400840 error = gfs2_trans_begin(sdp, RES_LEAF + 2 * RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000841 if (error)
842 goto fail_quota_locks;
843 }
844
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100845 error = gfs2_dir_add(&dip->i_inode, name, ip, IF2DT(ip->i_inode.i_mode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000846 if (error)
847 goto fail_end_trans;
848
849 error = gfs2_meta_inode_buffer(ip, &dibh);
850 if (error)
851 goto fail_end_trans;
Steven Whitehouse4f561102006-11-01 14:04:17 -0500852 ip->i_inode.i_nlink = 1;
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000853 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500854 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000855 brelse(dibh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000856 return 0;
857
Steven Whitehouse320dd102006-05-18 16:25:27 -0400858fail_end_trans:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000859 gfs2_trans_end(sdp);
860
Steven Whitehouse320dd102006-05-18 16:25:27 -0400861fail_ipreserv:
Steven Whitehouse6dbd8222008-01-10 15:18:55 +0000862 if (dip->i_alloc->al_rgd)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000863 gfs2_inplace_release(dip);
864
Steven Whitehouse320dd102006-05-18 16:25:27 -0400865fail_quota_locks:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000866 gfs2_quota_unlock(dip);
867
Steven Whitehouse320dd102006-05-18 16:25:27 -0400868fail:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000869 gfs2_alloc_put(dip);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000870 return error;
871}
872
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400873static int gfs2_security_init(struct gfs2_inode *dip, struct gfs2_inode *ip)
874{
875 int err;
876 size_t len;
877 void *value;
878 char *name;
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400879
880 err = security_inode_init_security(&ip->i_inode, &dip->i_inode,
881 &name, &value, &len);
882
883 if (err) {
884 if (err == -EOPNOTSUPP)
885 return 0;
886 return err;
887 }
888
Christoph Hellwig431547b2009-11-13 09:52:56 +0000889 err = __gfs2_xattr_set(&ip->i_inode, name, value, len, 0,
890 GFS2_EATYPE_SECURITY);
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400891 kfree(value);
892 kfree(name);
893
894 return err;
895}
896
David Teiglandb3b94fa2006-01-16 16:50:04 +0000897/**
898 * gfs2_createi - Create a new inode
899 * @ghs: An array of two holders
900 * @name: The name of the new file
901 * @mode: the permissions on the new inode
902 *
903 * @ghs[0] is an initialized holder for the directory
904 * @ghs[1] is the holder for the inode lock
905 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000906 * If the return value is not NULL, the glocks on both the directory and the new
David Teiglandb3b94fa2006-01-16 16:50:04 +0000907 * file are held. A transaction has been started and an inplace reservation
908 * is held, as well.
909 *
Steven Whitehouse7359a192006-02-13 12:27:43 +0000910 * Returns: An inode
David Teiglandb3b94fa2006-01-16 16:50:04 +0000911 */
912
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400913struct inode *gfs2_createi(struct gfs2_holder *ghs, const struct qstr *name,
Steven Whitehousee7f14f42006-10-31 21:45:08 -0500914 unsigned int mode, dev_t dev)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000915{
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100916 struct inode *inode = NULL;
Steven Whitehouse5c676f62006-02-27 17:23:27 -0500917 struct gfs2_inode *dip = ghs->gh_gl->gl_object;
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400918 struct inode *dir = &dip->i_inode;
919 struct gfs2_sbd *sdp = GFS2_SB(&dip->i_inode);
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100920 struct gfs2_inum_host inum = { .no_addr = 0, .no_formal_ino = 0 };
David Teiglandb3b94fa2006-01-16 16:50:04 +0000921 int error;
Steven Whitehouse4340fe62006-07-11 09:46:33 -0400922 u64 generation;
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100923 struct buffer_head *bh = NULL;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000924
925 if (!name->len || name->len > GFS2_FNAMESIZE)
Steven Whitehouse7359a192006-02-13 12:27:43 +0000926 return ERR_PTR(-ENAMETOOLONG);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000927
David Teiglandb3b94fa2006-01-16 16:50:04 +0000928 gfs2_holder_reinit(LM_ST_EXCLUSIVE, 0, ghs);
929 error = gfs2_glock_nq(ghs);
930 if (error)
931 goto fail;
932
933 error = create_ok(dip, name, mode);
934 if (error)
935 goto fail_gunlock;
936
Steven Whitehousedbb7cae2007-05-15 15:37:50 +0100937 error = alloc_dinode(dip, &inum.no_addr, &generation);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000938 if (error)
939 goto fail_gunlock;
Steven Whitehouse8d8291a2009-08-27 15:51:07 +0100940 inum.no_formal_ino = generation;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000941
Steven Whitehouse28626e22006-11-22 11:13:21 -0500942 error = gfs2_glock_nq_num(sdp, inum.no_addr, &gfs2_inode_glops,
943 LM_ST_EXCLUSIVE, GL_SKIP, ghs + 1);
944 if (error)
945 goto fail_gunlock;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000946
Wendy Chenge9bd2b32007-08-24 09:15:01 -0400947 error = make_dinode(dip, ghs[1].gh_gl, mode, &inum, &generation, dev, &bh);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000948 if (error)
949 goto fail_gunlock2;
950
Steven Whitehouse8d8291a2009-08-27 15:51:07 +0100951 inode = gfs2_inode_lookup(dir->i_sb, IF2DT(mode), inum.no_addr,
Bob Peterson1a0eae82010-04-14 11:58:16 -0400952 inum.no_formal_ino);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400953 if (IS_ERR(inode))
David Teiglandb3b94fa2006-01-16 16:50:04 +0000954 goto fail_gunlock2;
955
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400956 error = gfs2_inode_refresh(GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000957 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100958 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000959
Steven Whitehouse479c4272009-10-02 12:00:00 +0100960 error = gfs2_acl_create(dip, inode);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000961 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100962 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000963
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400964 error = gfs2_security_init(dip, GFS2_I(inode));
965 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100966 goto fail_gunlock2;
Ryan O'Harafcb47e0b2006-10-03 11:57:35 -0400967
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400968 error = link_dinode(dip, name, GFS2_I(inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +0000969 if (error)
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100970 goto fail_gunlock2;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000971
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100972 if (bh)
973 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000974 return inode;
David Teiglandb3b94fa2006-01-16 16:50:04 +0000975
Steven Whitehouse320dd102006-05-18 16:25:27 -0400976fail_gunlock2:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000977 gfs2_glock_dq_uninit(ghs + 1);
Julien Brunelbd1eb882008-09-01 10:51:22 +0200978 if (inode && !IS_ERR(inode))
Steven Whitehousee1cc8602007-06-07 11:47:52 +0100979 iput(inode);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400980fail_gunlock:
David Teiglandb3b94fa2006-01-16 16:50:04 +0000981 gfs2_glock_dq(ghs);
Steven Whitehouse320dd102006-05-18 16:25:27 -0400982fail:
Steven Whitehousef91a0d32007-10-15 16:29:05 +0100983 if (bh)
984 brelse(bh);
Steven Whitehouse7359a192006-02-13 12:27:43 +0000985 return ERR_PTR(error);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000986}
987
Steven Whitehouse536baf02009-05-22 10:48:59 +0100988static int __gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
David Teiglandb3b94fa2006-01-16 16:50:04 +0000989{
990 struct buffer_head *dibh;
991 int error;
992
993 error = gfs2_meta_inode_buffer(ip, &dibh);
994 if (!error) {
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -0400995 error = inode_setattr(&ip->i_inode, attr);
996 gfs2_assert_warn(GFS2_SB(&ip->i_inode), !error);
Steven Whitehoused4e9c4c2006-01-18 11:19:28 +0000997 gfs2_trans_add_bh(ip->i_gl, dibh, 1);
Steven Whitehouse539e5d62006-10-31 15:07:05 -0500998 gfs2_dinode_out(ip, dibh->b_data);
David Teiglandb3b94fa2006-01-16 16:50:04 +0000999 brelse(dibh);
1000 }
1001 return error;
1002}
1003
1004/**
1005 * gfs2_setattr_simple -
1006 * @ip:
1007 * @attr:
1008 *
1009 * Called with a reference on the vnode.
1010 *
1011 * Returns: errno
1012 */
1013
1014int gfs2_setattr_simple(struct gfs2_inode *ip, struct iattr *attr)
1015{
1016 int error;
1017
Steven Whitehouse5c676f62006-02-27 17:23:27 -05001018 if (current->journal_info)
David Teiglandb3b94fa2006-01-16 16:50:04 +00001019 return __gfs2_setattr_simple(ip, attr);
1020
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001021 error = gfs2_trans_begin(GFS2_SB(&ip->i_inode), RES_DINODE, 0);
David Teiglandb3b94fa2006-01-16 16:50:04 +00001022 if (error)
1023 return error;
1024
1025 error = __gfs2_setattr_simple(ip, attr);
Steven Whitehousefeaa7bb2006-06-14 15:32:57 -04001026 gfs2_trans_end(GFS2_SB(&ip->i_inode));
David Teiglandb3b94fa2006-01-16 16:50:04 +00001027 return error;
1028}
1029
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001030void gfs2_dinode_out(const struct gfs2_inode *ip, void *buf)
1031{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001032 struct gfs2_dinode *str = buf;
1033
1034 str->di_header.mh_magic = cpu_to_be32(GFS2_MAGIC);
1035 str->di_header.mh_type = cpu_to_be32(GFS2_METATYPE_DI);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001036 str->di_header.mh_format = cpu_to_be32(GFS2_FORMAT_DI);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001037 str->di_num.no_addr = cpu_to_be64(ip->i_no_addr);
1038 str->di_num.no_formal_ino = cpu_to_be64(ip->i_no_formal_ino);
1039 str->di_mode = cpu_to_be32(ip->i_inode.i_mode);
1040 str->di_uid = cpu_to_be32(ip->i_inode.i_uid);
1041 str->di_gid = cpu_to_be32(ip->i_inode.i_gid);
1042 str->di_nlink = cpu_to_be32(ip->i_inode.i_nlink);
Steven Whitehousec9e98882008-11-04 09:47:33 +00001043 str->di_size = cpu_to_be64(ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001044 str->di_blocks = cpu_to_be64(gfs2_get_inode_blocks(&ip->i_inode));
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001045 str->di_atime = cpu_to_be64(ip->i_inode.i_atime.tv_sec);
1046 str->di_mtime = cpu_to_be64(ip->i_inode.i_mtime.tv_sec);
1047 str->di_ctime = cpu_to_be64(ip->i_inode.i_ctime.tv_sec);
1048
Steven Whitehousece276b02008-02-06 09:25:45 +00001049 str->di_goal_meta = cpu_to_be64(ip->i_goal);
1050 str->di_goal_data = cpu_to_be64(ip->i_goal);
Steven Whitehousebcf0b5b2008-11-03 13:39:46 +00001051 str->di_generation = cpu_to_be64(ip->i_generation);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001052
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001053 str->di_flags = cpu_to_be32(ip->i_diskflags);
Steven Whitehouseecc30c72008-01-28 10:37:35 +00001054 str->di_height = cpu_to_be16(ip->i_height);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001055 str->di_payload_format = cpu_to_be32(S_ISDIR(ip->i_inode.i_mode) &&
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001056 !(ip->i_diskflags & GFS2_DIF_EXHASH) ?
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001057 GFS2_FORMAT_DE : 0);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001058 str->di_depth = cpu_to_be16(ip->i_depth);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001059 str->di_entries = cpu_to_be32(ip->i_entries);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001060
Steven Whitehouse3767ac22008-11-03 14:28:42 +00001061 str->di_eattr = cpu_to_be64(ip->i_eattr);
Steven Whitehouse4bd91ba2007-06-05 09:39:18 +01001062 str->di_atime_nsec = cpu_to_be32(ip->i_inode.i_atime.tv_nsec);
1063 str->di_mtime_nsec = cpu_to_be32(ip->i_inode.i_mtime.tv_nsec);
1064 str->di_ctime_nsec = cpu_to_be32(ip->i_inode.i_ctime.tv_nsec);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001065}
1066
1067void gfs2_dinode_print(const struct gfs2_inode *ip)
1068{
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001069 printk(KERN_INFO " no_formal_ino = %llu\n",
1070 (unsigned long long)ip->i_no_formal_ino);
1071 printk(KERN_INFO " no_addr = %llu\n",
1072 (unsigned long long)ip->i_no_addr);
Steven Whitehousec9e98882008-11-04 09:47:33 +00001073 printk(KERN_INFO " i_disksize = %llu\n",
1074 (unsigned long long)ip->i_disksize);
Steven Whitehouse77658aa2008-02-12 14:17:27 +00001075 printk(KERN_INFO " blocks = %llu\n",
1076 (unsigned long long)gfs2_get_inode_blocks(&ip->i_inode));
Steven Whitehousece276b02008-02-06 09:25:45 +00001077 printk(KERN_INFO " i_goal = %llu\n",
1078 (unsigned long long)ip->i_goal);
Steven Whitehouse383f01f2008-11-04 10:05:22 +00001079 printk(KERN_INFO " i_diskflags = 0x%.8X\n", ip->i_diskflags);
Bob Petersonca390602008-01-28 11:15:57 -06001080 printk(KERN_INFO " i_height = %u\n", ip->i_height);
Steven Whitehouse9a004502008-02-01 09:23:44 +00001081 printk(KERN_INFO " i_depth = %u\n", ip->i_depth);
Steven Whitehousead6203f2008-11-03 13:59:19 +00001082 printk(KERN_INFO " i_entries = %u\n", ip->i_entries);
Steven Whitehouse3767ac22008-11-03 14:28:42 +00001083 printk(KERN_INFO " i_eattr = %llu\n",
1084 (unsigned long long)ip->i_eattr);
Steven Whitehousebb8d8a62007-06-01 14:11:58 +01001085}
1086