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
);
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
504 static int ocfs2_mkdir(struct inode
*dir
,
505 struct dentry
*dentry
,
510 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir
, dentry
, mode
,
511 dentry
->d_name
.len
, dentry
->d_name
.name
);
512 ret
= ocfs2_mknod(dir
, dentry
, mode
| S_IFDIR
, 0);
518 static int ocfs2_create(struct inode
*dir
,
519 struct dentry
*dentry
,
521 struct nameidata
*nd
)
525 mlog_entry("(0x%p, 0x%p, %d, '%.*s')\n", dir
, dentry
, mode
,
526 dentry
->d_name
.len
, dentry
->d_name
.name
);
527 ret
= ocfs2_mknod(dir
, dentry
, mode
| S_IFREG
, 0);
533 static int ocfs2_link(struct dentry
*old_dentry
,
535 struct dentry
*dentry
)
538 struct inode
*inode
= old_dentry
->d_inode
;
540 struct buffer_head
*fe_bh
= NULL
;
541 struct buffer_head
*parent_fe_bh
= NULL
;
542 struct buffer_head
*de_bh
= NULL
;
543 struct ocfs2_dinode
*fe
= NULL
;
544 struct ocfs2_super
*osb
= OCFS2_SB(dir
->i_sb
);
546 mlog_entry("(inode=%lu, old='%.*s' new='%.*s')\n", inode
->i_ino
,
547 old_dentry
->d_name
.len
, old_dentry
->d_name
.name
,
548 dentry
->d_name
.len
, dentry
->d_name
.name
);
550 if (S_ISDIR(inode
->i_mode
))
553 err
= ocfs2_inode_lock(dir
, &parent_fe_bh
, 1);
565 err
= ocfs2_check_dir_for_entry(dir
, dentry
->d_name
.name
,
570 err
= ocfs2_prepare_dir_for_insert(osb
, dir
, parent_fe_bh
,
572 dentry
->d_name
.len
, &de_bh
);
578 err
= ocfs2_inode_lock(inode
, &fe_bh
, 1);
585 fe
= (struct ocfs2_dinode
*) fe_bh
->b_data
;
586 if (le16_to_cpu(fe
->i_links_count
) >= OCFS2_LINK_MAX
) {
588 goto out_unlock_inode
;
591 handle
= ocfs2_start_trans(osb
, OCFS2_LINK_CREDITS
);
592 if (IS_ERR(handle
)) {
593 err
= PTR_ERR(handle
);
596 goto out_unlock_inode
;
599 err
= ocfs2_journal_access(handle
, inode
, fe_bh
,
600 OCFS2_JOURNAL_ACCESS_WRITE
);
607 inode
->i_ctime
= CURRENT_TIME
;
608 fe
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
609 fe
->i_ctime
= cpu_to_le64(inode
->i_ctime
.tv_sec
);
610 fe
->i_ctime_nsec
= cpu_to_le32(inode
->i_ctime
.tv_nsec
);
612 err
= ocfs2_journal_dirty(handle
, fe_bh
);
614 le16_add_cpu(&fe
->i_links_count
, -1);
620 err
= ocfs2_add_entry(handle
, dentry
, inode
,
621 OCFS2_I(inode
)->ip_blkno
,
622 parent_fe_bh
, de_bh
);
624 le16_add_cpu(&fe
->i_links_count
, -1);
630 err
= ocfs2_dentry_attach_lock(dentry
, inode
, OCFS2_I(dir
)->ip_blkno
);
636 atomic_inc(&inode
->i_count
);
637 dentry
->d_op
= &ocfs2_dentry_ops
;
638 d_instantiate(dentry
, inode
);
641 ocfs2_commit_trans(osb
, handle
);
643 ocfs2_inode_unlock(inode
, 1);
646 ocfs2_inode_unlock(dir
, 1);
650 brelse(parent_fe_bh
);
658 * Takes and drops an exclusive lock on the given dentry. This will
659 * force other nodes to drop it.
661 static int ocfs2_remote_dentry_delete(struct dentry
*dentry
)
665 ret
= ocfs2_dentry_lock(dentry
, 1);
669 ocfs2_dentry_unlock(dentry
, 1);
674 static inline int inode_is_unlinkable(struct inode
*inode
)
676 if (S_ISDIR(inode
->i_mode
)) {
677 if (inode
->i_nlink
== 2)
682 if (inode
->i_nlink
== 1)
687 static int ocfs2_unlink(struct inode
*dir
,
688 struct dentry
*dentry
)
691 int child_locked
= 0;
692 struct inode
*inode
= dentry
->d_inode
;
693 struct inode
*orphan_dir
= NULL
;
694 struct ocfs2_super
*osb
= OCFS2_SB(dir
->i_sb
);
696 struct ocfs2_dinode
*fe
= NULL
;
697 struct buffer_head
*fe_bh
= NULL
;
698 struct buffer_head
*parent_node_bh
= NULL
;
699 handle_t
*handle
= NULL
;
700 struct ocfs2_dir_entry
*dirent
= NULL
;
701 struct buffer_head
*dirent_bh
= NULL
;
702 char orphan_name
[OCFS2_ORPHAN_NAMELEN
+ 1];
703 struct buffer_head
*orphan_entry_bh
= NULL
;
705 mlog_entry("(0x%p, 0x%p, '%.*s')\n", dir
, dentry
,
706 dentry
->d_name
.len
, dentry
->d_name
.name
);
708 BUG_ON(dentry
->d_parent
->d_inode
!= dir
);
710 mlog(0, "ino = %llu\n", (unsigned long long)OCFS2_I(inode
)->ip_blkno
);
712 if (inode
== osb
->root_inode
) {
713 mlog(0, "Cannot delete the root directory\n");
717 status
= ocfs2_inode_lock(dir
, &parent_node_bh
, 1);
719 if (status
!= -ENOENT
)
724 status
= ocfs2_find_files_on_disk(dentry
->d_name
.name
,
725 dentry
->d_name
.len
, &blkno
,
726 dir
, &dirent_bh
, &dirent
);
728 if (status
!= -ENOENT
)
733 if (OCFS2_I(inode
)->ip_blkno
!= blkno
) {
736 mlog(0, "ip_blkno %llu != dirent blkno %llu ip_flags = %x\n",
737 (unsigned long long)OCFS2_I(inode
)->ip_blkno
,
738 (unsigned long long)blkno
, OCFS2_I(inode
)->ip_flags
);
742 status
= ocfs2_inode_lock(inode
, &fe_bh
, 1);
744 if (status
!= -ENOENT
)
750 if (S_ISDIR(inode
->i_mode
)) {
751 if (!ocfs2_empty_dir(inode
)) {
754 } else if (inode
->i_nlink
!= 2) {
760 status
= ocfs2_remote_dentry_delete(dentry
);
762 /* This remote delete should succeed under all normal
768 if (inode_is_unlinkable(inode
)) {
769 status
= ocfs2_prepare_orphan_dir(osb
, &orphan_dir
, inode
,
778 handle
= ocfs2_start_trans(osb
, OCFS2_UNLINK_CREDITS
);
779 if (IS_ERR(handle
)) {
780 status
= PTR_ERR(handle
);
786 status
= ocfs2_journal_access(handle
, inode
, fe_bh
,
787 OCFS2_JOURNAL_ACCESS_WRITE
);
793 fe
= (struct ocfs2_dinode
*) fe_bh
->b_data
;
795 if (inode_is_unlinkable(inode
)) {
796 status
= ocfs2_orphan_add(osb
, handle
, inode
, fe
, orphan_name
,
797 orphan_entry_bh
, orphan_dir
);
804 /* delete the name from the parent dir */
805 status
= ocfs2_delete_entry(handle
, dir
, dirent
, dirent_bh
);
811 if (S_ISDIR(inode
->i_mode
))
814 fe
->i_links_count
= cpu_to_le16(inode
->i_nlink
);
816 status
= ocfs2_journal_dirty(handle
, fe_bh
);
822 dir
->i_ctime
= dir
->i_mtime
= CURRENT_TIME
;
823 if (S_ISDIR(inode
->i_mode
))
826 status
= ocfs2_mark_inode_dirty(handle
, dir
, parent_node_bh
);
829 if (S_ISDIR(inode
->i_mode
))
835 ocfs2_commit_trans(osb
, handle
);
838 ocfs2_inode_unlock(inode
, 1);
840 ocfs2_inode_unlock(dir
, 1);
843 /* This was locked for us in ocfs2_prepare_orphan_dir() */
844 ocfs2_inode_unlock(orphan_dir
, 1);
845 mutex_unlock(&orphan_dir
->i_mutex
);
851 brelse(parent_node_bh
);
852 brelse(orphan_entry_bh
);
860 * The only place this should be used is rename!
861 * if they have the same id, then the 1st one is the only one locked.
863 static int ocfs2_double_lock(struct ocfs2_super
*osb
,
864 struct buffer_head
**bh1
,
865 struct inode
*inode1
,
866 struct buffer_head
**bh2
,
867 struct inode
*inode2
)
870 struct ocfs2_inode_info
*oi1
= OCFS2_I(inode1
);
871 struct ocfs2_inode_info
*oi2
= OCFS2_I(inode2
);
872 struct buffer_head
**tmpbh
;
873 struct inode
*tmpinode
;
875 mlog_entry("(inode1 = %llu, inode2 = %llu)\n",
876 (unsigned long long)oi1
->ip_blkno
,
877 (unsigned long long)oi2
->ip_blkno
);
884 /* we always want to lock the one with the lower lockid first. */
885 if (oi1
->ip_blkno
!= oi2
->ip_blkno
) {
886 if (oi1
->ip_blkno
< oi2
->ip_blkno
) {
887 /* switch id1 and id2 around */
888 mlog(0, "switching them around...\n");
898 status
= ocfs2_inode_lock(inode2
, bh2
, 1);
900 if (status
!= -ENOENT
)
907 status
= ocfs2_inode_lock(inode1
, bh1
, 1);
910 * An error return must mean that no cluster locks
911 * were held on function exit.
913 if (oi1
->ip_blkno
!= oi2
->ip_blkno
)
914 ocfs2_inode_unlock(inode2
, 1);
916 if (status
!= -ENOENT
)
925 static void ocfs2_double_unlock(struct inode
*inode1
, struct inode
*inode2
)
927 ocfs2_inode_unlock(inode1
, 1);
929 if (inode1
!= inode2
)
930 ocfs2_inode_unlock(inode2
, 1);
933 static int ocfs2_rename(struct inode
*old_dir
,
934 struct dentry
*old_dentry
,
935 struct inode
*new_dir
,
936 struct dentry
*new_dentry
)
938 int status
= 0, rename_lock
= 0, parents_locked
= 0;
939 int old_child_locked
= 0, new_child_locked
= 0;
940 struct inode
*old_inode
= old_dentry
->d_inode
;
941 struct inode
*new_inode
= new_dentry
->d_inode
;
942 struct inode
*orphan_dir
= NULL
;
943 struct ocfs2_dinode
*newfe
= NULL
;
944 char orphan_name
[OCFS2_ORPHAN_NAMELEN
+ 1];
945 struct buffer_head
*orphan_entry_bh
= NULL
;
946 struct buffer_head
*newfe_bh
= NULL
;
947 struct buffer_head
*old_inode_bh
= NULL
;
948 struct buffer_head
*insert_entry_bh
= NULL
;
949 struct ocfs2_super
*osb
= NULL
;
950 u64 newfe_blkno
, old_de_ino
;
951 handle_t
*handle
= NULL
;
952 struct buffer_head
*old_dir_bh
= NULL
;
953 struct buffer_head
*new_dir_bh
= NULL
;
954 struct ocfs2_dir_entry
*old_inode_dot_dot_de
= NULL
, *old_de
= NULL
,
956 struct buffer_head
*new_de_bh
= NULL
, *old_de_bh
= NULL
; // bhs for above
957 struct buffer_head
*old_inode_de_bh
= NULL
; // if old_dentry is a dir,
958 // this is the 1st dirent bh
959 nlink_t old_dir_nlink
= old_dir
->i_nlink
;
960 struct ocfs2_dinode
*old_di
;
962 /* At some point it might be nice to break this function up a
965 mlog_entry("(0x%p, 0x%p, 0x%p, 0x%p, from='%.*s' to='%.*s')\n",
966 old_dir
, old_dentry
, new_dir
, new_dentry
,
967 old_dentry
->d_name
.len
, old_dentry
->d_name
.name
,
968 new_dentry
->d_name
.len
, new_dentry
->d_name
.name
);
970 osb
= OCFS2_SB(old_dir
->i_sb
);
973 if (!igrab(new_inode
))
977 /* Assume a directory hierarchy thusly:
980 * a,b,c, and d are all directories.
982 * from cwd of 'a' on both nodes:
986 * And that's why, just like the VFS, we need a file system
988 if (old_dir
!= new_dir
&& S_ISDIR(old_inode
->i_mode
)) {
989 status
= ocfs2_rename_lock(osb
);
997 /* if old and new are the same, this'll just do one lock. */
998 status
= ocfs2_double_lock(osb
, &old_dir_bh
, old_dir
,
999 &new_dir_bh
, new_dir
);
1006 /* make sure both dirs have bhs
1007 * get an extra ref on old_dir_bh if old==new */
1010 new_dir_bh
= old_dir_bh
;
1013 mlog(ML_ERROR
, "no old_dir_bh!\n");
1020 * Aside from allowing a meta data update, the locking here
1021 * also ensures that the downconvert thread on other nodes
1022 * won't have to concurrently downconvert the inode and the
1025 status
= ocfs2_inode_lock(old_inode
, &old_inode_bh
, 1);
1027 if (status
!= -ENOENT
)
1031 old_child_locked
= 1;
1033 status
= ocfs2_remote_dentry_delete(old_dentry
);
1039 if (S_ISDIR(old_inode
->i_mode
)) {
1040 u64 old_inode_parent
;
1042 status
= ocfs2_find_files_on_disk("..", 2, &old_inode_parent
,
1043 old_inode
, &old_inode_de_bh
,
1044 &old_inode_dot_dot_de
);
1050 if (old_inode_parent
!= OCFS2_I(old_dir
)->ip_blkno
) {
1055 if (!new_inode
&& new_dir
!= old_dir
&&
1056 new_dir
->i_nlink
>= OCFS2_LINK_MAX
) {
1062 status
= ocfs2_lookup_ino_from_name(old_dir
, old_dentry
->d_name
.name
,
1063 old_dentry
->d_name
.len
,
1071 * Check for inode number is _not_ due to possible IO errors.
1072 * We might rmdir the source, keep it as pwd of some process
1073 * and merrily kill the link to whatever was created under the
1074 * same name. Goodbye sticky bit ;-<
1076 if (old_de_ino
!= OCFS2_I(old_inode
)->ip_blkno
) {
1081 /* check if the target already exists (in which case we need
1083 status
= ocfs2_find_files_on_disk(new_dentry
->d_name
.name
,
1084 new_dentry
->d_name
.len
,
1085 &newfe_blkno
, new_dir
, &new_de_bh
,
1087 /* The only error we allow here is -ENOENT because the new
1088 * file not existing is perfectly valid. */
1089 if ((status
< 0) && (status
!= -ENOENT
)) {
1090 /* If we cannot find the file specified we should just */
1091 /* return the error... */
1096 if (!new_de
&& new_inode
) {
1098 * Target was unlinked by another node while we were
1099 * waiting to get to ocfs2_rename(). There isn't
1100 * anything we can do here to help the situation, so
1101 * bubble up the appropriate error.
1107 /* In case we need to overwrite an existing file, we blow it
1110 /* VFS didn't think there existed an inode here, but
1111 * someone else in the cluster must have raced our
1112 * rename to create one. Today we error cleanly, in
1113 * the future we should consider calling iget to build
1114 * a new struct inode for this entry. */
1118 mlog(0, "We found an inode for name %.*s but VFS "
1119 "didn't give us one.\n", new_dentry
->d_name
.len
,
1120 new_dentry
->d_name
.name
);
1124 if (OCFS2_I(new_inode
)->ip_blkno
!= newfe_blkno
) {
1127 mlog(0, "Inode %llu and dir %llu disagree. flags = %x\n",
1128 (unsigned long long)OCFS2_I(new_inode
)->ip_blkno
,
1129 (unsigned long long)newfe_blkno
,
1130 OCFS2_I(new_inode
)->ip_flags
);
1134 status
= ocfs2_inode_lock(new_inode
, &newfe_bh
, 1);
1136 if (status
!= -ENOENT
)
1140 new_child_locked
= 1;
1142 status
= ocfs2_remote_dentry_delete(new_dentry
);
1148 newfe
= (struct ocfs2_dinode
*) newfe_bh
->b_data
;
1150 mlog(0, "aha rename over existing... new_de=%p new_blkno=%llu "
1151 "newfebh=%p bhblocknr=%llu\n", new_de
,
1152 (unsigned long long)newfe_blkno
, newfe_bh
, newfe_bh
?
1153 (unsigned long long)newfe_bh
->b_blocknr
: 0ULL);
1155 if (S_ISDIR(new_inode
->i_mode
) || (new_inode
->i_nlink
== 1)) {
1156 status
= ocfs2_prepare_orphan_dir(osb
, &orphan_dir
,
1166 BUG_ON(new_dentry
->d_parent
->d_inode
!= new_dir
);
1168 status
= ocfs2_check_dir_for_entry(new_dir
,
1169 new_dentry
->d_name
.name
,
1170 new_dentry
->d_name
.len
);
1174 status
= ocfs2_prepare_dir_for_insert(osb
, new_dir
, new_dir_bh
,
1175 new_dentry
->d_name
.name
,
1176 new_dentry
->d_name
.len
,
1184 handle
= ocfs2_start_trans(osb
, OCFS2_RENAME_CREDITS
);
1185 if (IS_ERR(handle
)) {
1186 status
= PTR_ERR(handle
);
1193 if (S_ISDIR(new_inode
->i_mode
)) {
1194 if (!ocfs2_empty_dir(new_inode
) ||
1195 new_inode
->i_nlink
!= 2) {
1196 status
= -ENOTEMPTY
;
1200 status
= ocfs2_journal_access(handle
, new_inode
, newfe_bh
,
1201 OCFS2_JOURNAL_ACCESS_WRITE
);
1207 if (S_ISDIR(new_inode
->i_mode
) ||
1208 (newfe
->i_links_count
== cpu_to_le16(1))){
1209 status
= ocfs2_orphan_add(osb
, handle
, new_inode
,
1211 orphan_entry_bh
, orphan_dir
);
1218 /* change the dirent to point to the correct inode */
1219 status
= ocfs2_update_entry(new_dir
, handle
, new_de_bh
,
1225 new_dir
->i_version
++;
1227 if (S_ISDIR(new_inode
->i_mode
))
1228 newfe
->i_links_count
= 0;
1230 le16_add_cpu(&newfe
->i_links_count
, -1);
1232 status
= ocfs2_journal_dirty(handle
, newfe_bh
);
1238 /* if the name was not found in new_dir, add it now */
1239 status
= ocfs2_add_entry(handle
, new_dentry
, old_inode
,
1240 OCFS2_I(old_inode
)->ip_blkno
,
1241 new_dir_bh
, insert_entry_bh
);
1244 old_inode
->i_ctime
= CURRENT_TIME
;
1245 mark_inode_dirty(old_inode
);
1247 status
= ocfs2_journal_access(handle
, old_inode
, old_inode_bh
,
1248 OCFS2_JOURNAL_ACCESS_WRITE
);
1250 old_di
= (struct ocfs2_dinode
*) old_inode_bh
->b_data
;
1252 old_di
->i_ctime
= cpu_to_le64(old_inode
->i_ctime
.tv_sec
);
1253 old_di
->i_ctime_nsec
= cpu_to_le32(old_inode
->i_ctime
.tv_nsec
);
1255 status
= ocfs2_journal_dirty(handle
, old_inode_bh
);
1262 * Now that the name has been added to new_dir, remove the old name.
1264 * We don't keep any directory entry context around until now
1265 * because the insert might have changed the type of directory
1266 * we're dealing with.
1268 old_de_bh
= ocfs2_find_entry(old_dentry
->d_name
.name
,
1269 old_dentry
->d_name
.len
,
1276 status
= ocfs2_delete_entry(handle
, old_dir
, old_de
, old_de_bh
);
1283 new_inode
->i_nlink
--;
1284 new_inode
->i_ctime
= CURRENT_TIME
;
1286 old_dir
->i_ctime
= old_dir
->i_mtime
= CURRENT_TIME
;
1287 if (old_inode_de_bh
) {
1288 status
= ocfs2_update_entry(old_inode
, handle
, old_inode_de_bh
,
1289 old_inode_dot_dot_de
, new_dir
);
1292 new_inode
->i_nlink
--;
1295 mark_inode_dirty(new_dir
);
1298 mark_inode_dirty(old_dir
);
1299 ocfs2_mark_inode_dirty(handle
, old_dir
, old_dir_bh
);
1301 mark_inode_dirty(new_inode
);
1302 ocfs2_mark_inode_dirty(handle
, new_inode
, newfe_bh
);
1305 if (old_dir
!= new_dir
) {
1306 /* Keep the same times on both directories.*/
1307 new_dir
->i_ctime
= new_dir
->i_mtime
= old_dir
->i_ctime
;
1310 * This will also pick up the i_nlink change from the
1313 ocfs2_mark_inode_dirty(handle
, new_dir
, new_dir_bh
);
1316 if (old_dir_nlink
!= old_dir
->i_nlink
) {
1318 mlog(ML_ERROR
, "need to change nlink for old dir "
1319 "%llu from %d to %d but bh is NULL!\n",
1320 (unsigned long long)OCFS2_I(old_dir
)->ip_blkno
,
1321 (int)old_dir_nlink
, old_dir
->i_nlink
);
1323 struct ocfs2_dinode
*fe
;
1324 status
= ocfs2_journal_access(handle
, old_dir
,
1326 OCFS2_JOURNAL_ACCESS_WRITE
);
1327 fe
= (struct ocfs2_dinode
*) old_dir_bh
->b_data
;
1328 fe
->i_links_count
= cpu_to_le16(old_dir
->i_nlink
);
1329 status
= ocfs2_journal_dirty(handle
, old_dir_bh
);
1333 ocfs2_dentry_move(old_dentry
, new_dentry
, old_dir
, new_dir
);
1337 ocfs2_rename_unlock(osb
);
1340 ocfs2_commit_trans(osb
, handle
);
1343 ocfs2_double_unlock(old_dir
, new_dir
);
1345 if (old_child_locked
)
1346 ocfs2_inode_unlock(old_inode
, 1);
1348 if (new_child_locked
)
1349 ocfs2_inode_unlock(new_inode
, 1);
1352 /* This was locked for us in ocfs2_prepare_orphan_dir() */
1353 ocfs2_inode_unlock(orphan_dir
, 1);
1354 mutex_unlock(&orphan_dir
->i_mutex
);
1359 sync_mapping_buffers(old_inode
->i_mapping
);
1364 brelse(old_inode_bh
);
1369 brelse(old_inode_de_bh
);
1370 brelse(orphan_entry_bh
);
1371 brelse(insert_entry_bh
);
1379 * we expect i_size = strlen(symname). Copy symname into the file
1380 * data, including the null terminator.
1382 static int ocfs2_create_symlink_data(struct ocfs2_super
*osb
,
1384 struct inode
*inode
,
1385 const char *symname
)
1387 struct buffer_head
**bhs
= NULL
;
1389 struct super_block
*sb
= osb
->sb
;
1390 u64 p_blkno
, p_blocks
;
1391 int virtual, blocks
, status
, i
, bytes_left
;
1393 bytes_left
= i_size_read(inode
) + 1;
1394 /* we can't trust i_blocks because we're actually going to
1395 * write i_size + 1 bytes. */
1396 blocks
= (bytes_left
+ sb
->s_blocksize
- 1) >> sb
->s_blocksize_bits
;
1398 mlog_entry("i_blocks = %llu, i_size = %llu, blocks = %d\n",
1399 (unsigned long long)inode
->i_blocks
,
1400 i_size_read(inode
), blocks
);
1402 /* Sanity check -- make sure we're going to fit. */
1404 ocfs2_clusters_to_bytes(sb
, OCFS2_I(inode
)->ip_clusters
)) {
1410 bhs
= kcalloc(blocks
, sizeof(struct buffer_head
*), GFP_KERNEL
);
1417 status
= ocfs2_extent_map_get_blocks(inode
, 0, &p_blkno
, &p_blocks
,
1424 /* links can never be larger than one cluster so we know this
1425 * is all going to be contiguous, but do a sanity check
1427 if ((p_blocks
<< sb
->s_blocksize_bits
) < bytes_left
) {
1434 while(bytes_left
> 0) {
1435 c
= &symname
[virtual * sb
->s_blocksize
];
1437 bhs
[virtual] = sb_getblk(sb
, p_blkno
);
1438 if (!bhs
[virtual]) {
1443 ocfs2_set_new_buffer_uptodate(inode
, bhs
[virtual]);
1445 status
= ocfs2_journal_access(handle
, inode
, bhs
[virtual],
1446 OCFS2_JOURNAL_ACCESS_CREATE
);
1452 memset(bhs
[virtual]->b_data
, 0, sb
->s_blocksize
);
1454 memcpy(bhs
[virtual]->b_data
, c
,
1455 (bytes_left
> sb
->s_blocksize
) ? sb
->s_blocksize
:
1458 status
= ocfs2_journal_dirty(handle
, bhs
[virtual]);
1466 bytes_left
-= sb
->s_blocksize
;
1473 for(i
= 0; i
< blocks
; i
++)
1482 static int ocfs2_symlink(struct inode
*dir
,
1483 struct dentry
*dentry
,
1484 const char *symname
)
1486 int status
, l
, credits
;
1488 struct ocfs2_super
*osb
= NULL
;
1489 struct inode
*inode
= NULL
;
1490 struct super_block
*sb
;
1491 struct buffer_head
*new_fe_bh
= NULL
;
1492 struct buffer_head
*de_bh
= NULL
;
1493 struct buffer_head
*parent_fe_bh
= NULL
;
1494 struct ocfs2_dinode
*fe
= NULL
;
1495 struct ocfs2_dinode
*dirfe
;
1496 handle_t
*handle
= NULL
;
1497 struct ocfs2_alloc_context
*inode_ac
= NULL
;
1498 struct ocfs2_alloc_context
*data_ac
= NULL
;
1500 mlog_entry("(0x%p, 0x%p, symname='%s' actual='%.*s')\n", dir
,
1501 dentry
, symname
, dentry
->d_name
.len
, dentry
->d_name
.name
);
1506 l
= strlen(symname
) + 1;
1508 credits
= ocfs2_calc_symlink_credits(sb
);
1510 /* lock the parent directory */
1511 status
= ocfs2_inode_lock(dir
, &parent_fe_bh
, 1);
1513 if (status
!= -ENOENT
)
1518 dirfe
= (struct ocfs2_dinode
*) parent_fe_bh
->b_data
;
1519 if (!dirfe
->i_links_count
) {
1520 /* can't make a file in a deleted directory. */
1525 status
= ocfs2_check_dir_for_entry(dir
, dentry
->d_name
.name
,
1526 dentry
->d_name
.len
);
1530 status
= ocfs2_prepare_dir_for_insert(osb
, dir
, parent_fe_bh
,
1531 dentry
->d_name
.name
,
1532 dentry
->d_name
.len
, &de_bh
);
1538 status
= ocfs2_reserve_new_inode(osb
, &inode_ac
);
1540 if (status
!= -ENOSPC
)
1545 /* don't reserve bitmap space for fast symlinks. */
1546 if (l
> ocfs2_fast_symlink_chars(sb
)) {
1547 status
= ocfs2_reserve_clusters(osb
, 1, &data_ac
);
1549 if (status
!= -ENOSPC
)
1555 handle
= ocfs2_start_trans(osb
, credits
);
1556 if (IS_ERR(handle
)) {
1557 status
= PTR_ERR(handle
);
1563 status
= ocfs2_mknod_locked(osb
, dir
, dentry
,
1564 S_IFLNK
| S_IRWXUGO
, 0,
1565 &new_fe_bh
, parent_fe_bh
, handle
,
1572 fe
= (struct ocfs2_dinode
*) new_fe_bh
->b_data
;
1575 if (l
> ocfs2_fast_symlink_chars(sb
)) {
1578 inode
->i_op
= &ocfs2_symlink_inode_operations
;
1579 status
= ocfs2_add_inode_data(osb
, inode
, &offset
, 1, 0,
1581 handle
, data_ac
, NULL
,
1584 if (status
!= -ENOSPC
&& status
!= -EINTR
) {
1586 "Failed to extend file to %llu\n",
1587 (unsigned long long)newsize
);
1593 i_size_write(inode
, newsize
);
1594 inode
->i_blocks
= ocfs2_inode_sector_count(inode
);
1596 inode
->i_op
= &ocfs2_fast_symlink_inode_operations
;
1597 memcpy((char *) fe
->id2
.i_symlink
, symname
, l
);
1598 i_size_write(inode
, newsize
);
1599 inode
->i_blocks
= 0;
1602 status
= ocfs2_mark_inode_dirty(handle
, inode
, new_fe_bh
);
1608 if (!ocfs2_inode_is_fast_symlink(inode
)) {
1609 status
= ocfs2_create_symlink_data(osb
, handle
, inode
,
1617 status
= ocfs2_add_entry(handle
, dentry
, inode
,
1618 le64_to_cpu(fe
->i_blkno
), parent_fe_bh
,
1625 status
= ocfs2_dentry_attach_lock(dentry
, inode
, OCFS2_I(dir
)->ip_blkno
);
1631 insert_inode_hash(inode
);
1632 dentry
->d_op
= &ocfs2_dentry_ops
;
1633 d_instantiate(dentry
, inode
);
1636 ocfs2_commit_trans(osb
, handle
);
1638 ocfs2_inode_unlock(dir
, 1);
1641 brelse(parent_fe_bh
);
1644 ocfs2_free_alloc_context(inode_ac
);
1646 ocfs2_free_alloc_context(data_ac
);
1647 if ((status
< 0) && inode
)
1655 static int ocfs2_blkno_stringify(u64 blkno
, char *name
)
1657 int status
, namelen
;
1661 namelen
= snprintf(name
, OCFS2_ORPHAN_NAMELEN
+ 1, "%016llx",
1671 if (namelen
!= OCFS2_ORPHAN_NAMELEN
) {
1677 mlog(0, "built filename '%s' for orphan dir (len=%d)\n", name
,
1686 static int ocfs2_prepare_orphan_dir(struct ocfs2_super
*osb
,
1687 struct inode
**ret_orphan_dir
,
1688 struct inode
*inode
,
1690 struct buffer_head
**de_bh
)
1692 struct inode
*orphan_dir_inode
;
1693 struct buffer_head
*orphan_dir_bh
= NULL
;
1696 status
= ocfs2_blkno_stringify(OCFS2_I(inode
)->ip_blkno
, name
);
1702 orphan_dir_inode
= ocfs2_get_system_file_inode(osb
,
1703 ORPHAN_DIR_SYSTEM_INODE
,
1705 if (!orphan_dir_inode
) {
1711 mutex_lock(&orphan_dir_inode
->i_mutex
);
1713 status
= ocfs2_inode_lock(orphan_dir_inode
, &orphan_dir_bh
, 1);
1719 status
= ocfs2_prepare_dir_for_insert(osb
, orphan_dir_inode
,
1720 orphan_dir_bh
, name
,
1721 OCFS2_ORPHAN_NAMELEN
, de_bh
);
1723 ocfs2_inode_unlock(orphan_dir_inode
, 1);
1729 *ret_orphan_dir
= orphan_dir_inode
;
1733 mutex_unlock(&orphan_dir_inode
->i_mutex
);
1734 iput(orphan_dir_inode
);
1737 brelse(orphan_dir_bh
);
1743 static int ocfs2_orphan_add(struct ocfs2_super
*osb
,
1745 struct inode
*inode
,
1746 struct ocfs2_dinode
*fe
,
1748 struct buffer_head
*de_bh
,
1749 struct inode
*orphan_dir_inode
)
1751 struct buffer_head
*orphan_dir_bh
= NULL
;
1753 struct ocfs2_dinode
*orphan_fe
;
1755 mlog_entry("(inode->i_ino = %lu)\n", inode
->i_ino
);
1757 status
= ocfs2_read_block(orphan_dir_inode
,
1758 OCFS2_I(orphan_dir_inode
)->ip_blkno
,
1765 status
= ocfs2_journal_access(handle
, orphan_dir_inode
, orphan_dir_bh
,
1766 OCFS2_JOURNAL_ACCESS_WRITE
);
1772 /* we're a cluster, and nlink can change on disk from
1773 * underneath us... */
1774 orphan_fe
= (struct ocfs2_dinode
*) orphan_dir_bh
->b_data
;
1775 if (S_ISDIR(inode
->i_mode
))
1776 le16_add_cpu(&orphan_fe
->i_links_count
, 1);
1777 orphan_dir_inode
->i_nlink
= le16_to_cpu(orphan_fe
->i_links_count
);
1779 status
= ocfs2_journal_dirty(handle
, orphan_dir_bh
);
1785 status
= __ocfs2_add_entry(handle
, orphan_dir_inode
, name
,
1786 OCFS2_ORPHAN_NAMELEN
, inode
,
1787 OCFS2_I(inode
)->ip_blkno
,
1788 orphan_dir_bh
, de_bh
);
1794 le32_add_cpu(&fe
->i_flags
, OCFS2_ORPHANED_FL
);
1796 /* Record which orphan dir our inode now resides
1797 * in. delete_inode will use this to determine which orphan
1799 fe
->i_orphaned_slot
= cpu_to_le16(osb
->slot_num
);
1801 mlog(0, "Inode %llu orphaned in slot %d\n",
1802 (unsigned long long)OCFS2_I(inode
)->ip_blkno
, osb
->slot_num
);
1805 brelse(orphan_dir_bh
);
1811 /* unlike orphan_add, we expect the orphan dir to already be locked here. */
1812 int ocfs2_orphan_del(struct ocfs2_super
*osb
,
1814 struct inode
*orphan_dir_inode
,
1815 struct inode
*inode
,
1816 struct buffer_head
*orphan_dir_bh
)
1818 char name
[OCFS2_ORPHAN_NAMELEN
+ 1];
1819 struct ocfs2_dinode
*orphan_fe
;
1821 struct buffer_head
*target_de_bh
= NULL
;
1822 struct ocfs2_dir_entry
*target_de
= NULL
;
1826 status
= ocfs2_blkno_stringify(OCFS2_I(inode
)->ip_blkno
, name
);
1832 mlog(0, "removing '%s' from orphan dir %llu (namelen=%d)\n",
1833 name
, (unsigned long long)OCFS2_I(orphan_dir_inode
)->ip_blkno
,
1834 OCFS2_ORPHAN_NAMELEN
);
1836 /* find it's spot in the orphan directory */
1837 target_de_bh
= ocfs2_find_entry(name
, OCFS2_ORPHAN_NAMELEN
,
1838 orphan_dir_inode
, &target_de
);
1839 if (!target_de_bh
) {
1845 /* remove it from the orphan directory */
1846 status
= ocfs2_delete_entry(handle
, orphan_dir_inode
, target_de
,
1853 status
= ocfs2_journal_access(handle
,orphan_dir_inode
, orphan_dir_bh
,
1854 OCFS2_JOURNAL_ACCESS_WRITE
);
1860 /* do the i_nlink dance! :) */
1861 orphan_fe
= (struct ocfs2_dinode
*) orphan_dir_bh
->b_data
;
1862 if (S_ISDIR(inode
->i_mode
))
1863 le16_add_cpu(&orphan_fe
->i_links_count
, -1);
1864 orphan_dir_inode
->i_nlink
= le16_to_cpu(orphan_fe
->i_links_count
);
1866 status
= ocfs2_journal_dirty(handle
, orphan_dir_bh
);
1873 brelse(target_de_bh
);
1879 const struct inode_operations ocfs2_dir_iops
= {
1880 .create
= ocfs2_create
,
1881 .lookup
= ocfs2_lookup
,
1883 .unlink
= ocfs2_unlink
,
1884 .rmdir
= ocfs2_unlink
,
1885 .symlink
= ocfs2_symlink
,
1886 .mkdir
= ocfs2_mkdir
,
1887 .mknod
= ocfs2_mknod
,
1888 .rename
= ocfs2_rename
,
1889 .setattr
= ocfs2_setattr
,
1890 .getattr
= ocfs2_getattr
,
1891 .permission
= ocfs2_permission
,
1892 .setxattr
= generic_setxattr
,
1893 .getxattr
= generic_getxattr
,
1894 .listxattr
= ocfs2_listxattr
,
1895 .removexattr
= generic_removexattr
,