David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved. |
Steven Whitehouse | 3a8a9a1 | 2006-05-18 15:09:15 -0400 | [diff] [blame] | 3 | * Copyright (C) 2004-2006 Red Hat, Inc. All rights reserved. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 4 | * |
| 5 | * This copyrighted material is made available to anyone wishing to use, |
| 6 | * modify, copy, or redistribute it subject to the terms and conditions |
Steven Whitehouse | e9fc2aa | 2006-09-01 11:05:15 -0400 | [diff] [blame] | 7 | * of the GNU General Public License version 2. |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 10 | #include <linux/slab.h> |
| 11 | #include <linux/spinlock.h> |
| 12 | #include <linux/completion.h> |
| 13 | #include <linux/buffer_head.h> |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 14 | #include <linux/gfs2_ondisk.h> |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 15 | #include <linux/crc32.h> |
Fabio Massimo Di Nitto | 7d30859 | 2006-09-19 07:56:29 +0200 | [diff] [blame] | 16 | #include <linux/lm_interface.h> |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 17 | |
| 18 | #include "gfs2.h" |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 19 | #include "incore.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 20 | #include "dir.h" |
| 21 | #include "glock.h" |
| 22 | #include "glops.h" |
| 23 | #include "inode.h" |
Robert Peterson | 7083146 | 2007-01-11 13:25:00 -0600 | [diff] [blame] | 24 | #include "ops_dentry.h" |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame^] | 25 | #include "ops_fstype.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 26 | #include "rgrp.h" |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 27 | #include "util.h" |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 28 | |
Steven Whitehouse | bb8d8a6 | 2007-06-01 14:11:58 +0100 | [diff] [blame^] | 29 | #define GFS2_SMALL_FH_SIZE 4 |
| 30 | #define GFS2_LARGE_FH_SIZE 10 |
| 31 | |
| 32 | struct gfs2_fh_obj { |
| 33 | struct gfs2_inum_host this; |
| 34 | u32 imode; |
| 35 | }; |
| 36 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 37 | static struct dentry *gfs2_decode_fh(struct super_block *sb, |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 38 | __u32 *p, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 39 | int fh_len, |
| 40 | int fh_type, |
| 41 | int (*acceptable)(void *context, |
| 42 | struct dentry *dentry), |
| 43 | void *context) |
| 44 | { |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 45 | __be32 *fh = (__force __be32 *)p; |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 46 | struct gfs2_fh_obj fh_obj; |
Al Viro | 629a21e | 2006-10-13 22:51:24 -0400 | [diff] [blame] | 47 | struct gfs2_inum_host *this, parent; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 48 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 49 | this = &fh_obj.this; |
| 50 | fh_obj.imode = DT_UNKNOWN; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 51 | memset(&parent, 0, sizeof(struct gfs2_inum)); |
| 52 | |
Wendy Cheng | a7d2b2b | 2007-02-23 00:21:17 -0500 | [diff] [blame] | 53 | switch (fh_len) { |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 54 | case GFS2_LARGE_FH_SIZE: |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 55 | parent.no_formal_ino = ((u64)be32_to_cpu(fh[4])) << 32; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 56 | parent.no_formal_ino |= be32_to_cpu(fh[5]); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 57 | parent.no_addr = ((u64)be32_to_cpu(fh[6])) << 32; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 58 | parent.no_addr |= be32_to_cpu(fh[7]); |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 59 | fh_obj.imode = be32_to_cpu(fh[8]); |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 60 | case GFS2_SMALL_FH_SIZE: |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 61 | this->no_formal_ino = ((u64)be32_to_cpu(fh[0])) << 32; |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 62 | this->no_formal_ino |= be32_to_cpu(fh[1]); |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 63 | this->no_addr = ((u64)be32_to_cpu(fh[2])) << 32; |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 64 | this->no_addr |= be32_to_cpu(fh[3]); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 65 | break; |
| 66 | default: |
| 67 | return NULL; |
| 68 | } |
| 69 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 70 | return gfs2_export_ops.find_exported_dentry(sb, &fh_obj, &parent, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 71 | acceptable, context); |
| 72 | } |
| 73 | |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 74 | static int gfs2_encode_fh(struct dentry *dentry, __u32 *p, int *len, |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 75 | int connectable) |
| 76 | { |
Al Viro | b44b84d | 2006-10-14 10:46:30 -0400 | [diff] [blame] | 77 | __be32 *fh = (__force __be32 *)p; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 78 | struct inode *inode = dentry->d_inode; |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 79 | struct super_block *sb = inode->i_sb; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 80 | struct gfs2_inode *ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 81 | |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 82 | if (*len < GFS2_SMALL_FH_SIZE || |
| 83 | (connectable && *len < GFS2_LARGE_FH_SIZE)) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 84 | return 255; |
| 85 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 86 | fh[0] = cpu_to_be32(ip->i_no_formal_ino >> 32); |
| 87 | fh[1] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF); |
| 88 | fh[2] = cpu_to_be32(ip->i_no_addr >> 32); |
| 89 | fh[3] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF); |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 90 | *len = GFS2_SMALL_FH_SIZE; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 91 | |
Steven Whitehouse | c9fd430 | 2006-03-01 15:31:02 -0500 | [diff] [blame] | 92 | if (!connectable || inode == sb->s_root->d_inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 93 | return *len; |
| 94 | |
| 95 | spin_lock(&dentry->d_lock); |
| 96 | inode = dentry->d_parent->d_inode; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 97 | ip = GFS2_I(inode); |
| 98 | igrab(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 99 | spin_unlock(&dentry->d_lock); |
| 100 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 101 | fh[4] = cpu_to_be32(ip->i_no_formal_ino >> 32); |
| 102 | fh[5] = cpu_to_be32(ip->i_no_formal_ino & 0xFFFFFFFF); |
| 103 | fh[6] = cpu_to_be32(ip->i_no_addr >> 32); |
| 104 | fh[7] = cpu_to_be32(ip->i_no_addr & 0xFFFFFFFF); |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 105 | |
| 106 | fh[8] = cpu_to_be32(inode->i_mode); |
| 107 | fh[9] = 0; /* pad to double word */ |
Steven Whitehouse | 5acd396 | 2006-09-04 16:16:45 -0400 | [diff] [blame] | 108 | *len = GFS2_LARGE_FH_SIZE; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 109 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 110 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 111 | |
| 112 | return *len; |
| 113 | } |
| 114 | |
| 115 | struct get_name_filldir { |
Al Viro | 629a21e | 2006-10-13 22:51:24 -0400 | [diff] [blame] | 116 | struct gfs2_inum_host inum; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 117 | char *name; |
| 118 | }; |
| 119 | |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 120 | static int get_name_filldir(void *opaque, const char *name, int length, |
| 121 | loff_t offset, u64 inum, unsigned int type) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 122 | { |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 123 | struct get_name_filldir *gnfd = opaque; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 124 | |
Steven Whitehouse | 3699e3a | 2007-01-17 15:09:20 +0000 | [diff] [blame] | 125 | if (inum != gnfd->inum.no_addr) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 126 | return 0; |
| 127 | |
| 128 | memcpy(gnfd->name, name, length); |
| 129 | gnfd->name[length] = 0; |
| 130 | |
| 131 | return 1; |
| 132 | } |
| 133 | |
| 134 | static int gfs2_get_name(struct dentry *parent, char *name, |
| 135 | struct dentry *child) |
| 136 | { |
| 137 | struct inode *dir = parent->d_inode; |
| 138 | struct inode *inode = child->d_inode; |
| 139 | struct gfs2_inode *dip, *ip; |
| 140 | struct get_name_filldir gnfd; |
| 141 | struct gfs2_holder gh; |
Steven Whitehouse | cd91549 | 2006-09-04 12:49:07 -0400 | [diff] [blame] | 142 | u64 offset = 0; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 143 | int error; |
| 144 | |
| 145 | if (!dir) |
| 146 | return -EINVAL; |
| 147 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 148 | if (!S_ISDIR(dir->i_mode) || !inode) |
| 149 | return -EINVAL; |
| 150 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 151 | dip = GFS2_I(dir); |
| 152 | ip = GFS2_I(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 153 | |
| 154 | *name = 0; |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 155 | gnfd.inum.no_addr = ip->i_no_addr; |
| 156 | gnfd.inum.no_formal_ino = ip->i_no_formal_ino; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 157 | gnfd.name = name; |
| 158 | |
| 159 | error = gfs2_glock_nq_init(dip->i_gl, LM_ST_SHARED, 0, &gh); |
| 160 | if (error) |
| 161 | return error; |
| 162 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 163 | error = gfs2_dir_read(dir, &offset, &gnfd, get_name_filldir); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 164 | |
| 165 | gfs2_glock_dq_uninit(&gh); |
| 166 | |
| 167 | if (!error && !*name) |
| 168 | error = -ENOENT; |
| 169 | |
| 170 | return error; |
| 171 | } |
| 172 | |
| 173 | static struct dentry *gfs2_get_parent(struct dentry *child) |
| 174 | { |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 175 | struct qstr dotdot; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 176 | struct inode *inode; |
| 177 | struct dentry *dentry; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 178 | |
Steven Whitehouse | 71b86f5 | 2006-03-28 14:14:04 -0500 | [diff] [blame] | 179 | gfs2_str2qstr(&dotdot, ".."); |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 180 | inode = gfs2_lookupi(child->d_inode, &dotdot, 1, NULL); |
| 181 | |
| 182 | if (!inode) |
| 183 | return ERR_PTR(-ENOENT); |
Steven Whitehouse | 7b62536 | 2006-09-05 15:56:17 -0400 | [diff] [blame] | 184 | /* |
| 185 | * In case of an error, @inode carries the error value, and we |
| 186 | * have to return that as a(n invalid) pointer to dentry. |
| 187 | */ |
Steven Whitehouse | c752666 | 2006-03-20 12:30:04 -0500 | [diff] [blame] | 188 | if (IS_ERR(inode)) |
| 189 | return ERR_PTR(PTR_ERR(inode)); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 190 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 191 | dentry = d_alloc_anon(inode); |
| 192 | if (!dentry) { |
| 193 | iput(inode); |
| 194 | return ERR_PTR(-ENOMEM); |
| 195 | } |
| 196 | |
Robert Peterson | 7083146 | 2007-01-11 13:25:00 -0600 | [diff] [blame] | 197 | dentry->d_op = &gfs2_dops; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 198 | return dentry; |
| 199 | } |
| 200 | |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 201 | static struct dentry *gfs2_get_dentry(struct super_block *sb, void *inum_obj) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 202 | { |
Steven Whitehouse | 5c676f6 | 2006-02-27 17:23:27 -0500 | [diff] [blame] | 203 | struct gfs2_sbd *sdp = sb->s_fs_info; |
Wendy Cheng | 2eb168c | 2006-07-11 13:28:53 -0400 | [diff] [blame] | 204 | struct gfs2_fh_obj *fh_obj = (struct gfs2_fh_obj *)inum_obj; |
Al Viro | 629a21e | 2006-10-13 22:51:24 -0400 | [diff] [blame] | 205 | struct gfs2_inum_host *inum = &fh_obj->this; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 206 | struct gfs2_holder i_gh, ri_gh, rgd_gh; |
| 207 | struct gfs2_rgrpd *rgd; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 208 | struct inode *inode; |
| 209 | struct dentry *dentry; |
| 210 | int error; |
| 211 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 212 | /* System files? */ |
| 213 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 214 | inode = gfs2_ilookup(sb, inum->no_addr); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 215 | if (inode) { |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 216 | if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) { |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 217 | iput(inode); |
| 218 | return ERR_PTR(-ESTALE); |
| 219 | } |
| 220 | goto out_inode; |
| 221 | } |
| 222 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 223 | error = gfs2_glock_nq_num(sdp, inum->no_addr, &gfs2_inode_glops, |
Steven Whitehouse | 1c0f487 | 2007-01-22 12:10:39 -0500 | [diff] [blame] | 224 | LM_ST_SHARED, LM_FLAG_ANY, &i_gh); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 225 | if (error) |
| 226 | return ERR_PTR(error); |
| 227 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 228 | error = gfs2_rindex_hold(sdp, &ri_gh); |
| 229 | if (error) |
| 230 | goto fail; |
| 231 | |
| 232 | error = -EINVAL; |
| 233 | rgd = gfs2_blk2rgrpd(sdp, inum->no_addr); |
| 234 | if (!rgd) |
| 235 | goto fail_rindex; |
| 236 | |
| 237 | error = gfs2_glock_nq_init(rgd->rd_gl, LM_ST_SHARED, 0, &rgd_gh); |
| 238 | if (error) |
| 239 | goto fail_rindex; |
| 240 | |
| 241 | error = -ESTALE; |
| 242 | if (gfs2_get_block_type(rgd, inum->no_addr) != GFS2_BLKST_DINODE) |
| 243 | goto fail_rgd; |
| 244 | |
| 245 | gfs2_glock_dq_uninit(&rgd_gh); |
| 246 | gfs2_glock_dq_uninit(&ri_gh); |
| 247 | |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 248 | inode = gfs2_inode_lookup(sb, inum->no_addr, fh_obj->imode); |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 249 | if (!inode) |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 250 | goto fail; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 251 | if (IS_ERR(inode)) { |
| 252 | error = PTR_ERR(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 253 | goto fail; |
| 254 | } |
| 255 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 256 | error = gfs2_inode_refresh(GFS2_I(inode)); |
| 257 | if (error) { |
| 258 | iput(inode); |
| 259 | goto fail; |
| 260 | } |
Steven Whitehouse | dbb7cae | 2007-05-15 15:37:50 +0100 | [diff] [blame] | 261 | if (GFS2_I(inode)->i_no_formal_ino != inum->no_formal_ino) { |
| 262 | iput(inode); |
| 263 | goto fail; |
| 264 | } |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 265 | |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 266 | error = -EIO; |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 267 | if (GFS2_I(inode)->i_di.di_flags & GFS2_DIF_SYSTEM) { |
| 268 | iput(inode); |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 269 | goto fail; |
| 270 | } |
| 271 | |
| 272 | gfs2_glock_dq_uninit(&i_gh); |
| 273 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 274 | out_inode: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 275 | dentry = d_alloc_anon(inode); |
| 276 | if (!dentry) { |
| 277 | iput(inode); |
| 278 | return ERR_PTR(-ENOMEM); |
| 279 | } |
| 280 | |
Robert Peterson | 7083146 | 2007-01-11 13:25:00 -0600 | [diff] [blame] | 281 | dentry->d_op = &gfs2_dops; |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 282 | return dentry; |
| 283 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 284 | fail_rgd: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 285 | gfs2_glock_dq_uninit(&rgd_gh); |
| 286 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 287 | fail_rindex: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 288 | gfs2_glock_dq_uninit(&ri_gh); |
| 289 | |
Steven Whitehouse | feaa7bb | 2006-06-14 15:32:57 -0400 | [diff] [blame] | 290 | fail: |
David Teigland | b3b94fa | 2006-01-16 16:50:04 +0000 | [diff] [blame] | 291 | gfs2_glock_dq_uninit(&i_gh); |
| 292 | return ERR_PTR(error); |
| 293 | } |
| 294 | |
| 295 | struct export_operations gfs2_export_ops = { |
| 296 | .decode_fh = gfs2_decode_fh, |
| 297 | .encode_fh = gfs2_encode_fh, |
| 298 | .get_name = gfs2_get_name, |
| 299 | .get_parent = gfs2_get_parent, |
| 300 | .get_dentry = gfs2_get_dentry, |
| 301 | }; |
| 302 | |