diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 20:50:37 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-03-20 20:50:37 +0000 |
commit | 049354a66a11b9213a3e4189606ff1d99f039431 (patch) | |
tree | 21cbdf6462b9b934e867c4997ef4962b0ce0c561 /libdiskfs/dirremove.c | |
parent | cf019b1187b412eb18cb91af5c42952d9e2166a4 (diff) |
Initial revision
Diffstat (limited to 'libdiskfs/dirremove.c')
-rw-r--r-- | libdiskfs/dirremove.c | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/libdiskfs/dirremove.c b/libdiskfs/dirremove.c new file mode 100644 index 00000000..4032f0a7 --- /dev/null +++ b/libdiskfs/dirremove.c @@ -0,0 +1,45 @@ +/* Wrapper for diskfs_dirremove_hard + Copyright (C) 1996 Free Software Foundation, Inc. + Written by Michael I. Bushnell, p/BSG. + + This file is part of the GNU Hurd. + + The GNU Hurd is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2, or (at + your option) any later version. + + The GNU Hurd is distributed in the hope that it will be useful, but + WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */ + +#include "priv.h" + +/* This will only be called after a successful call to diskfs_lookup + of type REMOVE; this call should remove the name found from the + directory DS. DP has been locked continuously since the call to + diskfs_lookup and DS is as that call set it. This routine should + call diskfs_notice_dirchange if DP->dirmod_reqs is nonzero. This + function is a wrapper for diskfs_dirremove_hard. The entry being + removed has name NAME and refers to NP. */ +error_t +diskfs_dirremove (struct node *dp, + struct node *np, + char *name, + struct dirstat *ds) +{ + error_t err; + + diskfs_purge_cache (dp, np); + + err = diskfs_dirremove_hard (dp, ds); + if (!err && dp->dirmod_reqs) + diskfs_notice_dirchange (dp, DIR_CHANGED_UNLINK, name); + return err; +} + |