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