summaryrefslogtreecommitdiff
path: root/libdiskfs/dir-init.c
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1994-02-02 20:55:21 +0000
committerMichael I. Bushnell <mib@gnu.org>1994-02-02 20:55:21 +0000
commit3ee3f8ccac59014de06a7ee568842b23a44206d0 (patch)
tree749d68e76522be8d0e01c6fec4531ec7c02a10f0 /libdiskfs/dir-init.c
parentb5a27b1c53875dbb25c33a735b9bc22ac044ebba (diff)
Initial revision
Diffstat (limited to 'libdiskfs/dir-init.c')
-rw-r--r--libdiskfs/dir-init.c58
1 files changed, 58 insertions, 0 deletions
diff --git a/libdiskfs/dir-init.c b/libdiskfs/dir-init.c
new file mode 100644
index 00000000..a9e14a7d
--- /dev/null
+++ b/libdiskfs/dir-init.c
@@ -0,0 +1,58 @@
+/*
+ Copyright (C) 1994 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
+ published by the Free Software Foundation; either version 2, or (at
+ your option) any later version.
+
+ This program 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., 675 Mass Ave, Cambridge, MA 02139, USA. */
+
+#include "priv.h"
+
+/* Locked node DP is a new directory; add whatever links are necessary
+ to give it structure; its parent is the (locked) node PDP.
+ This routine may not call diskfs_lookup on PDP. The new directory
+ must be clear within the meaning of diskfs_dirempty. */
+error_t
+diskfs_init_dir (struct node *dp, struct node *pdp)
+{
+ struct dirstat *ds = alloca (diskfs_dirstat_size);
+ struct node *foo;
+
+ /* New links */
+ if (pdp->dn_stat.st_nlink == LINK_MAX - 1)
+ return EMLINK;
+
+ np->dn_stat.st_nlink++; /* for `.' */
+ np->dn_set_ctime = 1;
+ err = diskfs_lookup (np, ".", CREATE, &foo, dirds, cred);
+ assert (err == ENOENT);
+ err = diskfs_direnter (np, ".", np, dirds, cred);
+ if (err)
+ {
+ np->dn_stat.st_nlink--;
+ np->dn_set_ctime = 1;
+ return err;
+ }
+
+ pdp->dn_stat.st_nlink++; /* for `..' */
+ pdp->dn_set_ctime = 1;
+ err = diskfs_lookup (np, "..", CREATE, &foo, dirds, cred);
+ assert (err == ENOENT);
+ err = diskfs_direnter (np, "..", dir, dirds, cred);
+ if (err)
+ {
+ pdp->dn_stat.st_nlink--;
+ pdp->dn_set_ctime = 1;
+ return err;
+ }
+ diskfs_node_update (dir, 1);
+}