Date: Wed, 5 Oct 2005 05:30:24 +0000 (UTC) From: Don Lewis <truckman@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern kern_proc.c Message-ID: <200510050530.j955UOhQ004304@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
truckman 2005-10-05 05:30:24 UTC
FreeBSD src repository
Modified files: (Branch: RELENG_6)
sys/kern kern_proc.c
Log:
MFC kern_proc.c - fix locking in sysctl_kern_proc()
Original commit message:
FreeBSD src repository
Modified files:
sys/kern kern_proc.c
Log:
Always wire the sysctl output buffer in sysctl_kern_proc() before
calling sysctl_out_proc(). -- fix from jhb
Move the code in fill_kinfo_thread() that gathers data from struct proc
into the new function fill_kinfo_proc_only().
Change all callers of fill_kinfo_thread() to call both
fill_kinfo_proc_only() and fill_kinfo() thread. When gathering
data from a multi-threaded process, fill_kinfo_proc_only() only needs
to be called once.
Grab sched_lock before accessing the process thread list or calling
fill_kinfo_thread().
PR: kern/84684
Approved by: re (scottl)
Revision Changes Path
1.230.2.1 +114 -96 src/sys/kern/kern_proc.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200510050530.j955UOhQ004304>
