diff options
| author | Jim Rees <rees@FreeBSD.org> | 2006-01-19 22:48:31 +0000 |
|---|---|---|
| committer | Jim Rees <rees@FreeBSD.org> | 2006-01-19 22:48:31 +0000 |
| commit | c1f097babac870d7c549dba9f8c42ada3c6e8e6e (patch) | |
| tree | 4b87b26fc516ae981162f085a05f4a35b57b6e64 | |
| parent | 0ebb41bef578c161e45a334dfa5ab689c92f8f92 (diff) | |
Notes
| -rw-r--r-- | sys/nfs4client/nfs4_vfsops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs4client/nfs4_vfsops.c b/sys/nfs4client/nfs4_vfsops.c index 7673e019ccbd..e5004277540d 100644 --- a/sys/nfs4client/nfs4_vfsops.c +++ b/sys/nfs4client/nfs4_vfsops.c @@ -652,7 +652,7 @@ mountnfs(struct nfs_args *argp, struct mount *mp, struct sockaddr *nam, if (mrep != NULL) m_freem(mrep); bad: - nfs_disconnect(nmp); + nfs4_disconnect(nmp); uma_zfree(nfsmount_zone, nmp); FREE(nam, M_SONAME); @@ -692,7 +692,7 @@ nfs_unmount(struct mount *mp, int mntflags, struct thread *td) /* * We are now committed to the unmount. */ - nfs_disconnect(nmp); + nfs4_disconnect(nmp); FREE(nmp->nm_nam, M_SONAME); /* XXX there's a race condition here for SMP */ |
