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