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