diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 20:48:11 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 20:48:11 +0000 |
commit | 61bcf4c3d5575a2b6683b4b64cb77c659261673d (patch) | |
tree | 7b76b5d188a9e35d63b77a2e940da34af2be5439 /libdiskfs | |
parent | e15992dab4c545842c45e5927f3611189adafcb4 (diff) |
(diskfs_clear_directory): Don't frob cache here.
Diffstat (limited to 'libdiskfs')
-rw-r--r-- | libdiskfs/dir-clear.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libdiskfs/dir-clear.c b/libdiskfs/dir-clear.c index 7088afb3..87b4fd32 100644 --- a/libdiskfs/dir-clear.c +++ b/libdiskfs/dir-clear.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1994, 1995 Free Software Foundation + Copyright (C) 1994, 1995, 1996 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -35,7 +35,6 @@ diskfs_clear_directory (struct node *dp, if (!err) { assert (np == dp); - diskfs_purge_cache_node (dp, np); err = diskfs_dirremove (dp, ds); diskfs_nrele (np); } @@ -54,7 +53,6 @@ diskfs_clear_directory (struct node *dp, if (!err) { assert (np == pdp); - diskfs_purge_cache_node (dp, np); err = diskfs_dirremove (dp, ds); } else |