Do not blindly pass linux filesystem specific mount data across.

This commit is contained in:
phk 2004-12-03 18:14:22 +00:00
parent 0b04552e35
commit ebb024738d

View File

@ -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);
}