aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/linux-2.6/xfs_export.c
diff options
context:
space:
mode:
authorNathan Scott <nathans@sgi.com>2006-03-14 13:32:54 +1100
committerNathan Scott <nathans@sgi.com>2006-03-14 13:32:54 +1100
commit9b94c2eddf407ad8faa5672ffa691e2076167564 (patch)
treeaa44b11d2a09b49a892e622c374d81be36966177 /fs/xfs/linux-2.6/xfs_export.c
parent[XFS] Reduce complexity in xfs_trans_init by pushing complex macros out (diff)
downloadlinux-dev-9b94c2eddf407ad8faa5672ffa691e2076167564.tar.xz
linux-dev-9b94c2eddf407ad8faa5672ffa691e2076167564.zip
[XFS] Take a dentry structure off the stack into the data segment.
SGI-PV: 947312 SGI-Modid: xfs-linux-melb:xfs-kern:25361a Signed-off-by: Nathan Scott <nathans@sgi.com>
Diffstat (limited to '')
-rw-r--r--fs/xfs/linux-2.6/xfs_export.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/fs/xfs/linux-2.6/xfs_export.c b/fs/xfs/linux-2.6/xfs_export.c
index 821bd12dd858..53ed99112365 100644
--- a/fs/xfs/linux-2.6/xfs_export.c
+++ b/fs/xfs/linux-2.6/xfs_export.c
@@ -25,6 +25,8 @@
#include "xfs_mount.h"
#include "xfs_export.h"
+STATIC struct dentry dotdot = { .d_name.name = "..", .d_name.len = 2, };
+
/*
* XFS encodes and decodes the fileid portion of NFS filehandles
* itself instead of letting the generic NFS code do it. This
@@ -160,11 +162,6 @@ linvfs_get_parent(
int error;
vnode_t *vp, *cvp;
struct dentry *parent;
- struct dentry dotdot;
-
- dotdot.d_name.name = "..";
- dotdot.d_name.len = 2;
- dotdot.d_inode = NULL;
cvp = NULL;
vp = LINVFS_GET_VP(child->d_inode);