All of lore.kernel.org
 help / color / mirror / Atom feed
* [Patch] correct tmpfs link count for directories
@ 2001-02-13 17:47 Christoph Rohland
  2001-02-13 18:23 ` Alan Cox
  0 siblings, 1 reply; 2+ messages in thread
From: Christoph Rohland @ 2001-02-13 17:47 UTC (permalink / raw)
  To: Alan Cox; +Cc: linux-kernel, Andreas J. Koenig

Hi Alan,

The attached patch makes tmpfs behave more like other fs's. Apparently
perl expects this.

Greetings
		Christoph

diff -uNr 2.4.1-ac10/mm/shmem.c 2.4.1-ac10-nlink/mm/shmem.c
--- 2.4.1-ac10/mm/shmem.c	Mon Feb 12 15:01:47 2001
+++ 2.4.1-ac10-nlink/mm/shmem.c	Tue Feb 13 13:48:49 2001
@@ -465,6 +465,7 @@
 			inode->i_fop = &shmem_file_operations;
 			break;
 		case S_IFDIR:
+			inode->i_nlink++;
 			inode->i_op = &shmem_dir_inode_operations;
 			inode->i_fop = &shmem_dir_operations;
 			break;
@@ -743,7 +744,12 @@
 
 static int shmem_mkdir(struct inode * dir, struct dentry * dentry, int mode)
 {
-	return shmem_mknod(dir, dentry, mode | S_IFDIR, 0);
+	int error;
+
+	if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
+		return error;
+	dir->i_nlink++;
+	return 0;
 }
 
 static int shmem_create(struct inode *dir, struct dentry *dentry, int mode)
@@ -801,25 +807,21 @@
 	return 1;
 }
 
-/*
- * This works for both directories and regular files.
- * (non-directories will always have empty subdirs)
- */
 static int shmem_unlink(struct inode * dir, struct dentry *dentry)
 {
-	int retval = -ENOTEMPTY;
+	dentry->d_inode->i_nlink--;
+	dput(dentry);	/* Undo the count from "create" - this does all the work */
+	return 0;
+}
 
-	if (shmem_empty(dentry)) {
-		struct inode *inode = dentry->d_inode;
+static int shmem_rmdir(struct inode * dir, struct dentry *dentry)
+{
+	if (!shmem_empty(dentry))
+		return -ENOTEMPTY;
 
-		inode->i_nlink--;
-		dput(dentry);	/* Undo the count from "create" - this does all the work */
-		retval = 0;
-	}
-	return retval;
+	dir->i_nlink--;
+	return shmem_unlink(dir, dentry);
 }
-
-#define shmem_rmdir shmem_unlink
 
 /*
  * The VFS layer already does all the dentry stuff for rename,



^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [Patch] correct tmpfs link count for directories
  2001-02-13 17:47 [Patch] correct tmpfs link count for directories Christoph Rohland
@ 2001-02-13 18:23 ` Alan Cox
  0 siblings, 0 replies; 2+ messages in thread
From: Alan Cox @ 2001-02-13 18:23 UTC (permalink / raw)
  To: Christoph Rohland; +Cc: Alan Cox, linux-kernel, Andreas J. Koenig

> The attached patch makes tmpfs behave more like other fs's. Apparently
> perl expects this.

A few apps assume this. All of them are buggy. I'll apply the patch.

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2001-02-13 18:23 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-02-13 17:47 [Patch] correct tmpfs link count for directories Christoph Rohland
2001-02-13 18:23 ` Alan Cox

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.