blob: 73598bff8506d45dbfcdfa2804bdbe393fe32149 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/affs/inode.c
4 *
5 * (c) 1996 Hans-Joachim Widmaier - Rewritten
6 *
7 * (C) 1993 Ray Burr - Modified for Amiga FFS filesystem.
8 *
9 * (C) 1992 Eric Youngdale Modified for ISO9660 filesystem.
10 *
11 * (C) 1991 Linus Torvalds - minix filesystem
12 */
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040013#include <linux/sched.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010014#include <linux/cred.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "affs.h"
17
David Howells210f8552008-02-07 00:15:29 -080018struct inode *affs_iget(struct super_block *sb, unsigned long ino)
Linus Torvalds1da177e2005-04-16 15:20:36 -070019{
Linus Torvalds1da177e2005-04-16 15:20:36 -070020 struct affs_sb_info *sbi = AFFS_SB(sb);
21 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 struct affs_tail *tail;
David Howells210f8552008-02-07 00:15:29 -080023 struct inode *inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 u32 block;
25 u32 size;
26 u32 prot;
27 u16 id;
28
David Howells210f8552008-02-07 00:15:29 -080029 inode = iget_locked(sb, ino);
30 if (!inode)
31 return ERR_PTR(-ENOMEM);
32 if (!(inode->i_state & I_NEW))
33 return inode;
34
Fabian Frederick9606d9a2014-06-06 14:37:25 -070035 pr_debug("affs_iget(%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37 block = inode->i_ino;
38 bh = affs_bread(sb, block);
39 if (!bh) {
40 affs_warning(sb, "read_inode", "Cannot read block %d", block);
41 goto bad_inode;
42 }
43 if (affs_checksum_block(sb, bh) || be32_to_cpu(AFFS_HEAD(bh)->ptype) != T_SHORT) {
44 affs_warning(sb,"read_inode",
45 "Checksum or type (ptype=%d) error on inode %d",
46 AFFS_HEAD(bh)->ptype, block);
47 goto bad_inode;
48 }
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 tail = AFFS_TAIL(sb, bh);
51 prot = be32_to_cpu(tail->protect);
52
53 inode->i_size = 0;
Miklos Szeredibfe86842011-10-28 14:13:29 +020054 set_nlink(inode, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 inode->i_mode = 0;
56 AFFS_I(inode)->i_extcnt = 1;
57 AFFS_I(inode)->i_ext_last = ~1;
58 AFFS_I(inode)->i_protect = prot;
Roman Zippeldca3c332008-04-29 17:02:20 +020059 atomic_set(&AFFS_I(inode)->i_opencnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 AFFS_I(inode)->i_blkcnt = 0;
61 AFFS_I(inode)->i_lc = NULL;
62 AFFS_I(inode)->i_lc_size = 0;
63 AFFS_I(inode)->i_lc_shift = 0;
64 AFFS_I(inode)->i_lc_mask = 0;
65 AFFS_I(inode)->i_ac = NULL;
66 AFFS_I(inode)->i_ext_bh = NULL;
67 AFFS_I(inode)->mmu_private = 0;
68 AFFS_I(inode)->i_lastalloc = 0;
69 AFFS_I(inode)->i_pa_cnt = 0;
70
Fabian Frederick79bda4d2015-04-16 12:48:24 -070071 if (affs_test_opt(sbi->s_flags, SF_SETMODE))
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 inode->i_mode = sbi->s_mode;
73 else
Fabian Frederickc1618202017-02-27 14:27:54 -080074 inode->i_mode = affs_prot_to_mode(prot);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76 id = be16_to_cpu(tail->uid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -070077 if (id == 0 || affs_test_opt(sbi->s_flags, SF_SETUID))
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 inode->i_uid = sbi->s_uid;
Fabian Frederick79bda4d2015-04-16 12:48:24 -070079 else if (id == 0xFFFF && affs_test_opt(sbi->s_flags, SF_MUFS))
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080080 i_uid_write(inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 else
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080082 i_uid_write(inode, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083
84 id = be16_to_cpu(tail->gid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -070085 if (id == 0 || affs_test_opt(sbi->s_flags, SF_SETGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 inode->i_gid = sbi->s_gid;
Fabian Frederick79bda4d2015-04-16 12:48:24 -070087 else if (id == 0xFFFF && affs_test_opt(sbi->s_flags, SF_MUFS))
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080088 i_gid_write(inode, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 else
Eric W. Biederman8fed10b2012-02-07 16:20:16 -080090 i_gid_write(inode, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92 switch (be32_to_cpu(tail->stype)) {
93 case ST_ROOT:
94 inode->i_uid = sbi->s_uid;
95 inode->i_gid = sbi->s_gid;
96 /* fall through */
97 case ST_USERDIR:
98 if (be32_to_cpu(tail->stype) == ST_USERDIR ||
Fabian Frederick79bda4d2015-04-16 12:48:24 -070099 affs_test_opt(sbi->s_flags, SF_SETMODE)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 if (inode->i_mode & S_IRUSR)
101 inode->i_mode |= S_IXUSR;
102 if (inode->i_mode & S_IRGRP)
103 inode->i_mode |= S_IXGRP;
104 if (inode->i_mode & S_IROTH)
105 inode->i_mode |= S_IXOTH;
106 inode->i_mode |= S_IFDIR;
107 } else
108 inode->i_mode = S_IRUGO | S_IXUGO | S_IWUSR | S_IFDIR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 /* Maybe it should be controlled by mount parameter? */
110 //inode->i_mode |= S_ISVTX;
111 inode->i_op = &affs_dir_inode_operations;
112 inode->i_fop = &affs_dir_operations;
113 break;
114 case ST_LINKDIR:
115#if 0
116 affs_warning(sb, "read_inode", "inode is LINKDIR");
117 goto bad_inode;
118#else
119 inode->i_mode |= S_IFDIR;
Al Viroc765d472008-12-04 09:50:55 -0500120 /* ... and leave ->i_op and ->i_fop pointing to empty */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 break;
122#endif
123 case ST_LINKFILE:
124 affs_warning(sb, "read_inode", "inode is LINKFILE");
125 goto bad_inode;
126 case ST_FILE:
127 size = be32_to_cpu(tail->size);
128 inode->i_mode |= S_IFREG;
129 AFFS_I(inode)->mmu_private = inode->i_size = size;
130 if (inode->i_size) {
131 AFFS_I(inode)->i_blkcnt = (size - 1) /
132 sbi->s_data_blksize + 1;
133 AFFS_I(inode)->i_extcnt = (AFFS_I(inode)->i_blkcnt - 1) /
134 sbi->s_hashsize + 1;
135 }
136 if (tail->link_chain)
Miklos Szeredibfe86842011-10-28 14:13:29 +0200137 set_nlink(inode, 2);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700138 inode->i_mapping->a_ops = affs_test_opt(sbi->s_flags, SF_OFS) ?
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700139 &affs_aops_ofs : &affs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 inode->i_op = &affs_file_inode_operations;
141 inode->i_fop = &affs_file_operations;
142 break;
143 case ST_SOFTLINK:
Fabian Frederickf1bf9072017-04-15 08:54:36 +0200144 inode->i_size = strlen((char *)AFFS_HEAD(bh)->table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 inode->i_mode |= S_IFLNK;
Al Viro21fc61c2015-11-17 01:07:57 -0500146 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 inode->i_op = &affs_symlink_inode_operations;
148 inode->i_data.a_ops = &affs_symlink_aops;
149 break;
150 }
151
152 inode->i_mtime.tv_sec = inode->i_atime.tv_sec = inode->i_ctime.tv_sec
153 = (be32_to_cpu(tail->change.days) * (24 * 60 * 60) +
154 be32_to_cpu(tail->change.mins) * 60 +
155 be32_to_cpu(tail->change.ticks) / 50 +
156 ((8 * 365 + 2) * 24 * 60 * 60)) +
157 sys_tz.tz_minuteswest * 60;
158 inode->i_mtime.tv_nsec = inode->i_ctime.tv_nsec = inode->i_atime.tv_nsec = 0;
159 affs_brelse(bh);
David Howells210f8552008-02-07 00:15:29 -0800160 unlock_new_inode(inode);
161 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163bad_inode:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 affs_brelse(bh);
David Howells210f8552008-02-07 00:15:29 -0800165 iget_failed(inode);
166 return ERR_PTR(-EIO);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167}
168
169int
Christoph Hellwiga9185b42010-03-05 09:21:37 +0100170affs_write_inode(struct inode *inode, struct writeback_control *wbc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
172 struct super_block *sb = inode->i_sb;
173 struct buffer_head *bh;
174 struct affs_tail *tail;
175 uid_t uid;
176 gid_t gid;
177
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700178 pr_debug("write_inode(%lu)\n", inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 if (!inode->i_nlink)
181 // possibly free block
182 return 0;
183 bh = affs_bread(sb, inode->i_ino);
184 if (!bh) {
185 affs_error(sb,"write_inode","Cannot read block %lu",inode->i_ino);
186 return -EIO;
187 }
188 tail = AFFS_TAIL(sb, bh);
189 if (tail->stype == cpu_to_be32(ST_ROOT)) {
Fabian Frederickc1618202017-02-27 14:27:54 -0800190 affs_secs_to_datestamp(inode->i_mtime.tv_sec,
191 &AFFS_ROOT_TAIL(sb, bh)->root_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 } else {
193 tail->protect = cpu_to_be32(AFFS_I(inode)->i_protect);
194 tail->size = cpu_to_be32(inode->i_size);
Fabian Frederickc1618202017-02-27 14:27:54 -0800195 affs_secs_to_datestamp(inode->i_mtime.tv_sec, &tail->change);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if (!(inode->i_ino == AFFS_SB(sb)->s_root_block)) {
Eric W. Biederman8fed10b2012-02-07 16:20:16 -0800197 uid = i_uid_read(inode);
198 gid = i_gid_read(inode);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700199 if (affs_test_opt(AFFS_SB(sb)->s_flags, SF_MUFS)) {
Eric W. Biederman8fed10b2012-02-07 16:20:16 -0800200 if (uid == 0 || uid == 0xFFFF)
201 uid = uid ^ ~0;
202 if (gid == 0 || gid == 0xFFFF)
203 gid = gid ^ ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 }
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700205 if (!affs_test_opt(AFFS_SB(sb)->s_flags, SF_SETUID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 tail->uid = cpu_to_be16(uid);
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700207 if (!affs_test_opt(AFFS_SB(sb)->s_flags, SF_SETGID))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 tail->gid = cpu_to_be16(gid);
209 }
210 }
211 affs_fix_checksum(sb, bh);
212 mark_buffer_dirty_inode(bh, inode);
213 affs_brelse(bh);
214 affs_free_prealloc(inode);
215 return 0;
216}
217
218int
219affs_notify_change(struct dentry *dentry, struct iattr *attr)
220{
David Howells2b0143b2015-03-17 22:25:59 +0000221 struct inode *inode = d_inode(dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 int error;
223
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700224 pr_debug("notify_change(%lu,0x%x)\n", inode->i_ino, attr->ia_valid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Jan Kara31051c82016-05-26 16:55:18 +0200226 error = setattr_prepare(dentry, attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 if (error)
228 goto out;
229
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700230 if (((attr->ia_valid & ATTR_UID) &&
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700231 affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_SETUID)) ||
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700232 ((attr->ia_valid & ATTR_GID) &&
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700233 affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_SETGID)) ||
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 ((attr->ia_valid & ATTR_MODE) &&
Fabian Fredericka0016ff2015-04-16 12:48:15 -0700235 (AFFS_SB(inode->i_sb)->s_flags &
236 (AFFS_MOUNT_SF_SETMODE | AFFS_MOUNT_SF_IMMUTABLE)))) {
Fabian Frederick79bda4d2015-04-16 12:48:24 -0700237 if (!affs_test_opt(AFFS_SB(inode->i_sb)->s_flags, SF_QUIET))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 error = -EPERM;
239 goto out;
240 }
241
Christoph Hellwig10257742010-06-04 11:30:02 +0200242 if ((attr->ia_valid & ATTR_SIZE) &&
243 attr->ia_size != i_size_read(inode)) {
Marco Stornelli1dc18342012-12-15 11:51:53 +0100244 error = inode_newsize_ok(inode, attr->ia_size);
Christoph Hellwig10257742010-06-04 11:30:02 +0200245 if (error)
246 return error;
Marco Stornelli1dc18342012-12-15 11:51:53 +0100247
248 truncate_setsize(inode, attr->ia_size);
249 affs_truncate(inode);
Christoph Hellwig10257742010-06-04 11:30:02 +0200250 }
251
252 setattr_copy(inode, attr);
253 mark_inode_dirty(inode);
254
255 if (attr->ia_valid & ATTR_MODE)
Fabian Frederickc1618202017-02-27 14:27:54 -0800256 affs_mode_to_prot(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257out:
258 return error;
259}
260
261void
Al Virof053ddd2010-06-06 10:16:41 -0400262affs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
Roman Zippeldca3c332008-04-29 17:02:20 +0200264 unsigned long cache_page;
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700265 pr_debug("evict_inode(ino=%lu, nlink=%u)\n",
266 inode->i_ino, inode->i_nlink);
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700267 truncate_inode_pages_final(&inode->i_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Al Virof053ddd2010-06-06 10:16:41 -0400269 if (!inode->i_nlink) {
270 inode->i_size = 0;
271 affs_truncate(inode);
272 }
Roman Zippeldca3c332008-04-29 17:02:20 +0200273
Al Virof053ddd2010-06-06 10:16:41 -0400274 invalidate_inode_buffers(inode);
Jan Karadbd57682012-05-03 14:48:02 +0200275 clear_inode(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +0200276 affs_free_prealloc(inode);
277 cache_page = (unsigned long)AFFS_I(inode)->i_lc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 if (cache_page) {
Fabian Frederick9606d9a2014-06-06 14:37:25 -0700279 pr_debug("freeing ext cache\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 AFFS_I(inode)->i_lc = NULL;
281 AFFS_I(inode)->i_ac = NULL;
282 free_page(cache_page);
283 }
284 affs_brelse(AFFS_I(inode)->i_ext_bh);
285 AFFS_I(inode)->i_ext_last = ~1;
286 AFFS_I(inode)->i_ext_bh = NULL;
Al Virof053ddd2010-06-06 10:16:41 -0400287
288 if (!inode->i_nlink)
289 affs_free_block(inode->i_sb, inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290}
291
292struct inode *
293affs_new_inode(struct inode *dir)
294{
295 struct super_block *sb = dir->i_sb;
296 struct inode *inode;
297 u32 block;
298 struct buffer_head *bh;
299
300 if (!(inode = new_inode(sb)))
301 goto err_inode;
302
303 if (!(block = affs_alloc_block(dir, dir->i_ino)))
304 goto err_block;
305
306 bh = affs_getzeroblk(sb, block);
307 if (!bh)
308 goto err_bh;
309 mark_buffer_dirty_inode(bh, inode);
310 affs_brelse(bh);
311
David Howells21559982008-11-14 10:38:45 +1100312 inode->i_uid = current_fsuid();
313 inode->i_gid = current_fsgid();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 inode->i_ino = block;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200315 set_nlink(inode, 1);
Deepa Dinamani02027d42016-09-14 07:48:05 -0700316 inode->i_mtime = inode->i_atime = inode->i_ctime = current_time(inode);
Roman Zippeldca3c332008-04-29 17:02:20 +0200317 atomic_set(&AFFS_I(inode)->i_opencnt, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 AFFS_I(inode)->i_blkcnt = 0;
319 AFFS_I(inode)->i_lc = NULL;
320 AFFS_I(inode)->i_lc_size = 0;
321 AFFS_I(inode)->i_lc_shift = 0;
322 AFFS_I(inode)->i_lc_mask = 0;
323 AFFS_I(inode)->i_ac = NULL;
324 AFFS_I(inode)->i_ext_bh = NULL;
325 AFFS_I(inode)->mmu_private = 0;
326 AFFS_I(inode)->i_protect = 0;
327 AFFS_I(inode)->i_lastalloc = 0;
328 AFFS_I(inode)->i_pa_cnt = 0;
329 AFFS_I(inode)->i_extcnt = 1;
330 AFFS_I(inode)->i_ext_last = ~1;
331
332 insert_inode_hash(inode);
333
334 return inode;
335
336err_bh:
337 affs_free_block(sb, block);
338err_block:
339 iput(inode);
340err_inode:
341 return NULL;
342}
343
344/*
345 * Add an entry to a directory. Create the header block
346 * and insert it into the hash table.
347 */
348
349int
350affs_add_entry(struct inode *dir, struct inode *inode, struct dentry *dentry, s32 type)
351{
352 struct super_block *sb = dir->i_sb;
353 struct buffer_head *inode_bh = NULL;
Fabian Frederick78f444f2015-06-30 14:57:55 -0700354 struct buffer_head *bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 u32 block = 0;
356 int retval;
357
Geert Uytterhoeven08fe1002015-02-17 13:46:10 -0800358 pr_debug("%s(dir=%lu, inode=%lu, \"%pd\", type=%d)\n", __func__,
359 dir->i_ino, inode->i_ino, dentry, type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360
361 retval = -EIO;
362 bh = affs_bread(sb, inode->i_ino);
363 if (!bh)
364 goto done;
365
366 affs_lock_link(inode);
367 switch (type) {
368 case ST_LINKFILE:
369 case ST_LINKDIR:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 retval = -ENOSPC;
371 block = affs_alloc_block(dir, dir->i_ino);
372 if (!block)
373 goto err;
374 retval = -EIO;
Roman Zippeldca3c332008-04-29 17:02:20 +0200375 inode_bh = bh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 bh = affs_getzeroblk(sb, block);
377 if (!bh)
378 goto err;
379 break;
380 default:
381 break;
382 }
383
384 AFFS_HEAD(bh)->ptype = cpu_to_be32(T_SHORT);
385 AFFS_HEAD(bh)->key = cpu_to_be32(bh->b_blocknr);
386 affs_copy_name(AFFS_TAIL(sb, bh)->name, dentry);
387 AFFS_TAIL(sb, bh)->stype = cpu_to_be32(type);
388 AFFS_TAIL(sb, bh)->parent = cpu_to_be32(dir->i_ino);
389
390 if (inode_bh) {
391 __be32 chain;
392 chain = AFFS_TAIL(sb, inode_bh)->link_chain;
393 AFFS_TAIL(sb, bh)->original = cpu_to_be32(inode->i_ino);
394 AFFS_TAIL(sb, bh)->link_chain = chain;
395 AFFS_TAIL(sb, inode_bh)->link_chain = cpu_to_be32(block);
396 affs_adjust_checksum(inode_bh, block - be32_to_cpu(chain));
397 mark_buffer_dirty_inode(inode_bh, inode);
Miklos Szeredibfe86842011-10-28 14:13:29 +0200398 set_nlink(inode, 2);
Al Viro7de9c6ee2010-10-23 11:11:40 -0400399 ihold(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401 affs_fix_checksum(sb, bh);
402 mark_buffer_dirty_inode(bh, inode);
403 dentry->d_fsdata = (void *)(long)bh->b_blocknr;
404
405 affs_lock_dir(dir);
406 retval = affs_insert_hash(dir, bh);
407 mark_buffer_dirty_inode(bh, inode);
408 affs_unlock_dir(dir);
409 affs_unlock_link(inode);
410
411 d_instantiate(dentry, inode);
412done:
413 affs_brelse(inode_bh);
414 affs_brelse(bh);
415 return retval;
416err:
417 if (block)
418 affs_free_block(sb, block);
419 affs_unlock_link(inode);
420 goto done;
421}