]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/coda/dir.c
coda: cleanup coda_lookup, use dsplice_alias
[net-next-2.6.git] / fs / coda / dir.c
CommitLineData
1da177e4
LT
1
2/*
3 * Directory operations for Coda filesystem
4 * Original version: (C) 1996 P. Braam and M. Callahan
5 * Rewritten for Linux 2.1. (C) 1997 Carnegie Mellon University
6 *
7 * Carnegie Mellon encourages users to contribute improvements to
8 * the Coda project. Contact Peter Braam (coda@cs.cmu.edu).
9 */
10
11#include <linux/types.h>
12#include <linux/kernel.h>
13#include <linux/time.h>
14#include <linux/fs.h>
15#include <linux/file.h>
16#include <linux/stat.h>
17#include <linux/errno.h>
18#include <linux/string.h>
19#include <linux/smp_lock.h>
20
21#include <asm/uaccess.h>
22
23#include <linux/coda.h>
24#include <linux/coda_linux.h>
25#include <linux/coda_psdev.h>
26#include <linux/coda_fs_i.h>
27#include <linux/coda_cache.h>
28#include <linux/coda_proc.h>
29
c98d8cfb
AB
30#include "coda_int.h"
31
1da177e4
LT
32/* dir inode-ops */
33static int coda_create(struct inode *dir, struct dentry *new, int mode, struct nameidata *nd);
34static struct dentry *coda_lookup(struct inode *dir, struct dentry *target, struct nameidata *nd);
35static int coda_link(struct dentry *old_dentry, struct inode *dir_inode,
36 struct dentry *entry);
37static int coda_unlink(struct inode *dir_inode, struct dentry *entry);
38static int coda_symlink(struct inode *dir_inode, struct dentry *entry,
39 const char *symname);
40static int coda_mkdir(struct inode *dir_inode, struct dentry *entry, int mode);
41static int coda_rmdir(struct inode *dir_inode, struct dentry *entry);
42static int coda_rename(struct inode *old_inode, struct dentry *old_dentry,
43 struct inode *new_inode, struct dentry *new_dentry);
44
45/* dir file-ops */
97875253 46static int coda_readdir(struct file *file, void *buf, filldir_t filldir);
1da177e4
LT
47
48/* dentry ops */
49static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd);
50static int coda_dentry_delete(struct dentry *);
51
52/* support routines */
97875253
JH
53static int coda_venus_readdir(struct file *coda_file, void *buf,
54 filldir_t filldir);
1da177e4
LT
55
56/* same as fs/bad_inode.c */
57static int coda_return_EIO(void)
58{
59 return -EIO;
60}
61#define CODA_EIO_ERROR ((void *) (coda_return_EIO))
62
63static struct dentry_operations coda_dentry_operations =
64{
65 .d_revalidate = coda_dentry_revalidate,
66 .d_delete = coda_dentry_delete,
67};
68
754661f1 69const struct inode_operations coda_dir_inode_operations =
1da177e4
LT
70{
71 .create = coda_create,
72 .lookup = coda_lookup,
73 .link = coda_link,
74 .unlink = coda_unlink,
75 .symlink = coda_symlink,
76 .mkdir = coda_mkdir,
77 .rmdir = coda_rmdir,
78 .mknod = CODA_EIO_ERROR,
79 .rename = coda_rename,
80 .permission = coda_permission,
81 .getattr = coda_getattr,
82 .setattr = coda_setattr,
83};
84
4b6f5d20 85const struct file_operations coda_dir_operations = {
1da177e4
LT
86 .llseek = generic_file_llseek,
87 .read = generic_read_dir,
88 .readdir = coda_readdir,
89 .open = coda_open,
90 .flush = coda_flush,
91 .release = coda_release,
92 .fsync = coda_fsync,
93};
94
95
96/* inode operations for directories */
97/* access routines: lookup, readlink, permission */
98static struct dentry *coda_lookup(struct inode *dir, struct dentry *entry, struct nameidata *nd)
99{
ed36f723 100 struct inode *inode = NULL;
1da177e4 101 struct CodaFid resfid = { { 0, } };
1da177e4
LT
102 int type = 0;
103 int error = 0;
104 const char *name = entry->d_name.name;
105 size_t length = entry->d_name.len;
ed36f723
JH
106
107 if (length > CODA_MAXNAMLEN) {
108 printk(KERN_ERR "name too long: lookup, %s (%*s)\n",
1da177e4
LT
109 coda_i2s(dir), (int)length, name);
110 return ERR_PTR(-ENAMETOOLONG);
111 }
112
ed36f723
JH
113 /* control object, create inode on the fly */
114 if (coda_isroot(dir) && coda_iscontrol(name, length)) {
115 error = coda_cnode_makectl(&inode, dir->i_sb);
116 type = CODA_NOCACHE;
117 goto exit;
118 }
119
1da177e4 120 lock_kernel();
ed36f723
JH
121
122 error = venus_lookup(dir->i_sb, coda_i2f(dir), name, length,
123 &type, &resfid);
124 if (!error)
125 error = coda_cnode_make(&inode, &resfid, dir->i_sb);
126
127 unlock_kernel();
128
129 if (error && error != -ENOENT)
1da177e4 130 return ERR_PTR(error);
1da177e4
LT
131
132exit:
1da177e4 133 entry->d_op = &coda_dentry_operations;
ed36f723
JH
134
135 if (inode && (type & CODA_NOCACHE))
136 coda_flag_inode(inode, C_VATTR | C_PURGE);
137
138 return d_splice_alias(inode, entry);
1da177e4
LT
139}
140
141
142int coda_permission(struct inode *inode, int mask, struct nameidata *nd)
143{
144 int error = 0;
145
146 if (!mask)
147 return 0;
148
149 lock_kernel();
150
151 coda_vfs_stat.permission++;
152
153 if (coda_cache_check(inode, mask))
154 goto out;
155
156 error = venus_access(inode->i_sb, coda_i2f(inode), mask);
157
158 if (!error)
159 coda_cache_enter(inode, mask);
160
161 out:
162 unlock_kernel();
d728900c 163 return error;
1da177e4
LT
164}
165
166
d728900c 167static inline void coda_dir_update_mtime(struct inode *dir)
1da177e4
LT
168{
169#ifdef REQUERY_VENUS_FOR_MTIME
170 /* invalidate the directory cnode's attributes so we refetch the
171 * attributes from venus next time the inode is referenced */
172 coda_flag_inode(dir, C_VATTR);
173#else
174 /* optimistically we can also act as if our nose bleeds. The
d728900c
JH
175 * granularity of the mtime is coarse anyways so we might actually be
176 * right most of the time. Note: we only do this for directories. */
1da177e4
LT
177 dir->i_mtime = dir->i_ctime = CURRENT_TIME_SEC;
178#endif
d728900c
JH
179}
180
181/* we have to wrap inc_nlink/drop_nlink because sometimes userspace uses a
182 * trick to fool GNU find's optimizations. If we can't be sure of the link
183 * (because of volume mount points) we set i_nlink to 1 which forces find
184 * to consider every child as a possible directory. We should also never
185 * see an increment or decrement for deleted directories where i_nlink == 0 */
186static inline void coda_dir_inc_nlink(struct inode *dir)
187{
188 if (dir->i_nlink >= 2)
189 inc_nlink(dir);
190}
191
192static inline void coda_dir_drop_nlink(struct inode *dir)
193{
194 if (dir->i_nlink > 2)
195 drop_nlink(dir);
1da177e4
LT
196}
197
198/* creation routines: create, mknod, mkdir, link, symlink */
199static int coda_create(struct inode *dir, struct dentry *de, int mode, struct nameidata *nd)
200{
201 int error=0;
202 const char *name=de->d_name.name;
203 int length=de->d_name.len;
204 struct inode *inode;
205 struct CodaFid newfid;
206 struct coda_vattr attrs;
207
208 lock_kernel();
209 coda_vfs_stat.create++;
210
211 if (coda_isroot(dir) && coda_iscontrol(name, length)) {
212 unlock_kernel();
213 return -EPERM;
214 }
215
216 error = venus_create(dir->i_sb, coda_i2f(dir), name, length,
217 0, mode, &newfid, &attrs);
218
219 if ( error ) {
220 unlock_kernel();
221 d_drop(de);
222 return error;
223 }
224
225 inode = coda_iget(dir->i_sb, &newfid, &attrs);
226 if ( IS_ERR(inode) ) {
227 unlock_kernel();
228 d_drop(de);
229 return PTR_ERR(inode);
230 }
231
232 /* invalidate the directory cnode's attributes */
d728900c 233 coda_dir_update_mtime(dir);
1da177e4
LT
234 unlock_kernel();
235 d_instantiate(de, inode);
d728900c 236 return 0;
1da177e4
LT
237}
238
239static int coda_mkdir(struct inode *dir, struct dentry *de, int mode)
240{
241 struct inode *inode;
242 struct coda_vattr attrs;
243 const char *name = de->d_name.name;
244 int len = de->d_name.len;
245 int error;
246 struct CodaFid newfid;
247
248 lock_kernel();
249 coda_vfs_stat.mkdir++;
250
251 if (coda_isroot(dir) && coda_iscontrol(name, len)) {
252 unlock_kernel();
253 return -EPERM;
254 }
255
256 attrs.va_mode = mode;
257 error = venus_mkdir(dir->i_sb, coda_i2f(dir),
258 name, len, &newfid, &attrs);
259
260 if ( error ) {
261 unlock_kernel();
262 d_drop(de);
263 return error;
264 }
265
266 inode = coda_iget(dir->i_sb, &newfid, &attrs);
267 if ( IS_ERR(inode) ) {
268 unlock_kernel();
269 d_drop(de);
270 return PTR_ERR(inode);
271 }
d728900c 272
1da177e4 273 /* invalidate the directory cnode's attributes */
d728900c
JH
274 coda_dir_inc_nlink(dir);
275 coda_dir_update_mtime(dir);
1da177e4
LT
276 unlock_kernel();
277 d_instantiate(de, inode);
d728900c 278 return 0;
1da177e4
LT
279}
280
281/* try to make de an entry in dir_inodde linked to source_de */
282static int coda_link(struct dentry *source_de, struct inode *dir_inode,
283 struct dentry *de)
284{
285 struct inode *inode = source_de->d_inode;
286 const char * name = de->d_name.name;
287 int len = de->d_name.len;
288 int error;
289
290 lock_kernel();
291 coda_vfs_stat.link++;
292
293 if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
294 unlock_kernel();
295 return -EPERM;
296 }
297
298 error = venus_link(dir_inode->i_sb, coda_i2f(inode),
299 coda_i2f(dir_inode), (const char *)name, len);
300
d728900c 301 if (error) {
1da177e4
LT
302 d_drop(de);
303 goto out;
304 }
305
d728900c 306 coda_dir_update_mtime(dir_inode);
1da177e4
LT
307 atomic_inc(&inode->i_count);
308 d_instantiate(de, inode);
d8c76e6f 309 inc_nlink(inode);
d728900c 310
1da177e4
LT
311out:
312 unlock_kernel();
313 return(error);
314}
315
316
317static int coda_symlink(struct inode *dir_inode, struct dentry *de,
318 const char *symname)
319{
320 const char *name = de->d_name.name;
321 int len = de->d_name.len;
322 int symlen;
323 int error=0;
324
325 lock_kernel();
326 coda_vfs_stat.symlink++;
327
328 if (coda_isroot(dir_inode) && coda_iscontrol(name, len)) {
329 unlock_kernel();
330 return -EPERM;
331 }
332
333 symlen = strlen(symname);
334 if ( symlen > CODA_MAXPATHLEN ) {
335 unlock_kernel();
336 return -ENAMETOOLONG;
337 }
338
339 /*
340 * This entry is now negative. Since we do not create
d728900c 341 * an inode for the entry we have to drop it.
1da177e4
LT
342 */
343 d_drop(de);
d728900c 344 error = venus_symlink(dir_inode->i_sb, coda_i2f(dir_inode), name, len,
1da177e4
LT
345 symname, symlen);
346
347 /* mtime is no good anymore */
348 if ( !error )
d728900c 349 coda_dir_update_mtime(dir_inode);
1da177e4
LT
350
351 unlock_kernel();
d728900c 352 return error;
1da177e4
LT
353}
354
355/* destruction routines: unlink, rmdir */
356int coda_unlink(struct inode *dir, struct dentry *de)
357{
358 int error;
359 const char *name = de->d_name.name;
360 int len = de->d_name.len;
361
362 lock_kernel();
363 coda_vfs_stat.unlink++;
364
d728900c
JH
365 error = venus_remove(dir->i_sb, coda_i2f(dir), name, len);
366 if ( error ) {
1da177e4 367 unlock_kernel();
d728900c
JH
368 return error;
369 }
1da177e4 370
d728900c 371 coda_dir_update_mtime(dir);
9a53c3a7 372 drop_nlink(de->d_inode);
1da177e4 373 unlock_kernel();
d728900c 374 return 0;
1da177e4
LT
375}
376
377int coda_rmdir(struct inode *dir, struct dentry *de)
378{
379 const char *name = de->d_name.name;
380 int len = de->d_name.len;
8c6d2152 381 int error;
1da177e4
LT
382
383 lock_kernel();
384 coda_vfs_stat.rmdir++;
385
1da177e4 386 error = venus_rmdir(dir->i_sb, coda_i2f(dir), name, len);
8c6d2152
JH
387 if (!error) {
388 /* VFS may delete the child */
389 if (de->d_inode)
390 de->d_inode->i_nlink = 0;
1da177e4 391
8c6d2152
JH
392 /* fix the link count of the parent */
393 coda_dir_drop_nlink(dir);
394 coda_dir_update_mtime(dir);
d728900c 395 }
1da177e4 396 unlock_kernel();
8c6d2152 397 return error;
1da177e4
LT
398}
399
400/* rename */
d728900c 401static int coda_rename(struct inode *old_dir, struct dentry *old_dentry,
1da177e4
LT
402 struct inode *new_dir, struct dentry *new_dentry)
403{
d728900c
JH
404 const char *old_name = old_dentry->d_name.name;
405 const char *new_name = new_dentry->d_name.name;
1da177e4
LT
406 int old_length = old_dentry->d_name.len;
407 int new_length = new_dentry->d_name.len;
d728900c 408 int error;
1da177e4
LT
409
410 lock_kernel();
411 coda_vfs_stat.rename++;
412
d728900c
JH
413 error = venus_rename(old_dir->i_sb, coda_i2f(old_dir),
414 coda_i2f(new_dir), old_length, new_length,
1da177e4
LT
415 (const char *) old_name, (const char *)new_name);
416
d728900c 417 if ( !error ) {
1da177e4 418 if ( new_dentry->d_inode ) {
d728900c
JH
419 if ( S_ISDIR(new_dentry->d_inode->i_mode) ) {
420 coda_dir_drop_nlink(old_dir);
421 coda_dir_inc_nlink(new_dir);
422 }
423 coda_dir_update_mtime(old_dir);
424 coda_dir_update_mtime(new_dir);
1da177e4
LT
425 coda_flag_inode(new_dentry->d_inode, C_VATTR);
426 } else {
427 coda_flag_inode(old_dir, C_VATTR);
428 coda_flag_inode(new_dir, C_VATTR);
d728900c 429 }
1da177e4
LT
430 }
431 unlock_kernel();
432
433 return error;
434}
435
436
437/* file operations for directories */
97875253 438int coda_readdir(struct file *coda_file, void *buf, filldir_t filldir)
1da177e4 439{
1da177e4
LT
440 struct coda_file_info *cfi;
441 struct file *host_file;
1da177e4
LT
442 int ret;
443
444 cfi = CODA_FTOC(coda_file);
445 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
446 host_file = cfi->cfi_container;
447
448 coda_vfs_stat.readdir++;
449
97875253
JH
450 if (!host_file->f_op)
451 return -ENOTDIR;
452
453 if (host_file->f_op->readdir)
454 {
455 /* potemkin case: we were handed a directory inode.
456 * We can't use vfs_readdir because we have to keep the file
457 * position in sync between the coda_file and the host_file.
458 * and as such we need grab the inode mutex. */
459 struct inode *host_inode = host_file->f_path.dentry->d_inode;
460
461 mutex_lock(&host_inode->i_mutex);
462 host_file->f_pos = coda_file->f_pos;
1da177e4
LT
463
464 ret = -ENOENT;
465 if (!IS_DEADDIR(host_inode)) {
97875253 466 ret = host_file->f_op->readdir(host_file, buf, filldir);
1da177e4
LT
467 file_accessed(host_file);
468 }
97875253
JH
469
470 coda_file->f_pos = host_file->f_pos;
471 mutex_unlock(&host_inode->i_mutex);
1da177e4 472 }
97875253
JH
473 else /* Venus: we must read Venus dirents from a file */
474 ret = coda_venus_readdir(coda_file, buf, filldir);
1da177e4
LT
475
476 return ret;
477}
478
479static inline unsigned int CDT2DT(unsigned char cdt)
480{
481 unsigned int dt;
482
483 switch(cdt) {
484 case CDT_UNKNOWN: dt = DT_UNKNOWN; break;
485 case CDT_FIFO: dt = DT_FIFO; break;
486 case CDT_CHR: dt = DT_CHR; break;
487 case CDT_DIR: dt = DT_DIR; break;
488 case CDT_BLK: dt = DT_BLK; break;
489 case CDT_REG: dt = DT_REG; break;
490 case CDT_LNK: dt = DT_LNK; break;
491 case CDT_SOCK: dt = DT_SOCK; break;
492 case CDT_WHT: dt = DT_WHT; break;
493 default: dt = DT_UNKNOWN; break;
494 }
495 return dt;
496}
497
498/* support routines */
97875253
JH
499static int coda_venus_readdir(struct file *coda_file, void *buf,
500 filldir_t filldir)
1da177e4
LT
501{
502 int result = 0; /* # of entries returned */
97875253
JH
503 struct coda_file_info *cfi;
504 struct coda_inode_info *cii;
505 struct file *host_file;
506 struct dentry *de;
1da177e4
LT
507 struct venus_dirent *vdir;
508 unsigned long vdir_size =
509 (unsigned long)(&((struct venus_dirent *)0)->d_name);
510 unsigned int type;
511 struct qstr name;
512 ino_t ino;
97875253
JH
513 int ret;
514
515 cfi = CODA_FTOC(coda_file);
516 BUG_ON(!cfi || cfi->cfi_magic != CODA_MAGIC);
517 host_file = cfi->cfi_container;
518
519 de = coda_file->f_path.dentry;
520 cii = ITOC(de->d_inode);
1da177e4 521
f52720ca 522 vdir = kmalloc(sizeof(*vdir), GFP_KERNEL);
1da177e4
LT
523 if (!vdir) return -ENOMEM;
524
97875253 525 switch (coda_file->f_pos) {
1da177e4 526 case 0:
97875253 527 ret = filldir(buf, ".", 1, 0, de->d_inode->i_ino, DT_DIR);
1da177e4
LT
528 if (ret < 0) break;
529 result++;
97875253 530 coda_file->f_pos++;
1da177e4
LT
531 /* fallthrough */
532 case 1:
97875253 533 ret = filldir(buf, "..", 2, 1, de->d_parent->d_inode->i_ino, DT_DIR);
1da177e4
LT
534 if (ret < 0) break;
535 result++;
97875253 536 coda_file->f_pos++;
1da177e4
LT
537 /* fallthrough */
538 default:
539 while (1) {
540 /* read entries from the directory file */
97875253 541 ret = kernel_read(host_file, coda_file->f_pos - 2, (char *)vdir,
1da177e4
LT
542 sizeof(*vdir));
543 if (ret < 0) {
97875253
JH
544 printk(KERN_ERR "coda readdir: read dir %s failed %d\n",
545 coda_f2s(&cii->c_fid), ret);
1da177e4
LT
546 break;
547 }
548 if (ret == 0) break; /* end of directory file reached */
549
550 /* catch truncated reads */
551 if (ret < vdir_size || ret < vdir_size + vdir->d_namlen) {
97875253
JH
552 printk(KERN_ERR "coda readdir: short read on %s\n",
553 coda_f2s(&cii->c_fid));
1da177e4
LT
554 ret = -EBADF;
555 break;
556 }
557 /* validate whether the directory file actually makes sense */
558 if (vdir->d_reclen < vdir_size + vdir->d_namlen) {
97875253
JH
559 printk(KERN_ERR "coda readdir: invalid dir %s\n",
560 coda_f2s(&cii->c_fid));
1da177e4
LT
561 ret = -EBADF;
562 break;
563 }
564
565 name.len = vdir->d_namlen;
566 name.name = vdir->d_name;
567
568 /* Make sure we skip '.' and '..', we already got those */
569 if (name.name[0] == '.' && (name.len == 1 ||
570 (vdir->d_name[1] == '.' && name.len == 2)))
571 vdir->d_fileno = name.len = 0;
572
573 /* skip null entries */
574 if (vdir->d_fileno && name.len) {
575 /* try to look up this entry in the dcache, that way
576 * userspace doesn't have to worry about breaking
577 * getcwd by having mismatched inode numbers for
578 * internal volume mountpoints. */
97875253 579 ino = find_inode_number(de, &name);
1da177e4
LT
580 if (!ino) ino = vdir->d_fileno;
581
582 type = CDT2DT(vdir->d_type);
97875253
JH
583 ret = filldir(buf, name.name, name.len,
584 coda_file->f_pos, ino, type);
1da177e4
LT
585 /* failure means no space for filling in this round */
586 if (ret < 0) break;
587 result++;
588 }
589 /* we'll always have progress because d_reclen is unsigned and
590 * we've already established it is non-zero. */
97875253
JH
591 coda_file->f_pos += vdir->d_reclen;
592 }
1da177e4 593 }
1da177e4
LT
594 kfree(vdir);
595 return result ? result : ret;
596}
597
598/* called when a cache lookup succeeds */
599static int coda_dentry_revalidate(struct dentry *de, struct nameidata *nd)
600{
601 struct inode *inode = de->d_inode;
602 struct coda_inode_info *cii;
603
604 if (!inode)
605 return 1;
606 lock_kernel();
607 if (coda_isroot(inode))
608 goto out;
609 if (is_bad_inode(inode))
610 goto bad;
611
612 cii = ITOC(de->d_inode);
613 if (!(cii->c_flags & (C_PURGE | C_FLUSH)))
614 goto out;
615
616 shrink_dcache_parent(de);
617
618 /* propagate for a flush */
619 if (cii->c_flags & C_FLUSH)
620 coda_flag_inode_children(inode, C_FLUSH);
621
622 if (atomic_read(&de->d_count) > 1)
623 /* pretend it's valid, but don't change the flags */
624 goto out;
625
626 /* clear the flags. */
627 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
628
629bad:
630 unlock_kernel();
631 return 0;
632out:
633 unlock_kernel();
634 return 1;
635}
636
637/*
638 * This is the callback from dput() when d_count is going to 0.
639 * We use this to unhash dentries with bad inodes.
640 */
641static int coda_dentry_delete(struct dentry * dentry)
642{
643 int flags;
644
645 if (!dentry->d_inode)
646 return 0;
647
648 flags = (ITOC(dentry->d_inode)->c_flags) & C_PURGE;
649 if (is_bad_inode(dentry->d_inode) || flags) {
650 return 1;
651 }
652 return 0;
653}
654
655
656
657/*
658 * This is called when we want to check if the inode has
659 * changed on the server. Coda makes this easy since the
660 * cache manager Venus issues a downcall to the kernel when this
661 * happens
662 */
663int coda_revalidate_inode(struct dentry *dentry)
664{
665 struct coda_vattr attr;
666 int error = 0;
667 int old_mode;
668 ino_t old_ino;
669 struct inode *inode = dentry->d_inode;
670 struct coda_inode_info *cii = ITOC(inode);
671
672 lock_kernel();
673 if ( !cii->c_flags )
674 goto ok;
675
676 if (cii->c_flags & (C_VATTR | C_PURGE | C_FLUSH)) {
677 error = venus_getattr(inode->i_sb, &(cii->c_fid), &attr);
678 if ( error )
679 goto return_bad;
680
681 /* this inode may be lost if:
682 - it's ino changed
683 - type changes must be permitted for repair and
684 missing mount points.
685 */
686 old_mode = inode->i_mode;
687 old_ino = inode->i_ino;
688 coda_vattr_to_iattr(inode, &attr);
689
690 if ((old_mode & S_IFMT) != (inode->i_mode & S_IFMT)) {
691 printk("Coda: inode %ld, fid %s changed type!\n",
692 inode->i_ino, coda_f2s(&(cii->c_fid)));
693 }
694
695 /* the following can happen when a local fid is replaced
696 with a global one, here we lose and declare the inode bad */
697 if (inode->i_ino != old_ino)
698 goto return_bad;
699
700 coda_flag_inode_children(inode, C_FLUSH);
701 cii->c_flags &= ~(C_VATTR | C_PURGE | C_FLUSH);
702 }
703
704ok:
705 unlock_kernel();
706 return 0;
707
708return_bad:
709 unlock_kernel();
710 return -EIO;
711}