o Pass td into nfs_mountroot() to eliminate an XXX'd curthread use.
Since it's in the parent function anyway, might as well pass it another layer down. Obtained from: TrustedBSD Project
This commit is contained in:
parent
48f30e7621
commit
c773675908
@ -252,7 +252,7 @@ extern int nfs_debug;
|
||||
|
||||
int nfs_init(struct vfsconf *vfsp);
|
||||
int nfs_uninit(struct vfsconf *vfsp);
|
||||
int nfs_mountroot(struct mount *mp);
|
||||
int nfs_mountroot(struct mount *mp, struct thread *td);
|
||||
int nfs_send(struct socket *, struct sockaddr *, struct mbuf *,
|
||||
struct nfsreq *);
|
||||
int nfs_sndlock(struct nfsreq *);
|
||||
|
@ -375,14 +375,13 @@ nfs_fsinfo(struct nfsmount *nmp, struct vnode *vp, struct ucred *cred,
|
||||
* - build the rootfs mount point and call mountnfs() to do the rest.
|
||||
*/
|
||||
int
|
||||
nfs_mountroot(struct mount *mp)
|
||||
nfs_mountroot(struct mount *mp, struct thread *td)
|
||||
{
|
||||
struct mount *swap_mp;
|
||||
struct nfsmount *nmp = VFSTONFS(mp);
|
||||
struct nfsv3_diskless *nd = &nfsv3_diskless;
|
||||
struct socket *so;
|
||||
struct vnode *vp;
|
||||
struct thread *td = curthread; /* XXX */
|
||||
int error, i;
|
||||
u_long l;
|
||||
char buf[128];
|
||||
@ -737,7 +736,7 @@ nfs_mount(struct mount *mp, char *path, caddr_t data, struct nameidata *ndp,
|
||||
u_char nfh[NFSX_V3FHMAX];
|
||||
|
||||
if (path == NULL) {
|
||||
nfs_mountroot(mp);
|
||||
nfs_mountroot(mp, td);
|
||||
return (0);
|
||||
}
|
||||
error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args));
|
||||
|
Loading…
Reference in New Issue
Block a user