1 /* -*- mode: c; c-basic-offset: 8; -*-
2 * vim: noexpandtab sw=8 ts=8 sts=0:
6 * Create and rename file, directory, symlinks
8 * Copyright (C) 2002, 2004 Oracle. All rights reserved.
10 * Portions of this code from linux/fs/ext3/dir.c
12 * Copyright (C) 1992, 1993, 1994, 1995
13 * Remy Card (card@masi.ibp.fr)
14 * Laboratoire MASI - Institut Blaise pascal
15 * Universite Pierre et Marie Curie (Paris VI)
19 * linux/fs/minix/dir.c
21 * Copyright (C) 1991, 1992 Linux Torvalds
23 * This program is free software; you can redistribute it and/or
24 * modify it under the terms of the GNU General Public
25 * License as published by the Free Software Foundation; either
26 * version 2 of the License, or (at your option) any later version.
28 * This program is distributed in the hope that it will be useful,
29 * but WITHOUT ANY WARRANTY; without even the implied warranty of
30 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
31 * General Public License for more details.
33 * You should have received a copy of the GNU General Public
34 * License along with this program; if not, write to the
35 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
36 * Boston, MA 021110-1307, USA.
40 #include <linux/types.h>
41 #include <linux/slab.h>
42 #include <linux/highmem.h>
44 #define MLOG_MASK_PREFIX ML_NAMEI
45 #include <cluster/masklog.h>
53 #include "extent_map.h"
65 #include "buffer_head_io.h"
67 static int ocfs2_mknod_locked(struct ocfs2_super
*osb
,
69 struct dentry
*dentry
, int mode
,
71 struct buffer_head
**new_fe_bh
,
72 struct buffer_head
*parent_fe_bh
,
74 struct inode
**ret_inode
,
75 struct ocfs2_alloc_context
*inode_ac
);
77 static int ocfs2_prepare_orphan_dir(struct ocfs2_super
*osb
,
78 struct inode
**ret_orphan_dir
,
81 struct buffer_head
**de_bh
);
83 static int ocfs2_orphan_add(struct ocfs2_super
*osb
,
86 struct ocfs2_dinode
*fe
,
88 struct buffer_head
*de_bh
,
89 struct inode
*orphan_dir_inode
);
91 static int ocfs2_create_symlink_data(struct ocfs2_super
*osb
,
96 /* An orphan dir name is an 8 byte value, printed as a hex string */
97 #define OCFS2_ORPHAN_NAMELEN ((int)(2 * sizeof(u64)))
99 static struct dentry
*ocfs2_lookup(struct inode
*dir
, struct dentry
*dentry
,
100 struct nameidata
*nd
)
104 struct inode
*inode
= NULL
;
106 struct ocfs2_inode_info
*oi
;
108 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir
, dentry
,
109 dentry
->d_name
.len
, dentry
->d_name
.name
);
111 if (dentry
->d_name
.len
> OCFS2_MAX_FILENAME_LEN
) {
112 ret
= ERR_PTR(-ENAMETOOLONG
);
116 mlog(0, "find name %.*s in directory %llu\n", dentry
->d_name
.len
,
117 dentry
->d_name
.name
, (unsigned long long)OCFS2_I(dir
)->ip_blkno
);
119 status
= ocfs2_inode_lock(dir
, NULL
, 0);
121 if (status
!= -ENOENT
)
123 ret
= ERR_PTR(status
);
127 status
= ocfs2_lookup_ino_from_name(dir
, dentry
->d_name
.name
,
128 dentry
->d_name
.len
, &blkno
);
132 inode
= ocfs2_iget(OCFS2_SB(dir
->i_sb
), blkno
, 0, 0);
134 ret
= ERR_PTR(-EACCES
);
139 /* Clear any orphaned state... If we were able to look up the
140 * inode from a directory, it certainly can't be orphaned. We
141 * might have the bad state from a node which intended to
142 * orphan this inode but crashed before it could commit the
144 spin_lock(&oi
->ip_lock
);
145 oi
->ip_flags
&= ~OCFS2_INODE_MAYBE_ORPHANED
;
146 spin_unlock(&oi
->ip_lock
);
149 dentry
->d_op
= &ocfs2_dentry_ops
;
150 ret
= d_splice_alias(inode
, dentry
);
154 * If d_splice_alias() finds a DCACHE_DISCONNECTED
155 * dentry, it will d_move() it on top of ourse. The
156 * return value will indicate this however, so in
157 * those cases, we switch them around for the locking
160 * NOTE: This dentry already has ->d_op set from
161 * ocfs2_get_parent() and ocfs2_get_dentry()
166 status
= ocfs2_dentry_attach_lock(dentry
, inode
,
167 OCFS2_I(dir
)->ip_blkno
);
170 ret
= ERR_PTR(status
);
176 /* Don't drop the cluster lock until *after* the d_add --
177 * unlink on another node will message us to remove that
178 * dentry under this lock so otherwise we can race this with
179 * the downconvert thread and have a stale dentry. */
180 ocfs2_inode_unlock(dir
, 0);
189 static int ocfs2_mknod(struct inode
*dir
,
190 struct dentry
*dentry
,
195 struct buffer_head
*parent_fe_bh
= NULL
;
196 handle_t
*handle
= NULL
;
197 struct ocfs2_super
*osb
;
198 struct ocfs2_dinode
*dirfe
;
199 struct buffer_head
*new_fe_bh
= NULL
;
200 struct buffer_head
*de_bh
= NULL
;
201 struct inode
*inode
= NULL
;
202 struct ocfs2_alloc_context
*inode_ac
= NULL
;
203 struct ocfs2_alloc_context
*data_ac
= NULL
;
205 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir
, dentry
, mode
,
206 (unsigned long)dev
, dentry
->d_name
.len
,
207 dentry
->d_name
.name
);
209 /* get our super block */
210 osb
= OCFS2_SB(dir
->i_sb
);
212 status
= ocfs2_inode_lock(dir
, &parent_fe_bh
, 1);
214 if (status
!= -ENOENT
)
219 if (S_ISDIR(mode
) && (dir
->i_nlink
>= OCFS2_LINK_MAX
)) {
224 dirfe
= (struct ocfs2_dinode
*) parent_fe_bh
->b_data
;
225 if (!dirfe
->i_links_count
) {
226 /* can't make a file in a deleted directory. */
231 status
= ocfs2_check_dir_for_entry(dir
, dentry
->d_name
.name
,
236 /* get a spot inside the dir. */
237 status
= ocfs2_prepare_dir_for_insert(osb
, dir
, parent_fe_bh
,
239 dentry
->d_name
.len
, &de_bh
);
245 /* reserve an inode spot */
246 status
= ocfs2_reserve_new_inode(osb
, &inode_ac
);
248 if (status
!= -ENOSPC
)
253 /* Reserve a cluster if creating an extent based directory. */
254 if (S_ISDIR(mode
) && !ocfs2_supports_inline_data(osb
)) {
255 status
= ocfs2_reserve_clusters(osb
, 1, &data_ac
);
257 if (status
!= -ENOSPC
)
263 handle
= ocfs2_start_trans(osb
, OCFS2_MKNOD_CREDITS
);
264 if (IS_ERR(handle
)) {
265 status
= PTR_ERR(handle
);
271 /* do the real work now. */
272 status
= ocfs2_mknod_locked(osb
, dir
, dentry
, mode
, dev
,
273 &new_fe_bh
, parent_fe_bh
, handle
,
281 status
= ocfs2_fill_new_dir(osb
, handle
, dir
, inode
,
288 status
= ocfs2_journal_access(handle
, dir
, parent_fe_bh
,
289 OCFS2_JOURNAL_ACCESS_WRITE
);
294 le16_add_cpu(&dirfe
->i_links_count
, 1);
295 status
= ocfs2_journal_dirty(handle
, parent_fe_bh
);
303 status
= ocfs2_add_entry(handle
, dentry
, inode
,
304 OCFS2_I(inode
)->ip_blkno
, parent_fe_bh
,
311 status
= ocfs2_dentry_attach_lock(dentry
, inode
,
312 OCFS2_I(dir
)->ip_blkno
);
318 insert_inode_hash(inode
);
319 dentry
->d_op
= &ocfs2_dentry_ops
;
320 d_instantiate(dentry
, inode
);
324 ocfs2_commit_trans(osb
, handle
);
326 ocfs2_inode_unlock(dir
, 1);
328 if (status
== -ENOSPC
)
329 mlog(0, "Disk is full\n");
333 brelse(parent_fe_bh
);
335 if ((status
< 0) && inode
)
339 ocfs2_free_alloc_context(inode_ac
);
342 ocfs2_free_alloc_context(data_ac
);
349 static int ocfs2_mknod_locked(struct ocfs2_super
*osb
,
351 struct dentry
*dentry
, int mode
,
353 struct buffer_head
**new_fe_bh
,
354 struct buffer_head
*parent_fe_bh
,
356 struct inode
**ret_inode
,
357 struct ocfs2_alloc_context
*inode_ac
)
360 struct ocfs2_dinode
*fe
= NULL
;
361 struct ocfs2_extent_list
*fel
;
364 struct inode
*inode
= NULL
;
366 mlog_entry("(0x%p, 0x%p, %d, %lu, '%.*s')\n", dir
, dentry
, mode
,
367 (unsigned long)dev
, dentry
->d_name
.len
,
368 dentry
->d_name
.name
);
373 status
= ocfs2_claim_new_inode(osb
, handle
, inode_ac
, &suballoc_bit
,
380 inode
= new_inode(dir
->i_sb
);
382 status
= PTR_ERR(inode
);
383 mlog(ML_ERROR
, "new_inode failed!\n");
387 /* populate as many fields early on as possible - many of
388 * these are used by the support functions here and in
390 inode
->i_ino
= ino_from_blkno(osb
->sb
, fe_blkno
);
391 OCFS2_I(inode
)->ip_blkno
= fe_blkno
;
396 inode
->i_mode
= mode
;
397 spin_lock(&osb
->osb_lock
);
398 inode
->i_generation
= osb
->s_next_generation
++;
399 spin_unlock(&osb
->osb_lock
);
401 *new_fe_bh
= sb_getblk(osb
->sb
, fe_blkno
);
407 ocfs2_set_new_buffer_uptodate(inode
, *new_fe_bh
);
409 status
= ocfs2_journal_access(handle
, inode
, *new_fe_bh
,
410 OCFS2_JOURNAL_ACCESS_CREATE
);
416 fe
= (struct ocfs2_dinode
*) (*new_fe_bh
)->b_data
;
417 memset(fe
, 0, osb
->sb
->s_blocksize
);
419 fe
->i_generation
= cpu_to_le32(inode
->i_generation
);
420 fe
->i_fs_generation
= cpu_to_le32(osb
->fs_generation
);
421 fe
->i_blkno
= cpu_to_le64(fe_blkno
);
422 fe
->i_suballoc_bit
= cpu_to_le16(suballoc_bit
);
423 fe
->i_suballoc_slot
= cpu_to_le16(inode_ac
->ac_alloc_slot
);
424 fe
->i_uid
= cpu_to_le32(current
->fsuid
);
425 if (dir
->i_mode
& S_ISGID
) {
426 fe
->i_gid
= cpu_to_le32(dir
->i_gid
);
430 fe
->i_gid
= cpu_to_le32(current
->fsgid
);
431 fe
->i_mode
= cpu_to_le16(mode
);
432 if (S_ISCHR(mode
) || S_ISBLK(mode
))
433 fe
->id1
.dev1
.i_rdev
= cpu_to_le64(huge_encode_dev(dev
));
435 fe
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
437 fe
->i_last_eb_blk
= 0;
438 strcpy(fe
->i_signature
, OCFS2_INODE_SIGNATURE
);
439 le32_add_cpu(&fe
->i_flags
, OCFS2_VALID_FL
);
440 fe
->i_atime
= fe
->i_ctime
= fe
->i_mtime
=
441 cpu_to_le64(CURRENT_TIME
.tv_sec
);
442 fe
->i_mtime_nsec
= fe
->i_ctime_nsec
= fe
->i_atime_nsec
=
443 cpu_to_le32(CURRENT_TIME
.tv_nsec
);
447 * If supported, directories start with inline data.
449 if (S_ISDIR(mode
) && ocfs2_supports_inline_data(osb
)) {
450 u16 feat
= le16_to_cpu(fe
->i_dyn_features
);
452 fe
->i_dyn_features
= cpu_to_le16(feat
| OCFS2_INLINE_DATA_FL
);
454 fe
->id2
.i_data
.id_count
= cpu_to_le16(ocfs2_max_inline_data(osb
->sb
));
456 fel
= &fe
->id2
.i_list
;
457 fel
->l_tree_depth
= 0;
458 fel
->l_next_free_rec
= 0;
459 fel
->l_count
= cpu_to_le16(ocfs2_extent_recs_per_inode(osb
->sb
));
462 status
= ocfs2_journal_dirty(handle
, *new_fe_bh
);
468 if (ocfs2_populate_inode(inode
, fe
, 1) < 0) {
469 mlog(ML_ERROR
, "populate inode failed! bh->b_blocknr=%llu, "
470 "i_blkno=%llu, i_ino=%lu\n",
471 (unsigned long long)(*new_fe_bh
)->b_blocknr
,
472 (unsigned long long)le64_to_cpu(fe
->i_blkno
),
477 ocfs2_inode_set_new(osb
, inode
);
478 if (!ocfs2_mount_local(osb
)) {
479 status
= ocfs2_create_new_inode_locks(inode
);
484 status
= 0; /* error in ocfs2_create_new_inode_locks is not
502 static int ocfs2_mkdir(struct inode
*dir
,
503 struct dentry
*dentry
,
508 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir
, dentry
, mode
,
509 dentry
->d_name
.len
, dentry
->d_name
.name
);
510 ret
= ocfs2_mknod(dir
, dentry
, mode
| S_IFDIR
, 0);
516 static int ocfs2_create(struct inode
*dir
,
517 struct dentry
*dentry
,
519 struct nameidata
*nd
)
523 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir
, dentry
, mode
,
524 dentry
->d_name
.len
, dentry
->d_name
.name
);
525 ret
= ocfs2_mknod(dir
, dentry
, mode
| S_IFREG
, 0);
531 static int ocfs2_link(struct dentry
*old_dentry
,
533 struct dentry
*dentry
)
536 struct inode
*inode
= old_dentry
->d_inode
;
538 struct buffer_head
*fe_bh
= NULL
;
539 struct buffer_head
*parent_fe_bh
= NULL
;
540 struct buffer_head
*de_bh
= NULL
;
541 struct ocfs2_dinode
*fe
= NULL
;
542 struct ocfs2_super
*osb
= OCFS2_SB(dir
->i_sb
);
544 mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode
->i_ino
,
545 old_dentry
->d_name
.len
, old_dentry
->d_name
.name
,
546 dentry
->d_name
.len
, dentry
->d_name
.name
);
548 if (S_ISDIR(inode
->i_mode
))
551 err
= ocfs2_inode_lock(dir
, &parent_fe_bh
, 1);
563 err
= ocfs2_check_dir_for_entry(dir
, dentry
->d_name
.name
,
568 err
= ocfs2_prepare_dir_for_insert(osb
, dir
, parent_fe_bh
,
570 dentry
->d_name
.len
, &de_bh
);
576 err
= ocfs2_inode_lock(inode
, &fe_bh
, 1);
583 fe
= (struct ocfs2_dinode
*) fe_bh
->b_data
;
584 if (le16_to_cpu(fe
->i_links_count
) >= OCFS2_LINK_MAX
) {
586 goto out_unlock_inode
;
589 handle
= ocfs2_start_trans(osb
, OCFS2_LINK_CREDITS
);
590 if (IS_ERR(handle
)) {
591 err
= PTR_ERR(handle
);
594 goto out_unlock_inode
;
597 err
= ocfs2_journal_access(handle
, inode
, fe_bh
,
598 OCFS2_JOURNAL_ACCESS_WRITE
);
605 inode
->i_ctime
= CURRENT_TIME
;
606 fe
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
607 fe
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
608 fe
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
610 err
= ocfs2_journal_dirty(handle
, fe_bh
);
612 le16_add_cpu(&fe
->i_links_count
, -1);
618 err
= ocfs2_add_entry(handle
, dentry
, inode
,
619 OCFS2_I(inode
)->ip_blkno
,
620 parent_fe_bh
, de_bh
);
622 le16_add_cpu(&fe
->i_links_count
, -1);
628 err
= ocfs2_dentry_attach_lock(dentry
, inode
, OCFS2_I(dir
)->ip_blkno
);
634 atomic_inc(&inode
->i_count
);
635 dentry
->d_op
= &ocfs2_dentry_ops
;
636 d_instantiate(dentry
, inode
);
639 ocfs2_commit_trans(osb
, handle
);
641 ocfs2_inode_unlock(inode
, 1);
644 ocfs2_inode_unlock(dir
, 1);
648 brelse(parent_fe_bh
);
656 * Takes and drops an exclusive lock on the given dentry. This will
657 * force other nodes to drop it.
659 static int ocfs2_remote_dentry_delete(struct dentry
*dentry
)
663 ret
= ocfs2_dentry_lock(dentry
, 1);
667 ocfs2_dentry_unlock(dentry
, 1);
672 static inline int inode_is_unlinkable(struct inode
*inode
)
674 if (S_ISDIR(inode
->i_mode
)) {
675 if (inode
->i_nlink
== 2)
680 if (inode
->i_nlink
== 1)
685 static int ocfs2_unlink(struct inode
*dir
,
686 struct dentry
*dentry
)
689 int child_locked
= 0;
690 struct inode
*inode
= dentry
->d_inode
;
691 struct inode
*orphan_dir
= NULL
;
692 struct ocfs2_super
*osb
= OCFS2_SB(dir
->i_sb
);
694 struct ocfs2_dinode
*fe
= NULL
;
695 struct buffer_head
*fe_bh
= NULL
;
696 struct buffer_head
*parent_node_bh
= NULL
;
697 handle_t
*handle
= NULL
;
698 struct ocfs2_dir_entry
*dirent
= NULL
;
699 struct buffer_head
*dirent_bh
= NULL
;
700 char orphan_name
[OCFS2_ORPHAN_NAMELEN
+ 1];
701 struct buffer_head
*orphan_entry_bh
= NULL
;
703 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir
, dentry
,
704 dentry
->d_name
.len
, dentry
->d_name
.name
);
706 BUG_ON(dentry
->d_parent
->d_inode
!= dir
);
708 mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
710 if (inode
== osb
->root_inode
) {
711 mlog(0, "Cannot delete the root directory\n");
715 status
= ocfs2_inode_lock(dir
, &parent_node_bh
, 1);
717 if (status
!= -ENOENT
)
722 status
= ocfs2_find_files_on_disk(dentry
->d_name
.name
,
723 dentry
->d_name
.len
, &blkno
,
724 dir
, &dirent_bh
, &dirent
);
726 if (status
!= -ENOENT
)
731 if (OCFS2_I(inode
)->ip_blkno
!= blkno
) {
734 mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n",
735 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
736 (unsigned long long)blkno
, OCFS2_I(inode
)->ip_flags
);
740 status
= ocfs2_inode_lock(inode
, &fe_bh
, 1);
742 if (status
!= -ENOENT
)
748 if (S_ISDIR(inode
->i_mode
)) {
749 if (!ocfs2_empty_dir(inode
)) {
752 } else if (inode
->i_nlink
!= 2) {
758 status
= ocfs2_remote_dentry_delete(dentry
);
760 /* This remote delete should succeed under all normal
766 if (inode_is_unlinkable(inode
)) {
767 status
= ocfs2_prepare_orphan_dir(osb
, &orphan_dir
, inode
,
776 handle
= ocfs2_start_trans(osb
, OCFS2_UNLINK_CREDITS
);
777 if (IS_ERR(handle
)) {
778 status
= PTR_ERR(handle
);
784 status
= ocfs2_journal_access(handle
, inode
, fe_bh
,
785 OCFS2_JOURNAL_ACCESS_WRITE
);
791 fe
= (struct ocfs2_dinode
*) fe_bh
->b_data
;
793 if (inode_is_unlinkable(inode
)) {
794 status
= ocfs2_orphan_add(osb
, handle
, inode
, fe
, orphan_name
,
795 orphan_entry_bh
, orphan_dir
);
802 /* delete the name from the parent dir */
803 status
= ocfs2_delete_entry(handle
, dir
, dirent
, dirent_bh
);
809 if (S_ISDIR(inode
->i_mode
))
812 fe
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
814 status
= ocfs2_journal_dirty(handle
, fe_bh
);
820 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME
;
821 if (S_ISDIR(inode
->i_mode
))
824 status
= ocfs2_mark_inode_dirty(handle
, dir
, parent_node_bh
);
827 if (S_ISDIR(inode
->i_mode
))
833 ocfs2_commit_trans(osb
, handle
);
836 ocfs2_inode_unlock(inode
, 1);
838 ocfs2_inode_unlock(dir
, 1);
841 /* This was locked for us in ocfs2_prepare_orphan_dir() */
842 ocfs2_inode_unlock(orphan_dir
, 1);
843 mutex_unlock(&orphan_dir
->i_mutex
);
849 brelse(parent_node_bh
);
850 brelse(orphan_entry_bh
);
858 * The only place this should be used is rename!
859 * if they have the same id, then the 1st one is the only one locked.
861 static int ocfs2_double_lock(struct ocfs2_super
*osb
,
862 struct buffer_head
**bh1
,
863 struct inode
*inode1
,
864 struct buffer_head
**bh2
,
865 struct inode
*inode2
)
868 struct ocfs2_inode_info
*oi1
= OCFS2_I(inode1
);
869 struct ocfs2_inode_info
*oi2
= OCFS2_I(inode2
);
870 struct buffer_head
**tmpbh
;
871 struct inode
*tmpinode
;
873 mlog_entry("(inode1 = %llu, inode2 = %llu)\n",
874 (unsigned long long)oi1
->ip_blkno
,
875 (unsigned long long)oi2
->ip_blkno
);
882 /* we always want to lock the one with the lower lockid first. */
883 if (oi1
->ip_blkno
!= oi2
->ip_blkno
) {
884 if (oi1
->ip_blkno
< oi2
->ip_blkno
) {
885 /* switch id1 and id2 around */
886 mlog(0, "switching them around...\n");
896 status
= ocfs2_inode_lock(inode2
, bh2
, 1);
898 if (status
!= -ENOENT
)
905 status
= ocfs2_inode_lock(inode1
, bh1
, 1);
908 * An error return must mean that no cluster locks
909 * were held on function exit.
911 if (oi1
->ip_blkno
!= oi2
->ip_blkno
)
912 ocfs2_inode_unlock(inode2
, 1);
914 if (status
!= -ENOENT
)
923 static void ocfs2_double_unlock(struct inode
*inode1
, struct inode
*inode2
)
925 ocfs2_inode_unlock(inode1
, 1);
927 if (inode1
!= inode2
)
928 ocfs2_inode_unlock(inode2
, 1);
931 static int ocfs2_rename(struct inode
*old_dir
,
932 struct dentry
*old_dentry
,
933 struct inode
*new_dir
,
934 struct dentry
*new_dentry
)
936 int status
= 0, rename_lock
= 0, parents_locked
= 0;
937 int old_child_locked
= 0, new_child_locked
= 0;
938 struct inode
*old_inode
= old_dentry
->d_inode
;
939 struct inode
*new_inode
= new_dentry
->d_inode
;
940 struct inode
*orphan_dir
= NULL
;
941 struct ocfs2_dinode
*newfe
= NULL
;
942 char orphan_name
[OCFS2_ORPHAN_NAMELEN
+ 1];
943 struct buffer_head
*orphan_entry_bh
= NULL
;
944 struct buffer_head
*newfe_bh
= NULL
;
945 struct buffer_head
*old_inode_bh
= NULL
;
946 struct buffer_head
*insert_entry_bh
= NULL
;
947 struct ocfs2_super
*osb
= NULL
;
948 u64 newfe_blkno
, old_de_ino
;
949 handle_t
*handle
= NULL
;
950 struct buffer_head
*old_dir_bh
= NULL
;
951 struct buffer_head
*new_dir_bh
= NULL
;
952 struct ocfs2_dir_entry
*old_inode_dot_dot_de
= NULL
, *old_de
= NULL
,
954 struct buffer_head
*new_de_bh
= NULL
, *old_de_bh
= NULL
; // bhs for above
955 struct buffer_head
*old_inode_de_bh
= NULL
; // if old_dentry is a dir,
956 // this is the 1st dirent bh
957 nlink_t old_dir_nlink
= old_dir
->i_nlink
;
958 struct ocfs2_dinode
*old_di
;
960 /* At some point it might be nice to break this function up a
963 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n",
964 old_dir
, old_dentry
, new_dir
, new_dentry
,
965 old_dentry
->d_name
.len
, old_dentry
->d_name
.name
,
966 new_dentry
->d_name
.len
, new_dentry
->d_name
.name
);
968 osb
= OCFS2_SB(old_dir
->i_sb
);
971 if (!igrab(new_inode
))
975 /* Assume a directory hierarchy thusly:
978 * a,b,c, and d are all directories.
980 * from cwd of 'a' on both nodes:
984 * And that's why, just like the VFS, we need a file system
986 if (old_dir
!= new_dir
&& S_ISDIR(old_inode
->i_mode
)) {
987 status
= ocfs2_rename_lock(osb
);
995 /* if old and new are the same, this'll just do one lock. */
996 status
= ocfs2_double_lock(osb
, &old_dir_bh
, old_dir
,
997 &new_dir_bh
, new_dir
);
1004 /* make sure both dirs have bhs
1005 * get an extra ref on old_dir_bh if old==new */
1008 new_dir_bh
= old_dir_bh
;
1011 mlog(ML_ERROR
, "no old_dir_bh!\n");
1018 * Aside from allowing a meta data update, the locking here
1019 * also ensures that the downconvert thread on other nodes
1020 * won't have to concurrently downconvert the inode and the
1023 status
= ocfs2_inode_lock(old_inode
, &old_inode_bh
, 1);
1025 if (status
!= -ENOENT
)
1029 old_child_locked
= 1;
1031 status
= ocfs2_remote_dentry_delete(old_dentry
);
1037 if (S_ISDIR(old_inode
->i_mode
)) {
1038 u64 old_inode_parent
;
1040 status
= ocfs2_find_files_on_disk("..", 2, &old_inode_parent
,
1041 old_inode
, &old_inode_de_bh
,
1042 &old_inode_dot_dot_de
);
1048 if (old_inode_parent
!= OCFS2_I(old_dir
)->ip_blkno
) {
1053 if (!new_inode
&& new_dir
!= old_dir
&&
1054 new_dir
->i_nlink
>= OCFS2_LINK_MAX
) {
1060 status
= ocfs2_lookup_ino_from_name(old_dir
, old_dentry
->d_name
.name
,
1061 old_dentry
->d_name
.len
,
1069 * Check for inode number is _not_ due to possible IO errors.
1070 * We might rmdir the source, keep it as pwd of some process
1071 * and merrily kill the link to whatever was created under the
1072 * same name. Goodbye sticky bit ;-<
1074 if (old_de_ino
!= OCFS2_I(old_inode
)->ip_blkno
) {
1079 /* check if the target already exists (in which case we need
1081 status
= ocfs2_find_files_on_disk(new_dentry
->d_name
.name
,
1082 new_dentry
->d_name
.len
,
1083 &newfe_blkno
, new_dir
, &new_de_bh
,
1085 /* The only error we allow here is -ENOENT because the new
1086 * file not existing is perfectly valid. */
1087 if ((status
< 0) && (status
!= -ENOENT
)) {
1088 /* If we cannot find the file specified we should just */
1089 /* return the error... */
1094 if (!new_de
&& new_inode
) {
1096 * Target was unlinked by another node while we were
1097 * waiting to get to ocfs2_rename(). There isn't
1098 * anything we can do here to help the situation, so
1099 * bubble up the appropriate error.
1105 /* In case we need to overwrite an existing file, we blow it
1108 /* VFS didn't think there existed an inode here, but
1109 * someone else in the cluster must have raced our
1110 * rename to create one. Today we error cleanly, in
1111 * the future we should consider calling iget to build
1112 * a new struct inode for this entry. */
1116 mlog(0, "We found an inode for name %.*s but VFS "
1117 "didn't give us one.\n", new_dentry
->d_name
.len
,
1118 new_dentry
->d_name
.name
);
1122 if (OCFS2_I(new_inode
)->ip_blkno
!= newfe_blkno
) {
1125 mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n",
1126 (unsigned long long)OCFS2_I(new_inode
)->ip_blkno
,
1127 (unsigned long long)newfe_blkno
,
1128 OCFS2_I(new_inode
)->ip_flags
);
1132 status
= ocfs2_inode_lock(new_inode
, &newfe_bh
, 1);
1134 if (status
!= -ENOENT
)
1138 new_child_locked
= 1;
1140 status
= ocfs2_remote_dentry_delete(new_dentry
);
1146 newfe
= (struct ocfs2_dinode
*) newfe_bh
->b_data
;
1148 mlog(0, "aha rename over existing... new_de=%p new_blkno=%llu "
1149 "newfebh=%p bhblocknr=%llu\n", new_de
,
1150 (unsigned long long)newfe_blkno
, newfe_bh
, newfe_bh
?
1151 (unsigned long long)newfe_bh
->b_blocknr
: 0ULL);
1153 if (S_ISDIR(new_inode
->i_mode
) || (new_inode
->i_nlink
== 1)) {
1154 status
= ocfs2_prepare_orphan_dir(osb
, &orphan_dir
,
1164 BUG_ON(new_dentry
->d_parent
->d_inode
!= new_dir
);
1166 status
= ocfs2_check_dir_for_entry(new_dir
,
1167 new_dentry
->d_name
.name
,
1168 new_dentry
->d_name
.len
);
1172 status
= ocfs2_prepare_dir_for_insert(osb
, new_dir
, new_dir_bh
,
1173 new_dentry
->d_name
.name
,
1174 new_dentry
->d_name
.len
,
1182 handle
= ocfs2_start_trans(osb
, OCFS2_RENAME_CREDITS
);
1183 if (IS_ERR(handle
)) {
1184 status
= PTR_ERR(handle
);
1191 if (S_ISDIR(new_inode
->i_mode
)) {
1192 if (!ocfs2_empty_dir(new_inode
) ||
1193 new_inode
->i_nlink
!= 2) {
1194 status
= -ENOTEMPTY
;
1198 status
= ocfs2_journal_access(handle
, new_inode
, newfe_bh
,
1199 OCFS2_JOURNAL_ACCESS_WRITE
);
1205 if (S_ISDIR(new_inode
->i_mode
) ||
1206 (newfe
->i_links_count
== cpu_to_le16(1))){
1207 status
= ocfs2_orphan_add(osb
, handle
, new_inode
,
1209 orphan_entry_bh
, orphan_dir
);
1216 /* change the dirent to point to the correct inode */
1217 status
= ocfs2_update_entry(new_dir
, handle
, new_de_bh
,
1223 new_dir
->i_version
++;
1225 if (S_ISDIR(new_inode
->i_mode
))
1226 newfe
->i_links_count
= 0;
1228 le16_add_cpu(&newfe
->i_links_count
, -1);
1230 status
= ocfs2_journal_dirty(handle
, newfe_bh
);
1236 /* if the name was not found in new_dir, add it now */
1237 status
= ocfs2_add_entry(handle
, new_dentry
, old_inode
,
1238 OCFS2_I(old_inode
)->ip_blkno
,
1239 new_dir_bh
, insert_entry_bh
);
1242 old_inode
->i_ctime
= CURRENT_TIME
;
1243 mark_inode_dirty(old_inode
);
1245 status
= ocfs2_journal_access(handle
, old_inode
, old_inode_bh
,
1246 OCFS2_JOURNAL_ACCESS_WRITE
);
1248 old_di
= (struct ocfs2_dinode
*) old_inode_bh
->b_data
;
1250 old_di
->i_ctime
= cpu_to_le64(old_inode
->i_ctime
.tv_sec
);
1251 old_di
->i_ctime_nsec
= cpu_to_le32(old_inode
->i_ctime
.tv_nsec
);
1253 status
= ocfs2_journal_dirty(handle
, old_inode_bh
);
1260 * Now that the name has been added to new_dir, remove the old name.
1262 * We don't keep any directory entry context around until now
1263 * because the insert might have changed the type of directory
1264 * we're dealing with.
1266 old_de_bh
= ocfs2_find_entry(old_dentry
->d_name
.name
,
1267 old_dentry
->d_name
.len
,
1274 status
= ocfs2_delete_entry(handle
, old_dir
, old_de
, old_de_bh
);
1281 new_inode
->i_nlink
--;
1282 new_inode
->i_ctime
= CURRENT_TIME
;
1284 old_dir
->i_ctime
= old_dir
->i_mtime
= CURRENT_TIME
;
1285 if (old_inode_de_bh
) {
1286 status
= ocfs2_update_entry(old_inode
, handle
, old_inode_de_bh
,
1287 old_inode_dot_dot_de
, new_dir
);
1290 new_inode
->i_nlink
--;
1293 mark_inode_dirty(new_dir
);
1296 mark_inode_dirty(old_dir
);
1297 ocfs2_mark_inode_dirty(handle
, old_dir
, old_dir_bh
);
1299 mark_inode_dirty(new_inode
);
1300 ocfs2_mark_inode_dirty(handle
, new_inode
, newfe_bh
);
1303 if (old_dir
!= new_dir
) {
1304 /* Keep the same times on both directories.*/
1305 new_dir
->i_ctime
= new_dir
->i_mtime
= old_dir
->i_ctime
;
1308 * This will also pick up the i_nlink change from the
1311 ocfs2_mark_inode_dirty(handle
, new_dir
, new_dir_bh
);
1314 if (old_dir_nlink
!= old_dir
->i_nlink
) {
1316 mlog(ML_ERROR
, "need to change nlink for old dir "
1317 "%llu from %d to %d but bh is NULL!\n",
1318 (unsigned long long)OCFS2_I(old_dir
)->ip_blkno
,
1319 (int)old_dir_nlink
, old_dir
->i_nlink
);
1321 struct ocfs2_dinode
*fe
;
1322 status
= ocfs2_journal_access(handle
, old_dir
,
1324 OCFS2_JOURNAL_ACCESS_WRITE
);
1325 fe
= (struct ocfs2_dinode
*) old_dir_bh
->b_data
;
1326 fe
->i_links_count
= cpu_to_le16(old_dir
->i_nlink
);
1327 status
= ocfs2_journal_dirty(handle
, old_dir_bh
);
1331 ocfs2_dentry_move(old_dentry
, new_dentry
, old_dir
, new_dir
);
1335 ocfs2_rename_unlock(osb
);
1338 ocfs2_commit_trans(osb
, handle
);
1341 ocfs2_double_unlock(old_dir
, new_dir
);
1343 if (old_child_locked
)
1344 ocfs2_inode_unlock(old_inode
, 1);
1346 if (new_child_locked
)
1347 ocfs2_inode_unlock(new_inode
, 1);
1350 /* This was locked for us in ocfs2_prepare_orphan_dir() */
1351 ocfs2_inode_unlock(orphan_dir
, 1);
1352 mutex_unlock(&orphan_dir
->i_mutex
);
1357 sync_mapping_buffers(old_inode
->i_mapping
);
1362 brelse(old_inode_bh
);
1367 brelse(old_inode_de_bh
);
1368 brelse(orphan_entry_bh
);
1369 brelse(insert_entry_bh
);
1377 * we expect i_size = strlen(symname). Copy symname into the file
1378 * data, including the null terminator.
1380 static int ocfs2_create_symlink_data(struct ocfs2_super
*osb
,
1382 struct inode
*inode
,
1383 const char *symname
)
1385 struct buffer_head
**bhs
= NULL
;
1387 struct super_block
*sb
= osb
->sb
;
1388 u64 p_blkno
, p_blocks
;
1389 int virtual, blocks
, status
, i
, bytes_left
;
1391 bytes_left
= i_size_read(inode
) + 1;
1392 /* we can't trust i_blocks because we're actually going to
1393 * write i_size + 1 bytes. */
1394 blocks
= (bytes_left
+ sb
->s_blocksize
- 1) >> sb
->s_blocksize_bits
;
1396 mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n",
1397 (unsigned long long)inode
->i_blocks
,
1398 i_size_read(inode
), blocks
);
1400 /* Sanity check -- make sure we're going to fit. */
1402 ocfs2_clusters_to_bytes(sb
, OCFS2_I(inode
)->ip_clusters
)) {
1408 bhs
= kcalloc(blocks
, sizeof(struct buffer_head
*), GFP_KERNEL
);
1415 status
= ocfs2_extent_map_get_blocks(inode
, 0, &p_blkno
, &p_blocks
,
1422 /* links can never be larger than one cluster so we know this
1423 * is all going to be contiguous, but do a sanity check
1425 if ((p_blocks
<< sb
->s_blocksize_bits
) < bytes_left
) {
1432 while(bytes_left
> 0) {
1433 c
= &symname
[virtual * sb
->s_blocksize
];
1435 bhs
[virtual] = sb_getblk(sb
, p_blkno
);
1436 if (!bhs
[virtual]) {
1441 ocfs2_set_new_buffer_uptodate(inode
, bhs
[virtual]);
1443 status
= ocfs2_journal_access(handle
, inode
, bhs
[virtual],
1444 OCFS2_JOURNAL_ACCESS_CREATE
);
1450 memset(bhs
[virtual]->b_data
, 0, sb
->s_blocksize
);
1452 memcpy(bhs
[virtual]->b_data
, c
,
1453 (bytes_left
> sb
->s_blocksize
) ? sb
->s_blocksize
:
1456 status
= ocfs2_journal_dirty(handle
, bhs
[virtual]);
1464 bytes_left
-= sb
->s_blocksize
;
1471 for(i
= 0; i
< blocks
; i
++)
1480 static int ocfs2_symlink(struct inode
*dir
,
1481 struct dentry
*dentry
,
1482 const char *symname
)
1484 int status
, l
, credits
;
1486 struct ocfs2_super
*osb
= NULL
;
1487 struct inode
*inode
= NULL
;
1488 struct super_block
*sb
;
1489 struct buffer_head
*new_fe_bh
= NULL
;
1490 struct buffer_head
*de_bh
= NULL
;
1491 struct buffer_head
*parent_fe_bh
= NULL
;
1492 struct ocfs2_dinode
*fe
= NULL
;
1493 struct ocfs2_dinode
*dirfe
;
1494 handle_t
*handle
= NULL
;
1495 struct ocfs2_alloc_context
*inode_ac
= NULL
;
1496 struct ocfs2_alloc_context
*data_ac
= NULL
;
1498 mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir
,
1499 dentry
, symname
, dentry
->d_name
.len
, dentry
->d_name
.name
);
1504 l
= strlen(symname
) + 1;
1506 credits
= ocfs2_calc_symlink_credits(sb
);
1508 /* lock the parent directory */
1509 status
= ocfs2_inode_lock(dir
, &parent_fe_bh
, 1);
1511 if (status
!= -ENOENT
)
1516 dirfe
= (struct ocfs2_dinode
*) parent_fe_bh
->b_data
;
1517 if (!dirfe
->i_links_count
) {
1518 /* can't make a file in a deleted directory. */
1523 status
= ocfs2_check_dir_for_entry(dir
, dentry
->d_name
.name
,
1524 dentry
->d_name
.len
);
1528 status
= ocfs2_prepare_dir_for_insert(osb
, dir
, parent_fe_bh
,
1529 dentry
->d_name
.name
,
1530 dentry
->d_name
.len
, &de_bh
);
1536 status
= ocfs2_reserve_new_inode(osb
, &inode_ac
);
1538 if (status
!= -ENOSPC
)
1543 /* don't reserve bitmap space for fast symlinks. */
1544 if (l
> ocfs2_fast_symlink_chars(sb
)) {
1545 status
= ocfs2_reserve_clusters(osb
, 1, &data_ac
);
1547 if (status
!= -ENOSPC
)
1553 handle
= ocfs2_start_trans(osb
, credits
);
1554 if (IS_ERR(handle
)) {
1555 status
= PTR_ERR(handle
);
1561 status
= ocfs2_mknod_locked(osb
, dir
, dentry
,
1562 S_IFLNK
| S_IRWXUGO
, 0,
1563 &new_fe_bh
, parent_fe_bh
, handle
,
1570 fe
= (struct ocfs2_dinode
*) new_fe_bh
->b_data
;
1573 if (l
> ocfs2_fast_symlink_chars(sb
)) {
1576 inode
->i_op
= &ocfs2_symlink_inode_operations
;
1577 status
= ocfs2_add_inode_data(osb
, inode
, &offset
, 1, 0,
1579 handle
, data_ac
, NULL
,
1582 if (status
!= -ENOSPC
&& status
!= -EINTR
) {
1584 "Failed to extend file to %llu\n",
1585 (unsigned long long)newsize
);
1591 i_size_write(inode
, newsize
);
1592 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1594 inode
->i_op
= &ocfs2_fast_symlink_inode_operations
;
1595 memcpy((char *) fe
->id2
.i_symlink
, symname
, l
);
1596 i_size_write(inode
, newsize
);
1597 inode
->i_blocks
= 0;
1600 status
= ocfs2_mark_inode_dirty(handle
, inode
, new_fe_bh
);
1606 if (!ocfs2_inode_is_fast_symlink(inode
)) {
1607 status
= ocfs2_create_symlink_data(osb
, handle
, inode
,
1615 status
= ocfs2_add_entry(handle
, dentry
, inode
,
1616 le64_to_cpu(fe
->i_blkno
), parent_fe_bh
,
1623 status
= ocfs2_dentry_attach_lock(dentry
, inode
, OCFS2_I(dir
)->ip_blkno
);
1629 insert_inode_hash(inode
);
1630 dentry
->d_op
= &ocfs2_dentry_ops
;
1631 d_instantiate(dentry
, inode
);
1634 ocfs2_commit_trans(osb
, handle
);
1636 ocfs2_inode_unlock(dir
, 1);
1639 brelse(parent_fe_bh
);
1642 ocfs2_free_alloc_context(inode_ac
);
1644 ocfs2_free_alloc_context(data_ac
);
1645 if ((status
< 0) && inode
)
1653 static int ocfs2_blkno_stringify(u64 blkno
, char *name
)
1655 int status
, namelen
;
1659 namelen
= snprintf(name
, OCFS2_ORPHAN_NAMELEN
+ 1, "%016llx",
1669 if (namelen
!= OCFS2_ORPHAN_NAMELEN
) {
1675 mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name
,
1684 static int ocfs2_prepare_orphan_dir(struct ocfs2_super
*osb
,
1685 struct inode
**ret_orphan_dir
,
1686 struct inode
*inode
,
1688 struct buffer_head
**de_bh
)
1690 struct inode
*orphan_dir_inode
;
1691 struct buffer_head
*orphan_dir_bh
= NULL
;
1694 status
= ocfs2_blkno_stringify(OCFS2_I(inode
)->ip_blkno
, name
);
1700 orphan_dir_inode
= ocfs2_get_system_file_inode(osb
,
1701 ORPHAN_DIR_SYSTEM_INODE
,
1703 if (!orphan_dir_inode
) {
1709 mutex_lock(&orphan_dir_inode
->i_mutex
);
1711 status
= ocfs2_inode_lock(orphan_dir_inode
, &orphan_dir_bh
, 1);
1717 status
= ocfs2_prepare_dir_for_insert(osb
, orphan_dir_inode
,
1718 orphan_dir_bh
, name
,
1719 OCFS2_ORPHAN_NAMELEN
, de_bh
);
1721 ocfs2_inode_unlock(orphan_dir_inode
, 1);
1727 *ret_orphan_dir
= orphan_dir_inode
;
1731 mutex_unlock(&orphan_dir_inode
->i_mutex
);
1732 iput(orphan_dir_inode
);
1735 brelse(orphan_dir_bh
);
1741 static int ocfs2_orphan_add(struct ocfs2_super
*osb
,
1743 struct inode
*inode
,
1744 struct ocfs2_dinode
*fe
,
1746 struct buffer_head
*de_bh
,
1747 struct inode
*orphan_dir_inode
)
1749 struct buffer_head
*orphan_dir_bh
= NULL
;
1751 struct ocfs2_dinode
*orphan_fe
;
1753 mlog_entry("(inode->i_ino = %lu)\n", inode
->i_ino
);
1755 status
= ocfs2_read_block(orphan_dir_inode
,
1756 OCFS2_I(orphan_dir_inode
)->ip_blkno
,
1763 status
= ocfs2_journal_access(handle
, orphan_dir_inode
, orphan_dir_bh
,
1764 OCFS2_JOURNAL_ACCESS_WRITE
);
1770 /* we're a cluster, and nlink can change on disk from
1771 * underneath us... */
1772 orphan_fe
= (struct ocfs2_dinode
*) orphan_dir_bh
->b_data
;
1773 if (S_ISDIR(inode
->i_mode
))
1774 le16_add_cpu(&orphan_fe
->i_links_count
, 1);
1775 orphan_dir_inode
->i_nlink
= le16_to_cpu(orphan_fe
->i_links_count
);
1777 status
= ocfs2_journal_dirty(handle
, orphan_dir_bh
);
1783 status
= __ocfs2_add_entry(handle
, orphan_dir_inode
, name
,
1784 OCFS2_ORPHAN_NAMELEN
, inode
,
1785 OCFS2_I(inode
)->ip_blkno
,
1786 orphan_dir_bh
, de_bh
);
1792 le32_add_cpu(&fe
->i_flags
, OCFS2_ORPHANED_FL
);
1794 /* Record which orphan dir our inode now resides
1795 * in. delete_inode will use this to determine which orphan
1797 fe
->i_orphaned_slot
= cpu_to_le16(osb
->slot_num
);
1799 mlog(0, "Inode %llu orphaned in slot %d\n",
1800 (unsigned long long)OCFS2_I(inode
)->ip_blkno
, osb
->slot_num
);
1803 brelse(orphan_dir_bh
);
1809 /* unlike orphan_add, we expect the orphan dir to already be locked here. */
1810 int ocfs2_orphan_del(struct ocfs2_super
*osb
,
1812 struct inode
*orphan_dir_inode
,
1813 struct inode
*inode
,
1814 struct buffer_head
*orphan_dir_bh
)
1816 char name
[OCFS2_ORPHAN_NAMELEN
+ 1];
1817 struct ocfs2_dinode
*orphan_fe
;
1819 struct buffer_head
*target_de_bh
= NULL
;
1820 struct ocfs2_dir_entry
*target_de
= NULL
;
1824 status
= ocfs2_blkno_stringify(OCFS2_I(inode
)->ip_blkno
, name
);
1830 mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n",
1831 name
, (unsigned long long)OCFS2_I(orphan_dir_inode
)->ip_blkno
,
1832 OCFS2_ORPHAN_NAMELEN
);
1834 /* find it's spot in the orphan directory */
1835 target_de_bh
= ocfs2_find_entry(name
, OCFS2_ORPHAN_NAMELEN
,
1836 orphan_dir_inode
, &target_de
);
1837 if (!target_de_bh
) {
1843 /* remove it from the orphan directory */
1844 status
= ocfs2_delete_entry(handle
, orphan_dir_inode
, target_de
,
1851 status
= ocfs2_journal_access(handle
,orphan_dir_inode
, orphan_dir_bh
,
1852 OCFS2_JOURNAL_ACCESS_WRITE
);
1858 /* do the i_nlink dance! :) */
1859 orphan_fe
= (struct ocfs2_dinode
*) orphan_dir_bh
->b_data
;
1860 if (S_ISDIR(inode
->i_mode
))
1861 le16_add_cpu(&orphan_fe
->i_links_count
, -1);
1862 orphan_dir_inode
->i_nlink
= le16_to_cpu(orphan_fe
->i_links_count
);
1864 status
= ocfs2_journal_dirty(handle
, orphan_dir_bh
);
1871 brelse(target_de_bh
);
1877 const struct inode_operations ocfs2_dir_iops
= {
1878 .create
= ocfs2_create
,
1879 .lookup
= ocfs2_lookup
,
1881 .unlink
= ocfs2_unlink
,
1882 .rmdir
= ocfs2_unlink
,
1883 .symlink
= ocfs2_symlink
,
1884 .mkdir
= ocfs2_mkdir
,
1885 .mknod
= ocfs2_mknod
,
1886 .rename
= ocfs2_rename
,
1887 .setattr
= ocfs2_setattr
,
1888 .getattr
= ocfs2_getattr
,
1889 .permission
= ocfs2_permission
,
1890 .setxattr
= generic_setxattr
,
1891 .getxattr
= generic_getxattr
,
1892 .listxattr
= ocfs2_listxattr
,
1893 .removexattr
= generic_removexattr
,