ocfs2: remove unused code
[deliverable/linux.git] / fs / ocfs2 / inode.c
CommitLineData
ccd979bd
MF
1/* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
3 *
4 * inode.c
5 *
6 * vfs' aops, fops, dops and iops
7 *
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public
12 * License as published by the Free Software Foundation; either
13 * version 2 of the License, or (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public
21 * License along with this program; if not, write to the
22 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 * Boston, MA 021110-1307, USA.
24 */
25
26#include <linux/fs.h>
27#include <linux/types.h>
28#include <linux/slab.h>
29#include <linux/highmem.h>
30#include <linux/pagemap.h>
31#include <linux/smp_lock.h>
32
33#include <asm/byteorder.h>
34
35#define MLOG_MASK_PREFIX ML_INODE
36#include <cluster/masklog.h>
37
38#include "ocfs2.h"
39
40#include "alloc.h"
41#include "dlmglue.h"
42#include "extent_map.h"
43#include "file.h"
b4df6ed8 44#include "heartbeat.h"
ccd979bd
MF
45#include "inode.h"
46#include "journal.h"
47#include "namei.h"
48#include "suballoc.h"
49#include "super.h"
50#include "symlink.h"
51#include "sysfile.h"
52#include "uptodate.h"
53#include "vote.h"
54
55#include "buffer_head_io.h"
56
ccd979bd
MF
57struct ocfs2_find_inode_args
58{
59 u64 fi_blkno;
60 unsigned long fi_ino;
61 unsigned int fi_flags;
62};
63
64static int ocfs2_read_locked_inode(struct inode *inode,
65 struct ocfs2_find_inode_args *args);
66static int ocfs2_init_locked_inode(struct inode *inode, void *opaque);
67static int ocfs2_find_actor(struct inode *inode, void *opaque);
68static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
69 struct inode *inode,
70 struct buffer_head *fe_bh);
71
ca4d147e
HP
72void ocfs2_set_inode_flags(struct inode *inode)
73{
74 unsigned int flags = OCFS2_I(inode)->ip_attr;
75
76 inode->i_flags &= ~(S_IMMUTABLE |
77 S_SYNC | S_APPEND | S_NOATIME | S_DIRSYNC);
78
79 if (flags & OCFS2_IMMUTABLE_FL)
80 inode->i_flags |= S_IMMUTABLE;
81
82 if (flags & OCFS2_SYNC_FL)
83 inode->i_flags |= S_SYNC;
84 if (flags & OCFS2_APPEND_FL)
85 inode->i_flags |= S_APPEND;
86 if (flags & OCFS2_NOATIME_FL)
87 inode->i_flags |= S_NOATIME;
88 if (flags & OCFS2_DIRSYNC_FL)
89 inode->i_flags |= S_DIRSYNC;
90}
91
24c19ef4 92struct inode *ocfs2_iget(struct ocfs2_super *osb, u64 blkno, int flags)
ccd979bd
MF
93{
94 struct inode *inode = NULL;
95 struct super_block *sb = osb->sb;
96 struct ocfs2_find_inode_args args;
97
b0697053 98 mlog_entry("(blkno = %llu)\n", (unsigned long long)blkno);
ccd979bd
MF
99
100 /* Ok. By now we've either got the offsets passed to us by the
101 * caller, or we just pulled them off the bh. Lets do some
102 * sanity checks to make sure they're OK. */
103 if (blkno == 0) {
104 inode = ERR_PTR(-EINVAL);
105 mlog_errno(PTR_ERR(inode));
106 goto bail;
107 }
108
109 args.fi_blkno = blkno;
24c19ef4 110 args.fi_flags = flags;
ccd979bd
MF
111 args.fi_ino = ino_from_blkno(sb, blkno);
112
113 inode = iget5_locked(sb, args.fi_ino, ocfs2_find_actor,
114 ocfs2_init_locked_inode, &args);
115 /* inode was *not* in the inode cache. 2.6.x requires
116 * us to do our own read_inode call and unlock it
117 * afterwards. */
118 if (inode && inode->i_state & I_NEW) {
119 mlog(0, "Inode was not in inode cache, reading it.\n");
120 ocfs2_read_locked_inode(inode, &args);
121 unlock_new_inode(inode);
122 }
123 if (inode == NULL) {
124 inode = ERR_PTR(-ENOMEM);
125 mlog_errno(PTR_ERR(inode));
126 goto bail;
127 }
128 if (is_bad_inode(inode)) {
129 iput(inode);
130 inode = ERR_PTR(-ESTALE);
ccd979bd
MF
131 goto bail;
132 }
133
134bail:
135 if (!IS_ERR(inode)) {
b0697053
MF
136 mlog(0, "returning inode with number %llu\n",
137 (unsigned long long)OCFS2_I(inode)->ip_blkno);
ccd979bd 138 mlog_exit_ptr(inode);
6a1bd4a5 139 }
ccd979bd
MF
140
141 return inode;
142}
143
144
145/*
146 * here's how inodes get read from disk:
147 * iget5_locked -> find_actor -> OCFS2_FIND_ACTOR
148 * found? : return the in-memory inode
149 * not found? : get_new_inode -> OCFS2_INIT_LOCKED_INODE
150 */
151
152static int ocfs2_find_actor(struct inode *inode, void *opaque)
153{
154 struct ocfs2_find_inode_args *args = NULL;
155 struct ocfs2_inode_info *oi = OCFS2_I(inode);
156 int ret = 0;
157
158 mlog_entry("(0x%p, %lu, 0x%p)\n", inode, inode->i_ino, opaque);
159
160 args = opaque;
161
162 mlog_bug_on_msg(!inode, "No inode in find actor!\n");
163
164 if (oi->ip_blkno != args->fi_blkno)
165 goto bail;
166
ccd979bd
MF
167 ret = 1;
168bail:
169 mlog_exit(ret);
170 return ret;
171}
172
173/*
174 * initialize the new inode, but don't do anything that would cause
175 * us to sleep.
176 * return 0 on success, 1 on failure
177 */
178static int ocfs2_init_locked_inode(struct inode *inode, void *opaque)
179{
180 struct ocfs2_find_inode_args *args = opaque;
181
182 mlog_entry("inode = %p, opaque = %p\n", inode, opaque);
183
184 inode->i_ino = args->fi_ino;
185 OCFS2_I(inode)->ip_blkno = args->fi_blkno;
186
187 mlog_exit(0);
188 return 0;
189}
190
191int ocfs2_populate_inode(struct inode *inode, struct ocfs2_dinode *fe,
192 int create_ino)
193{
194 struct super_block *sb;
195 struct ocfs2_super *osb;
196 int status = -EINVAL;
197
b0697053
MF
198 mlog_entry("(0x%p, size:%llu)\n", inode,
199 (unsigned long long)fe->i_size);
ccd979bd
MF
200
201 sb = inode->i_sb;
202 osb = OCFS2_SB(sb);
203
204 /* this means that read_inode cannot create a superblock inode
205 * today. change if needed. */
206 if (!OCFS2_IS_VALID_DINODE(fe) ||
207 !(fe->i_flags & cpu_to_le32(OCFS2_VALID_FL))) {
6a1bd4a5 208 mlog(0, "Invalid dinode: i_ino=%lu, i_blkno=%llu, "
ccd979bd 209 "signature = %.*s, flags = 0x%x\n",
b0697053
MF
210 inode->i_ino,
211 (unsigned long long)le64_to_cpu(fe->i_blkno), 7,
ccd979bd
MF
212 fe->i_signature, le32_to_cpu(fe->i_flags));
213 goto bail;
214 }
215
216 if (le32_to_cpu(fe->i_fs_generation) != osb->fs_generation) {
217 mlog(ML_ERROR, "file entry generation does not match "
218 "superblock! osb->fs_generation=%x, "
219 "fe->i_fs_generation=%x\n",
220 osb->fs_generation, le32_to_cpu(fe->i_fs_generation));
221 goto bail;
222 }
223
224 inode->i_version = 1;
225 inode->i_generation = le32_to_cpu(fe->i_generation);
226 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
227 inode->i_mode = le16_to_cpu(fe->i_mode);
228 inode->i_uid = le32_to_cpu(fe->i_uid);
229 inode->i_gid = le32_to_cpu(fe->i_gid);
ccd979bd
MF
230
231 /* Fast symlinks will have i_size but no allocated clusters. */
232 if (S_ISLNK(inode->i_mode) && !fe->i_clusters)
233 inode->i_blocks = 0;
234 else
235 inode->i_blocks =
236 ocfs2_align_bytes_to_sectors(le64_to_cpu(fe->i_size));
237 inode->i_mapping->a_ops = &ocfs2_aops;
ccd979bd
MF
238 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
239 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
240 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
241 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
242 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
243 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
244
245 if (OCFS2_I(inode)->ip_blkno != le64_to_cpu(fe->i_blkno))
246 mlog(ML_ERROR,
b0697053
MF
247 "ip_blkno %llu != i_blkno %llu!\n",
248 (unsigned long long)OCFS2_I(inode)->ip_blkno,
249 (unsigned long long)fe->i_blkno);
ccd979bd
MF
250
251 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
ca4d147e 252 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
ccd979bd 253
ccd979bd
MF
254 inode->i_nlink = le16_to_cpu(fe->i_links_count);
255
24c19ef4
MF
256 if (fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL))
257 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_SYSTEM_FILE;
258
ccd979bd
MF
259 if (fe->i_flags & cpu_to_le32(OCFS2_LOCAL_ALLOC_FL)) {
260 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
261 mlog(0, "local alloc inode: i_ino=%lu\n", inode->i_ino);
262 } else if (fe->i_flags & cpu_to_le32(OCFS2_BITMAP_FL)) {
263 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_BITMAP;
264 } else if (fe->i_flags & cpu_to_le32(OCFS2_SUPER_BLOCK_FL)) {
265 mlog(0, "superblock inode: i_ino=%lu\n", inode->i_ino);
266 /* we can't actually hit this as read_inode can't
267 * handle superblocks today ;-) */
268 BUG();
269 }
270
271 switch (inode->i_mode & S_IFMT) {
272 case S_IFREG:
273 inode->i_fop = &ocfs2_fops;
274 inode->i_op = &ocfs2_file_iops;
275 i_size_write(inode, le64_to_cpu(fe->i_size));
276 break;
277 case S_IFDIR:
278 inode->i_op = &ocfs2_dir_iops;
279 inode->i_fop = &ocfs2_dops;
280 i_size_write(inode, le64_to_cpu(fe->i_size));
281 break;
282 case S_IFLNK:
283 if (ocfs2_inode_is_fast_symlink(inode))
284 inode->i_op = &ocfs2_fast_symlink_inode_operations;
285 else
286 inode->i_op = &ocfs2_symlink_inode_operations;
287 i_size_write(inode, le64_to_cpu(fe->i_size));
288 break;
289 default:
290 inode->i_op = &ocfs2_special_file_iops;
291 init_special_inode(inode, inode->i_mode,
292 inode->i_rdev);
293 break;
294 }
295
24c19ef4
MF
296 if (create_ino) {
297 inode->i_ino = ino_from_blkno(inode->i_sb,
298 le64_to_cpu(fe->i_blkno));
299
300 /*
301 * If we ever want to create system files from kernel,
302 * the generation argument to
303 * ocfs2_inode_lock_res_init() will have to change.
304 */
305 BUG_ON(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL));
306
307 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
308 OCFS2_LOCK_TYPE_META, 0, inode);
50008630
TY
309
310 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
311 OCFS2_LOCK_TYPE_OPEN, 0, inode);
24c19ef4
MF
312 }
313
ccd979bd 314 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_rw_lockres,
24c19ef4
MF
315 OCFS2_LOCK_TYPE_RW, inode->i_generation,
316 inode);
317
ccd979bd 318 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_data_lockres,
24c19ef4
MF
319 OCFS2_LOCK_TYPE_DATA, inode->i_generation,
320 inode);
ccd979bd 321
ca4d147e 322 ocfs2_set_inode_flags(inode);
ca4d147e 323
ccd979bd
MF
324 status = 0;
325bail:
326 mlog_exit(status);
327 return status;
328}
329
330static int ocfs2_read_locked_inode(struct inode *inode,
331 struct ocfs2_find_inode_args *args)
332{
333 struct super_block *sb;
334 struct ocfs2_super *osb;
335 struct ocfs2_dinode *fe;
336 struct buffer_head *bh = NULL;
24c19ef4
MF
337 int status, can_lock;
338 u32 generation = 0;
ccd979bd
MF
339
340 mlog_entry("(0x%p, 0x%p)\n", inode, args);
341
342 status = -EINVAL;
343 if (inode == NULL || inode->i_sb == NULL) {
344 mlog(ML_ERROR, "bad inode\n");
24c19ef4 345 return status;
ccd979bd
MF
346 }
347 sb = inode->i_sb;
348 osb = OCFS2_SB(sb);
349
350 if (!args) {
351 mlog(ML_ERROR, "bad inode args\n");
352 make_bad_inode(inode);
24c19ef4
MF
353 return status;
354 }
355
356 /*
357 * To improve performance of cold-cache inode stats, we take
358 * the cluster lock here if possible.
359 *
360 * Generally, OCFS2 never trusts the contents of an inode
361 * unless it's holding a cluster lock, so taking it here isn't
362 * a correctness issue as much as it is a performance
363 * improvement.
364 *
365 * There are three times when taking the lock is not a good idea:
366 *
367 * 1) During startup, before we have initialized the DLM.
368 *
369 * 2) If we are reading certain system files which never get
370 * cluster locks (local alloc, truncate log).
371 *
372 * 3) If the process doing the iget() is responsible for
373 * orphan dir recovery. We're holding the orphan dir lock and
374 * can get into a deadlock with another process on another
375 * node in ->delete_inode().
376 *
377 * #1 and #2 can be simply solved by never taking the lock
378 * here for system files (which are the only type we read
379 * during mount). It's a heavier approach, but our main
380 * concern is user-accesible files anyway.
381 *
382 * #3 works itself out because we'll eventually take the
383 * cluster lock before trusting anything anyway.
384 */
385 can_lock = !(args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
50008630 386 && !(args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY)
c271c5c2 387 && !ocfs2_mount_local(osb);
24c19ef4
MF
388
389 /*
390 * To maintain backwards compatibility with older versions of
391 * ocfs2-tools, we still store the generation value for system
392 * files. The only ones that actually matter to userspace are
393 * the journals, but it's easier and inexpensive to just flag
394 * all system files similarly.
395 */
396 if (args->fi_flags & OCFS2_FI_FLAG_SYSFILE)
397 generation = osb->fs_generation;
398
399 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_meta_lockres,
400 OCFS2_LOCK_TYPE_META,
401 generation, inode);
402
50008630
TY
403 ocfs2_inode_lock_res_init(&OCFS2_I(inode)->ip_open_lockres,
404 OCFS2_LOCK_TYPE_OPEN,
405 0, inode);
406
24c19ef4 407 if (can_lock) {
50008630
TY
408 status = ocfs2_open_lock(inode);
409 if (status) {
410 make_bad_inode(inode);
411 mlog_errno(status);
412 return status;
413 }
4bcec184 414 status = ocfs2_meta_lock(inode, NULL, 0);
24c19ef4
MF
415 if (status) {
416 make_bad_inode(inode);
417 mlog_errno(status);
418 return status;
419 }
ccd979bd
MF
420 }
421
50008630
TY
422 if (args->fi_flags & OCFS2_FI_FLAG_ORPHAN_RECOVERY) {
423 status = ocfs2_try_open_lock(inode, 0);
424 if (status) {
425 make_bad_inode(inode);
426 return status;
427 }
428 }
429
24c19ef4
MF
430 status = ocfs2_read_block(osb, args->fi_blkno, &bh, 0,
431 can_lock ? inode : NULL);
ccd979bd
MF
432 if (status < 0) {
433 mlog_errno(status);
ccd979bd
MF
434 goto bail;
435 }
436
24c19ef4 437 status = -EINVAL;
ccd979bd
MF
438 fe = (struct ocfs2_dinode *) bh->b_data;
439 if (!OCFS2_IS_VALID_DINODE(fe)) {
b0697053
MF
440 mlog(ML_ERROR, "Invalid dinode #%llu: signature = %.*s\n",
441 (unsigned long long)fe->i_blkno, 7, fe->i_signature);
ccd979bd
MF
442 goto bail;
443 }
444
24c19ef4
MF
445 /*
446 * This is a code bug. Right now the caller needs to
447 * understand whether it is asking for a system file inode or
448 * not so the proper lock names can be built.
449 */
450 mlog_bug_on_msg(!!(fe->i_flags & cpu_to_le32(OCFS2_SYSTEM_FL)) !=
451 !!(args->fi_flags & OCFS2_FI_FLAG_SYSFILE),
452 "Inode %llu: system file state is ambigous\n",
453 (unsigned long long)args->fi_blkno);
ccd979bd
MF
454
455 if (S_ISCHR(le16_to_cpu(fe->i_mode)) ||
456 S_ISBLK(le16_to_cpu(fe->i_mode)))
457 inode->i_rdev = huge_decode_dev(le64_to_cpu(fe->id1.dev1.i_rdev));
458
6a1bd4a5 459 if (ocfs2_populate_inode(inode, fe, 0) < 0)
ccd979bd 460 goto bail;
ccd979bd
MF
461
462 BUG_ON(args->fi_blkno != le64_to_cpu(fe->i_blkno));
463
ccd979bd
MF
464 status = 0;
465
466bail:
24c19ef4
MF
467 if (can_lock)
468 ocfs2_meta_unlock(inode, 0);
469
470 if (status < 0)
471 make_bad_inode(inode);
472
ccd979bd
MF
473 if (args && bh)
474 brelse(bh);
475
476 mlog_exit(status);
477 return status;
478}
479
480void ocfs2_sync_blockdev(struct super_block *sb)
481{
482 sync_blockdev(sb->s_bdev);
483}
484
485static int ocfs2_truncate_for_delete(struct ocfs2_super *osb,
486 struct inode *inode,
487 struct buffer_head *fe_bh)
488{
489 int status = 0;
1fabe148 490 handle_t *handle = NULL;
ccd979bd
MF
491 struct ocfs2_truncate_context *tc = NULL;
492 struct ocfs2_dinode *fe;
493
494 mlog_entry_void();
495
496 fe = (struct ocfs2_dinode *) fe_bh->b_data;
497
498 /* zero allocation, zero truncate :) */
499 if (!fe->i_clusters)
500 goto bail;
501
65eff9cc 502 handle = ocfs2_start_trans(osb, OCFS2_INODE_UPDATE_CREDITS);
ccd979bd
MF
503 if (IS_ERR(handle)) {
504 status = PTR_ERR(handle);
505 handle = NULL;
506 mlog_errno(status);
507 goto bail;
508 }
509
510 status = ocfs2_set_inode_size(handle, inode, fe_bh, 0ULL);
511 if (status < 0) {
512 mlog_errno(status);
513 goto bail;
514 }
515
02dc1af4 516 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
517 handle = NULL;
518
519 status = ocfs2_prepare_truncate(osb, inode, fe_bh, &tc);
520 if (status < 0) {
521 mlog_errno(status);
522 goto bail;
523 }
524
525 status = ocfs2_commit_truncate(osb, inode, fe_bh, tc);
526 if (status < 0) {
527 mlog_errno(status);
528 goto bail;
529 }
530bail:
531 if (handle)
02dc1af4 532 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
533
534 mlog_exit(status);
535 return status;
536}
537
538static int ocfs2_remove_inode(struct inode *inode,
539 struct buffer_head *di_bh,
540 struct inode *orphan_dir_inode,
541 struct buffer_head *orphan_dir_bh)
542{
543 int status;
544 struct inode *inode_alloc_inode = NULL;
545 struct buffer_head *inode_alloc_bh = NULL;
1fabe148 546 handle_t *handle;
ccd979bd
MF
547 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
548 struct ocfs2_dinode *di = (struct ocfs2_dinode *) di_bh->b_data;
549
550 inode_alloc_inode =
551 ocfs2_get_system_file_inode(osb, INODE_ALLOC_SYSTEM_INODE,
552 le16_to_cpu(di->i_suballoc_slot));
553 if (!inode_alloc_inode) {
554 status = -EEXIST;
555 mlog_errno(status);
556 goto bail;
557 }
558
1b1dcc1b 559 mutex_lock(&inode_alloc_inode->i_mutex);
4bcec184 560 status = ocfs2_meta_lock(inode_alloc_inode, &inode_alloc_bh, 1);
ccd979bd 561 if (status < 0) {
1b1dcc1b 562 mutex_unlock(&inode_alloc_inode->i_mutex);
ccd979bd
MF
563
564 mlog_errno(status);
565 goto bail;
566 }
567
65eff9cc 568 handle = ocfs2_start_trans(osb, OCFS2_DELETE_INODE_CREDITS);
ccd979bd
MF
569 if (IS_ERR(handle)) {
570 status = PTR_ERR(handle);
571 mlog_errno(status);
572 goto bail_unlock;
573 }
574
575 status = ocfs2_orphan_del(osb, handle, orphan_dir_inode, inode,
576 orphan_dir_bh);
577 if (status < 0) {
578 mlog_errno(status);
579 goto bail_commit;
580 }
581
582 /* set the inodes dtime */
583 status = ocfs2_journal_access(handle, inode, di_bh,
584 OCFS2_JOURNAL_ACCESS_WRITE);
585 if (status < 0) {
586 mlog_errno(status);
587 goto bail_commit;
588 }
589
590 di->i_dtime = cpu_to_le64(CURRENT_TIME.tv_sec);
591 le32_and_cpu(&di->i_flags, ~(OCFS2_VALID_FL | OCFS2_ORPHANED_FL));
592
593 status = ocfs2_journal_dirty(handle, di_bh);
594 if (status < 0) {
595 mlog_errno(status);
596 goto bail_commit;
597 }
598
599 ocfs2_remove_from_cache(inode, di_bh);
600
601 status = ocfs2_free_dinode(handle, inode_alloc_inode,
602 inode_alloc_bh, di);
603 if (status < 0)
604 mlog_errno(status);
605
606bail_commit:
02dc1af4 607 ocfs2_commit_trans(osb, handle);
ccd979bd
MF
608bail_unlock:
609 ocfs2_meta_unlock(inode_alloc_inode, 1);
1b1dcc1b 610 mutex_unlock(&inode_alloc_inode->i_mutex);
ccd979bd
MF
611 brelse(inode_alloc_bh);
612bail:
613 iput(inode_alloc_inode);
614
615 return status;
616}
617
b4df6ed8
MF
618/*
619 * Serialize with orphan dir recovery. If the process doing
620 * recovery on this orphan dir does an iget() with the dir
621 * i_mutex held, we'll deadlock here. Instead we detect this
622 * and exit early - recovery will wipe this inode for us.
623 */
624static int ocfs2_check_orphan_recovery_state(struct ocfs2_super *osb,
625 int slot)
626{
627 int ret = 0;
628
629 spin_lock(&osb->osb_lock);
630 if (ocfs2_node_map_test_bit(osb, &osb->osb_recovering_orphan_dirs, slot)) {
631 mlog(0, "Recovery is happening on orphan dir %d, will skip "
632 "this inode\n", slot);
633 ret = -EDEADLK;
634 goto out;
635 }
636 /* This signals to the orphan recovery process that it should
637 * wait for us to handle the wipe. */
638 osb->osb_orphan_wipes[slot]++;
639out:
640 spin_unlock(&osb->osb_lock);
641 return ret;
642}
643
644static void ocfs2_signal_wipe_completion(struct ocfs2_super *osb,
645 int slot)
646{
647 spin_lock(&osb->osb_lock);
648 osb->osb_orphan_wipes[slot]--;
649 spin_unlock(&osb->osb_lock);
650
651 wake_up(&osb->osb_wipe_event);
652}
653
ccd979bd
MF
654static int ocfs2_wipe_inode(struct inode *inode,
655 struct buffer_head *di_bh)
656{
657 int status, orphaned_slot;
658 struct inode *orphan_dir_inode = NULL;
659 struct buffer_head *orphan_dir_bh = NULL;
660 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
50008630 661 struct ocfs2_dinode *di;
ccd979bd 662
50008630
TY
663 di = (struct ocfs2_dinode *) di_bh->b_data;
664 orphaned_slot = le16_to_cpu(di->i_orphaned_slot);
b4df6ed8
MF
665
666 status = ocfs2_check_orphan_recovery_state(osb, orphaned_slot);
667 if (status)
668 return status;
669
ccd979bd
MF
670 orphan_dir_inode = ocfs2_get_system_file_inode(osb,
671 ORPHAN_DIR_SYSTEM_INODE,
672 orphaned_slot);
673 if (!orphan_dir_inode) {
674 status = -EEXIST;
675 mlog_errno(status);
676 goto bail;
677 }
678
679 /* Lock the orphan dir. The lock will be held for the entire
680 * delete_inode operation. We do this now to avoid races with
681 * recovery completion on other nodes. */
1b1dcc1b 682 mutex_lock(&orphan_dir_inode->i_mutex);
4bcec184 683 status = ocfs2_meta_lock(orphan_dir_inode, &orphan_dir_bh, 1);
ccd979bd 684 if (status < 0) {
1b1dcc1b 685 mutex_unlock(&orphan_dir_inode->i_mutex);
ccd979bd
MF
686
687 mlog_errno(status);
688 goto bail;
689 }
690
691 /* we do this while holding the orphan dir lock because we
692 * don't want recovery being run from another node to vote for
693 * an inode delete on us -- this will result in two nodes
694 * truncating the same file! */
695 status = ocfs2_truncate_for_delete(osb, inode, di_bh);
696 if (status < 0) {
697 mlog_errno(status);
698 goto bail_unlock_dir;
699 }
700
701 status = ocfs2_remove_inode(inode, di_bh, orphan_dir_inode,
702 orphan_dir_bh);
703 if (status < 0)
704 mlog_errno(status);
705
706bail_unlock_dir:
707 ocfs2_meta_unlock(orphan_dir_inode, 1);
1b1dcc1b 708 mutex_unlock(&orphan_dir_inode->i_mutex);
ccd979bd
MF
709 brelse(orphan_dir_bh);
710bail:
711 iput(orphan_dir_inode);
b4df6ed8 712 ocfs2_signal_wipe_completion(osb, orphaned_slot);
ccd979bd
MF
713
714 return status;
715}
716
717/* There is a series of simple checks that should be done before a
718 * vote is even considered. Encapsulate those in this function. */
719static int ocfs2_inode_is_valid_to_delete(struct inode *inode)
720{
721 int ret = 0;
722 struct ocfs2_inode_info *oi = OCFS2_I(inode);
723 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
724
725 /* We shouldn't be getting here for the root directory
726 * inode.. */
727 if (inode == osb->root_inode) {
728 mlog(ML_ERROR, "Skipping delete of root inode.\n");
729 goto bail;
730 }
731
732 /* If we're coming from process_vote we can't go into our own
733 * voting [hello, deadlock city!], so unforuntately we just
734 * have to skip deleting this guy. That's OK though because
735 * the node who's doing the actual deleting should handle it
736 * anyway. */
737 if (current == osb->vote_task) {
738 mlog(0, "Skipping delete of %lu because we're currently "
739 "in process_vote\n", inode->i_ino);
740 goto bail;
741 }
742
743 spin_lock(&oi->ip_lock);
744 /* OCFS2 *never* deletes system files. This should technically
745 * never get here as system file inodes should always have a
746 * positive link count. */
747 if (oi->ip_flags & OCFS2_INODE_SYSTEM_FILE) {
b0697053
MF
748 mlog(ML_ERROR, "Skipping delete of system file %llu\n",
749 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
750 goto bail_unlock;
751 }
752
753 /* If we have voted "yes" on the wipe of this inode for
754 * another node, it will be marked here so we can safely skip
755 * it. Recovery will cleanup any inodes we might inadvertantly
756 * skip here. */
757 if (oi->ip_flags & OCFS2_INODE_SKIP_DELETE) {
758 mlog(0, "Skipping delete of %lu because another node "
759 "has done this for us.\n", inode->i_ino);
760 goto bail_unlock;
761 }
762
763 ret = 1;
764bail_unlock:
765 spin_unlock(&oi->ip_lock);
766bail:
767 return ret;
768}
769
50008630
TY
770static int ocfs2_request_delete(struct inode *inode)
771{
772 int status = 0;
773 struct ocfs2_super *osb = OCFS2_SB(inode->i_sb);
774
775 if (ocfs2_inode_is_new(inode))
776 return 0;
777
778 if (ocfs2_node_map_is_only(osb, &osb->mounted_map,
779 osb->node_num))
780 return 0;
781 /*
782 * This is how ocfs2 determines whether an inode is still live
783 * within the cluster. Every node takes a shared read lock on
784 * the inode open lock in ocfs2_read_locked_inode(). When we
785 * get to ->delete_inode(), each node tries to convert it's
786 * lock to an exclusive. Trylocks are serialized by the inode
787 * meta data lock. If the upconvert suceeds, we know the inode
788 * is no longer live and can be deleted.
789 *
790 * Though we call this with the meta data lock held, the
791 * trylock keeps us from ABBA deadlock.
792 */
793 status = ocfs2_try_open_lock(inode, 1);
794 if (status < 0 && status != -EAGAIN)
795 mlog_errno(status);
796 return status;
797}
798
ccd979bd
MF
799/* Query the cluster to determine whether we should wipe an inode from
800 * disk or not.
801 *
802 * Requires the inode to have the cluster lock. */
803static int ocfs2_query_inode_wipe(struct inode *inode,
804 struct buffer_head *di_bh,
805 int *wipe)
806{
807 int status = 0;
808 struct ocfs2_inode_info *oi = OCFS2_I(inode);
809 struct ocfs2_dinode *di;
810
811 *wipe = 0;
812
813 /* While we were waiting for the cluster lock in
814 * ocfs2_delete_inode, another node might have asked to delete
815 * the inode. Recheck our flags to catch this. */
816 if (!ocfs2_inode_is_valid_to_delete(inode)) {
b0697053
MF
817 mlog(0, "Skipping delete of %llu because flags changed\n",
818 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
819 goto bail;
820 }
821
822 /* Now that we have an up to date inode, we can double check
823 * the link count. */
824 if (inode->i_nlink) {
b0697053
MF
825 mlog(0, "Skipping delete of %llu because nlink = %u\n",
826 (unsigned long long)oi->ip_blkno, inode->i_nlink);
ccd979bd
MF
827 goto bail;
828 }
829
830 /* Do some basic inode verification... */
831 di = (struct ocfs2_dinode *) di_bh->b_data;
832 if (!(di->i_flags & cpu_to_le32(OCFS2_ORPHANED_FL))) {
833 /* for lack of a better error? */
834 status = -EEXIST;
835 mlog(ML_ERROR,
b0697053 836 "Inode %llu (on-disk %llu) not orphaned! "
ccd979bd 837 "Disk flags 0x%x, inode flags 0x%x\n",
b0697053
MF
838 (unsigned long long)oi->ip_blkno,
839 (unsigned long long)di->i_blkno, di->i_flags,
840 oi->ip_flags);
ccd979bd
MF
841 goto bail;
842 }
843
844 /* has someone already deleted us?! baaad... */
845 if (di->i_dtime) {
846 status = -EEXIST;
847 mlog_errno(status);
848 goto bail;
849 }
850
50008630
TY
851 status = ocfs2_request_delete(inode);
852 /* -EAGAIN means that other nodes are still using the
ccd979bd
MF
853 * inode. We're done here though, so avoid doing anything on
854 * disk and let them worry about deleting it. */
50008630 855 if (status == -EAGAIN) {
ccd979bd 856 status = 0;
b0697053
MF
857 mlog(0, "Skipping delete of %llu because it is in use on"
858 "other nodes\n", (unsigned long long)oi->ip_blkno);
ccd979bd
MF
859 goto bail;
860 }
861 if (status < 0) {
862 mlog_errno(status);
863 goto bail;
864 }
865
50008630
TY
866 *wipe = 1;
867 mlog(0, "Inode %llu is ok to wipe from orphan dir %u\n",
868 (unsigned long long)oi->ip_blkno,
869 le16_to_cpu(di->i_orphaned_slot));
ccd979bd
MF
870
871bail:
872 return status;
873}
874
875/* Support function for ocfs2_delete_inode. Will help us keep the
876 * inode data in a consistent state for clear_inode. Always truncates
877 * pages, optionally sync's them first. */
878static void ocfs2_cleanup_delete_inode(struct inode *inode,
879 int sync_data)
880{
b0697053
MF
881 mlog(0, "Cleanup inode %llu, sync = %d\n",
882 (unsigned long long)OCFS2_I(inode)->ip_blkno, sync_data);
ccd979bd
MF
883 if (sync_data)
884 write_inode_now(inode, 1);
885 truncate_inode_pages(&inode->i_data, 0);
886}
887
888void ocfs2_delete_inode(struct inode *inode)
889{
890 int wipe, status;
891 sigset_t blocked, oldset;
892 struct buffer_head *di_bh = NULL;
893
894 mlog_entry("(inode->i_ino = %lu)\n", inode->i_ino);
895
896 if (is_bad_inode(inode)) {
897 mlog(0, "Skipping delete of bad inode\n");
898 goto bail;
899 }
900
901 if (!ocfs2_inode_is_valid_to_delete(inode)) {
902 /* It's probably not necessary to truncate_inode_pages
903 * here but we do it for safety anyway (it will most
904 * likely be a no-op anyway) */
905 ocfs2_cleanup_delete_inode(inode, 0);
906 goto bail;
907 }
908
909 /* We want to block signals in delete_inode as the lock and
910 * messaging paths may return us -ERESTARTSYS. Which would
911 * cause us to exit early, resulting in inodes being orphaned
912 * forever. */
913 sigfillset(&blocked);
914 status = sigprocmask(SIG_BLOCK, &blocked, &oldset);
915 if (status < 0) {
916 mlog_errno(status);
917 ocfs2_cleanup_delete_inode(inode, 1);
918 goto bail;
919 }
920
921 /* Lock down the inode. This gives us an up to date view of
922 * it's metadata (for verification), and allows us to
923 * serialize delete_inode votes.
924 *
925 * Even though we might be doing a truncate, we don't take the
926 * allocation lock here as it won't be needed - nobody will
927 * have the file open.
928 */
4bcec184 929 status = ocfs2_meta_lock(inode, &di_bh, 1);
ccd979bd
MF
930 if (status < 0) {
931 if (status != -ENOENT)
932 mlog_errno(status);
933 ocfs2_cleanup_delete_inode(inode, 0);
934 goto bail_unblock;
935 }
936
937 /* Query the cluster. This will be the final decision made
938 * before we go ahead and wipe the inode. */
939 status = ocfs2_query_inode_wipe(inode, di_bh, &wipe);
940 if (!wipe || status < 0) {
941 /* Error and inode busy vote both mean we won't be
942 * removing the inode, so they take almost the same
943 * path. */
944 if (status < 0)
945 mlog_errno(status);
946
947 /* Someone in the cluster has voted to not wipe this
948 * inode, or it was never completely orphaned. Write
949 * out the pages and exit now. */
950 ocfs2_cleanup_delete_inode(inode, 1);
951 goto bail_unlock_inode;
952 }
953
954 ocfs2_cleanup_delete_inode(inode, 0);
955
956 status = ocfs2_wipe_inode(inode, di_bh);
957 if (status < 0) {
b4df6ed8
MF
958 if (status != -EDEADLK)
959 mlog_errno(status);
ccd979bd
MF
960 goto bail_unlock_inode;
961 }
962
24c19ef4
MF
963 /*
964 * Mark the inode as successfully deleted.
965 *
966 * This is important for ocfs2_clear_inode() as it will check
967 * this flag and skip any checkpointing work
968 *
969 * ocfs2_stuff_meta_lvb() also uses this flag to invalidate
970 * the LVB for other nodes.
971 */
ccd979bd
MF
972 OCFS2_I(inode)->ip_flags |= OCFS2_INODE_DELETED;
973
974bail_unlock_inode:
975 ocfs2_meta_unlock(inode, 1);
976 brelse(di_bh);
977bail_unblock:
978 status = sigprocmask(SIG_SETMASK, &oldset, NULL);
979 if (status < 0)
980 mlog_errno(status);
981bail:
982 clear_inode(inode);
983 mlog_exit_void();
984}
985
986void ocfs2_clear_inode(struct inode *inode)
987{
988 int status;
989 struct ocfs2_inode_info *oi = OCFS2_I(inode);
990
991 mlog_entry_void();
992
993 if (!inode)
994 goto bail;
995
b0697053
MF
996 mlog(0, "Clearing inode: %llu, nlink = %u\n",
997 (unsigned long long)OCFS2_I(inode)->ip_blkno, inode->i_nlink);
ccd979bd
MF
998
999 mlog_bug_on_msg(OCFS2_SB(inode->i_sb) == NULL,
1000 "Inode=%lu\n", inode->i_ino);
1001
50008630
TY
1002 /* For remove delete_inode vote, we hold open lock before,
1003 * now it is time to unlock PR and EX open locks. */
1004 ocfs2_open_unlock(inode);
1005
ccd979bd
MF
1006 /* Do these before all the other work so that we don't bounce
1007 * the vote thread while waiting to destroy the locks. */
1008 ocfs2_mark_lockres_freeing(&oi->ip_rw_lockres);
1009 ocfs2_mark_lockres_freeing(&oi->ip_meta_lockres);
1010 ocfs2_mark_lockres_freeing(&oi->ip_data_lockres);
50008630 1011 ocfs2_mark_lockres_freeing(&oi->ip_open_lockres);
ccd979bd
MF
1012
1013 /* We very well may get a clear_inode before all an inodes
1014 * metadata has hit disk. Of course, we can't drop any cluster
1015 * locks until the journal has finished with it. The only
1016 * exception here are successfully wiped inodes - their
1017 * metadata can now be considered to be part of the system
1018 * inodes from which it came. */
1019 if (!(OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED))
1020 ocfs2_checkpoint_inode(inode);
1021
1022 mlog_bug_on_msg(!list_empty(&oi->ip_io_markers),
b0697053
MF
1023 "Clear inode of %llu, inode has io markers\n",
1024 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1025
1026 ocfs2_extent_map_drop(inode, 0);
1027 ocfs2_extent_map_init(inode);
1028
1029 status = ocfs2_drop_inode_locks(inode);
1030 if (status < 0)
1031 mlog_errno(status);
1032
1033 ocfs2_lock_res_free(&oi->ip_rw_lockres);
1034 ocfs2_lock_res_free(&oi->ip_meta_lockres);
1035 ocfs2_lock_res_free(&oi->ip_data_lockres);
50008630 1036 ocfs2_lock_res_free(&oi->ip_open_lockres);
ccd979bd
MF
1037
1038 ocfs2_metadata_cache_purge(inode);
1039
1040 mlog_bug_on_msg(oi->ip_metadata_cache.ci_num_cached,
b0697053
MF
1041 "Clear inode of %llu, inode has %u cache items\n",
1042 (unsigned long long)oi->ip_blkno, oi->ip_metadata_cache.ci_num_cached);
ccd979bd
MF
1043
1044 mlog_bug_on_msg(!(oi->ip_flags & OCFS2_INODE_CACHE_INLINE),
b0697053
MF
1045 "Clear inode of %llu, inode has a bad flag\n",
1046 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1047
1048 mlog_bug_on_msg(spin_is_locked(&oi->ip_lock),
b0697053
MF
1049 "Clear inode of %llu, inode is locked\n",
1050 (unsigned long long)oi->ip_blkno);
ccd979bd 1051
251b6ecc 1052 mlog_bug_on_msg(!mutex_trylock(&oi->ip_io_mutex),
b0697053
MF
1053 "Clear inode of %llu, io_mutex is locked\n",
1054 (unsigned long long)oi->ip_blkno);
251b6ecc 1055 mutex_unlock(&oi->ip_io_mutex);
ccd979bd
MF
1056
1057 /*
1058 * down_trylock() returns 0, down_write_trylock() returns 1
1059 * kernel 1, world 0
1060 */
1061 mlog_bug_on_msg(!down_write_trylock(&oi->ip_alloc_sem),
b0697053
MF
1062 "Clear inode of %llu, alloc_sem is locked\n",
1063 (unsigned long long)oi->ip_blkno);
ccd979bd
MF
1064 up_write(&oi->ip_alloc_sem);
1065
1066 mlog_bug_on_msg(oi->ip_open_count,
b0697053
MF
1067 "Clear inode of %llu has open count %d\n",
1068 (unsigned long long)oi->ip_blkno, oi->ip_open_count);
ccd979bd
MF
1069
1070 /* Clear all other flags. */
1071 oi->ip_flags = OCFS2_INODE_CACHE_INLINE;
1072 oi->ip_created_trans = 0;
1073 oi->ip_last_trans = 0;
1074 oi->ip_dir_start_lookup = 0;
1075 oi->ip_blkno = 0ULL;
1076
1077bail:
1078 mlog_exit_void();
1079}
1080
1081/* Called under inode_lock, with no more references on the
1082 * struct inode, so it's safe here to check the flags field
1083 * and to manipulate i_nlink without any other locks. */
1084void ocfs2_drop_inode(struct inode *inode)
1085{
1086 struct ocfs2_inode_info *oi = OCFS2_I(inode);
1087
1088 mlog_entry_void();
1089
b0697053
MF
1090 mlog(0, "Drop inode %llu, nlink = %u, ip_flags = 0x%x\n",
1091 (unsigned long long)oi->ip_blkno, inode->i_nlink, oi->ip_flags);
ccd979bd 1092
379dfe9d
MF
1093 if (oi->ip_flags & OCFS2_INODE_MAYBE_ORPHANED)
1094 generic_delete_inode(inode);
1095 else
1096 generic_drop_inode(inode);
ccd979bd
MF
1097
1098 mlog_exit_void();
1099}
1100
1101/*
1102 * TODO: this should probably be merged into ocfs2_get_block
1103 *
1104 * However, you now need to pay attention to the cont_prepare_write()
1105 * stuff in ocfs2_get_block (that is, ocfs2_get_block pretty much
1106 * expects never to extend).
1107 */
1108struct buffer_head *ocfs2_bread(struct inode *inode,
1109 int block, int *err, int reada)
1110{
1111 struct buffer_head *bh = NULL;
1112 int tmperr;
1113 u64 p_blkno;
1114 int readflags = OCFS2_BH_CACHED;
1115
ccd979bd
MF
1116 if (reada)
1117 readflags |= OCFS2_BH_READAHEAD;
ccd979bd
MF
1118
1119 if (((u64)block << inode->i_sb->s_blocksize_bits) >=
1120 i_size_read(inode)) {
1121 BUG_ON(!reada);
1122 return NULL;
1123 }
1124
1125 tmperr = ocfs2_extent_map_get_blocks(inode, block, 1,
1126 &p_blkno, NULL);
1127 if (tmperr < 0) {
1128 mlog_errno(tmperr);
1129 goto fail;
1130 }
1131
1132 tmperr = ocfs2_read_block(OCFS2_SB(inode->i_sb), p_blkno, &bh,
1133 readflags, inode);
1134 if (tmperr < 0)
1135 goto fail;
1136
1137 tmperr = 0;
1138
1139 *err = 0;
1140 return bh;
1141
1142fail:
1143 if (bh) {
1144 brelse(bh);
1145 bh = NULL;
1146 }
1147 *err = -EIO;
1148 return NULL;
1149}
1150
1151/*
1152 * This is called from our getattr.
1153 */
1154int ocfs2_inode_revalidate(struct dentry *dentry)
1155{
1156 struct inode *inode = dentry->d_inode;
1157 int status = 0;
1158
b0697053
MF
1159 mlog_entry("(inode = 0x%p, ino = %llu)\n", inode,
1160 inode ? (unsigned long long)OCFS2_I(inode)->ip_blkno : 0ULL);
ccd979bd
MF
1161
1162 if (!inode) {
1163 mlog(0, "eep, no inode!\n");
1164 status = -ENOENT;
1165 goto bail;
1166 }
1167
1168 spin_lock(&OCFS2_I(inode)->ip_lock);
1169 if (OCFS2_I(inode)->ip_flags & OCFS2_INODE_DELETED) {
1170 spin_unlock(&OCFS2_I(inode)->ip_lock);
1171 mlog(0, "inode deleted!\n");
1172 status = -ENOENT;
1173 goto bail;
1174 }
1175 spin_unlock(&OCFS2_I(inode)->ip_lock);
1176
1177 /* Let ocfs2_meta_lock do the work of updating our struct
1178 * inode for us. */
4bcec184 1179 status = ocfs2_meta_lock(inode, NULL, 0);
ccd979bd
MF
1180 if (status < 0) {
1181 if (status != -ENOENT)
1182 mlog_errno(status);
1183 goto bail;
1184 }
1185 ocfs2_meta_unlock(inode, 0);
1186bail:
1187 mlog_exit(status);
1188
1189 return status;
1190}
1191
1192/*
1193 * Updates a disk inode from a
1194 * struct inode.
1195 * Only takes ip_lock.
1196 */
1fabe148 1197int ocfs2_mark_inode_dirty(handle_t *handle,
ccd979bd
MF
1198 struct inode *inode,
1199 struct buffer_head *bh)
1200{
1201 int status;
1202 struct ocfs2_dinode *fe = (struct ocfs2_dinode *) bh->b_data;
1203
b0697053
MF
1204 mlog_entry("(inode %llu)\n",
1205 (unsigned long long)OCFS2_I(inode)->ip_blkno);
ccd979bd
MF
1206
1207 status = ocfs2_journal_access(handle, inode, bh,
1208 OCFS2_JOURNAL_ACCESS_WRITE);
1209 if (status < 0) {
1210 mlog_errno(status);
1211 goto leave;
1212 }
1213
1214 spin_lock(&OCFS2_I(inode)->ip_lock);
1215 fe->i_clusters = cpu_to_le32(OCFS2_I(inode)->ip_clusters);
ca4d147e 1216 fe->i_attr = cpu_to_le32(OCFS2_I(inode)->ip_attr);
ccd979bd
MF
1217 spin_unlock(&OCFS2_I(inode)->ip_lock);
1218
1219 fe->i_size = cpu_to_le64(i_size_read(inode));
1220 fe->i_links_count = cpu_to_le16(inode->i_nlink);
1221 fe->i_uid = cpu_to_le32(inode->i_uid);
1222 fe->i_gid = cpu_to_le32(inode->i_gid);
1223 fe->i_mode = cpu_to_le16(inode->i_mode);
1224 fe->i_atime = cpu_to_le64(inode->i_atime.tv_sec);
1225 fe->i_atime_nsec = cpu_to_le32(inode->i_atime.tv_nsec);
1226 fe->i_ctime = cpu_to_le64(inode->i_ctime.tv_sec);
1227 fe->i_ctime_nsec = cpu_to_le32(inode->i_ctime.tv_nsec);
1228 fe->i_mtime = cpu_to_le64(inode->i_mtime.tv_sec);
1229 fe->i_mtime_nsec = cpu_to_le32(inode->i_mtime.tv_nsec);
1230
1231 status = ocfs2_journal_dirty(handle, bh);
1232 if (status < 0)
1233 mlog_errno(status);
1234
1235 status = 0;
1236leave:
1237
1238 mlog_exit(status);
1239 return status;
1240}
1241
1242/*
1243 *
1244 * Updates a struct inode from a disk inode.
1245 * does no i/o, only takes ip_lock.
1246 */
1247void ocfs2_refresh_inode(struct inode *inode,
1248 struct ocfs2_dinode *fe)
1249{
ccd979bd
MF
1250 spin_lock(&OCFS2_I(inode)->ip_lock);
1251
1252 OCFS2_I(inode)->ip_clusters = le32_to_cpu(fe->i_clusters);
ca4d147e
HP
1253 OCFS2_I(inode)->ip_attr = le32_to_cpu(fe->i_attr);
1254 ocfs2_set_inode_flags(inode);
ccd979bd
MF
1255 i_size_write(inode, le64_to_cpu(fe->i_size));
1256 inode->i_nlink = le16_to_cpu(fe->i_links_count);
1257 inode->i_uid = le32_to_cpu(fe->i_uid);
1258 inode->i_gid = le32_to_cpu(fe->i_gid);
1259 inode->i_mode = le16_to_cpu(fe->i_mode);
ccd979bd
MF
1260 if (S_ISLNK(inode->i_mode) && le32_to_cpu(fe->i_clusters) == 0)
1261 inode->i_blocks = 0;
1262 else
1263 inode->i_blocks = ocfs2_align_bytes_to_sectors(i_size_read(inode));
1264 inode->i_atime.tv_sec = le64_to_cpu(fe->i_atime);
1265 inode->i_atime.tv_nsec = le32_to_cpu(fe->i_atime_nsec);
1266 inode->i_mtime.tv_sec = le64_to_cpu(fe->i_mtime);
1267 inode->i_mtime.tv_nsec = le32_to_cpu(fe->i_mtime_nsec);
1268 inode->i_ctime.tv_sec = le64_to_cpu(fe->i_ctime);
1269 inode->i_ctime.tv_nsec = le32_to_cpu(fe->i_ctime_nsec);
1270
1271 spin_unlock(&OCFS2_I(inode)->ip_lock);
1272}
This page took 0.345353 seconds and 5 git commands to generate.