diff options
| author | Boris Popov <bp@FreeBSD.org> | 2001-03-11 11:51:42 +0000 |
|---|---|---|
| committer | Boris Popov <bp@FreeBSD.org> | 2001-03-11 11:51:42 +0000 |
| commit | e3c805cd0709a203bc736de8b19d04f1cf1565bb (patch) | |
| tree | 40c314755553f3cb770a6847dc30300edf6a833b | |
| parent | 8c602ed981921f0b3d359a314f8fdafe4e9c47d4 (diff) | |
Notes
| -rw-r--r-- | sys/fs/nwfs/nwfs_vnops.c | 8 | ||||
| -rw-r--r-- | sys/nwfs/nwfs_vnops.c | 8 |
2 files changed, 4 insertions, 12 deletions
diff --git a/sys/fs/nwfs/nwfs_vnops.c b/sys/fs/nwfs/nwfs_vnops.c index 1c65b4c182da..e7e6b720b26e 100644 --- a/sys/fs/nwfs/nwfs_vnops.c +++ b/sys/fs/nwfs/nwfs_vnops.c @@ -576,13 +576,9 @@ out: vrele(fvp); nwfs_attr_cacheremove(fdvp); nwfs_attr_cacheremove(tdvp); - /* - * Need to get rid of old vnodes, because netware will change - * file id on rename - */ - vgone(fvp); + nwfs_attr_cacheremove(fvp); if (tvp) - vgone(tvp); + nwfs_attr_cacheremove(tvp); /* * Kludge: Map ENOENT => 0 assuming that it is a reply to a retry. */ diff --git a/sys/nwfs/nwfs_vnops.c b/sys/nwfs/nwfs_vnops.c index 1c65b4c182da..e7e6b720b26e 100644 --- a/sys/nwfs/nwfs_vnops.c +++ b/sys/nwfs/nwfs_vnops.c @@ -576,13 +576,9 @@ out: vrele(fvp); nwfs_attr_cacheremove(fdvp); nwfs_attr_cacheremove(tdvp); - /* - * Need to get rid of old vnodes, because netware will change - * file id on rename - */ - vgone(fvp); + nwfs_attr_cacheremove(fvp); if (tvp) - vgone(tvp); + nwfs_attr_cacheremove(tvp); /* * Kludge: Map ENOENT => 0 assuming that it is a reply to a retry. */ |
