[Envfs-commits] CVS: envfs/fs/envfs super.c,1.3,1.4
Status: Pre-Alpha
Brought to you by:
lethal
|
From: Paul M. <le...@us...> - 2001-09-23 04:29:02
|
Update of /cvsroot/envfs/envfs/fs/envfs
In directory usw-pr-cvs1:/tmp/cvs-serv21471
Modified Files:
super.c
Log Message:
Oops.. get rid of envfs_dump_vars() on statfs.
Index: super.c
===================================================================
RCS file: /cvsroot/envfs/envfs/fs/envfs/super.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- super.c 2001/09/23 04:28:10 1.3
+++ super.c 2001/09/23 04:28:59 1.4
@@ -18,12 +18,9 @@
spinlock_t envfs_lock = SPIN_LOCK_UNLOCKED;
struct list_head *envfs_dentry_list;
-extern int envfs_dump_vars(void);
-
static int envfs_statfs(struct super_block *sb, struct statfs *buf)
{
envfs_debug("entering\n");
- envfs_dump_vars();
buf->f_type = ENVFS_SUPER_MAGIC;
buf->f_bsize = PAGE_CACHE_SIZE;
buf->f_namelen = NAME_MAX;
|