diff options
Diffstat (limited to 'sys/kern/vfs_mount.c')
-rw-r--r-- | sys/kern/vfs_mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/vfs_mount.c b/sys/kern/vfs_mount.c index ae7f30c..3dd4b06 100644 --- a/sys/kern/vfs_mount.c +++ b/sys/kern/vfs_mount.c @@ -596,7 +596,7 @@ vfs_nmount(td, fsflags, fsoptions) vput(vp); goto bad; } - error = linker_load_file(fstype, &lf); + error = linker_load_module(NULL, fstype, NULL, NULL, &lf); if (error || lf == NULL) { vput(vp); if (lf == NULL) @@ -964,7 +964,7 @@ vfs_mount(td, fstype, fspath, fsflags, fsdata) vput(vp); return (error); } - error = linker_load_file(fstype, &lf); + error = linker_load_module(NULL, fstype, NULL, NULL, &lf); if (error || lf == NULL) { vput(vp); if (lf == NULL) |