From ebda3fc3809ddcc80e6beaa8f000732bf35329f4 Mon Sep 17 00:00:00 2001 From: "Bjoern A. Zeeb" Date: Fri, 9 Jan 2009 16:22:32 +0000 Subject: [PATCH] Take the cred from curthread rather than curproc as curproc would need locking but the credential from curthread (usually) never changes. Discussed with: jhb MFC after: 2 weeks --- sys/net/rtsock.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index 3c1436cd2d6..3575c943dd9 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -1344,7 +1344,7 @@ done: return (error); } -int +static int sysctl_ifmalist(int af, struct walkarg *w) { INIT_VNET_NET(curvnet); @@ -1365,8 +1365,8 @@ sysctl_ifmalist(int af, struct walkarg *w) TAILQ_FOREACH(ifma, &ifp->if_multiaddrs, ifma_link) { if (af && af != ifma->ifma_addr->sa_family) continue; - if (jailed(curproc->p_ucred) && - !prison_if(curproc->p_ucred, ifma->ifma_addr)) + if (jailed(curthread->td_ucred) && + !prison_if(curthread->td_ucred, ifma->ifma_addr)) continue; info.rti_info[RTAX_IFA] = ifma->ifma_addr; info.rti_info[RTAX_GATEWAY] =