diff -NurpP --minimal linux-2.4.25-pre6-vs1.24/fs/namespace.c linux-2.4.25-pre6-vs1.24-npm/fs/namespace.c --- linux-2.4.25-pre6-vs1.24/fs/namespace.c Fri Nov 28 19:26:21 2003 +++ linux-2.4.25-pre6-vs1.24-npm/fs/namespace.c Sun Jan 18 04:12:48 2004 @@ -20,6 +20,7 @@ #include #include +#include struct vfsmount *do_kern_mount(const char *type, int flags, char *name, void *data); int do_remount_sb(struct super_block *sb, int flags, void * data); @@ -220,6 +221,8 @@ static int show_vfsmnt(struct seq_file * return PTR_ERR(path); } + if (!vx_check(0, VX_ADMIN|VX_WATCH)) + goto out; mangle(m, mnt->mnt_devname ? mnt->mnt_devname : "none"); seq_putc(m, ' '); mangle(m, path); @@ -238,6 +241,7 @@ static int show_vfsmnt(struct seq_file * if (mnt->mnt_sb->s_op->show_options) err = mnt->mnt_sb->s_op->show_options(m, mnt); seq_puts(m, " 0 0\n"); +out: return err; }