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