From b0e48f225888bdc5304000616e8159beb9074fb2 Mon Sep 17 00:00:00 2001 From: phk Date: Fri, 3 Dec 2004 18:14:22 +0000 Subject: Do not blindly pass linux filesystem specific mount data across. --- sys/compat/linux/linux_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c index bf13cfd..dbbf885 100644 --- a/sys/compat/linux/linux_file.c +++ b/sys/compat/linux/linux_file.c @@ -798,7 +798,7 @@ linux_mount(struct thread *td, struct linux_mount_args *args) "fspath", mntonname, NULL); } else - error = vfs_mount(td, fstypename, mntonname, fsflags, fsdata); + error = EOPNOTSUPP; return (error); } -- cgit v1.1