mirror of
https://git.openafs.org/openafs.git
synced 2025-01-22 08:50:17 +00:00
freebsd: fix afs_root signature (RELENG_8)
Track removal of thread id param, which had become redundant. Change-Id: Ifa8ddce411373a1aee01b577bf7e5a268e644dd7 Reviewed-on: http://gerrit.openafs.org/1055 Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
a5d054668a
commit
54c4ce48bf
@ -164,7 +164,9 @@ afs_unmount(struct mount *mp, int flags, THREAD_OR_PROC)
|
||||
}
|
||||
|
||||
int
|
||||
#if defined(AFS_FBSD60_ENV)
|
||||
#if defined(AFS_FBSD80_ENV)
|
||||
afs_root(struct mount *mp, int flags, struct vnode **vpp)
|
||||
#elif defined(AFS_FBSD60_ENV)
|
||||
afs_root(struct mount *mp, int flags, struct vnode **vpp, struct thread *td)
|
||||
#elif defined(AFS_FBSD53_ENV)
|
||||
afs_root(struct mount *mp, struct vnode **vpp, struct thread *td)
|
||||
@ -176,10 +178,10 @@ afs_root(struct mount *mp, struct vnode **vpp)
|
||||
struct vrequest treq;
|
||||
register struct vcache *tvp = 0;
|
||||
#ifdef AFS_FBSD50_ENV
|
||||
#ifndef AFS_FBSD53_ENV
|
||||
#if !defined(AFS_FBSD53_ENV) || defined(AFS_FBSD80_ENV)
|
||||
struct thread *td = curthread;
|
||||
#endif
|
||||
struct ucred *cr = td->td_ucred;
|
||||
struct ucred *cr = osi_curcred();
|
||||
#else
|
||||
struct proc *p = curproc;
|
||||
struct ucred *cr = p->p_cred->pc_ucred;
|
||||
|
Loading…
Reference in New Issue
Block a user