From 44ad5475222d2043df40fcbe3f5703915ee16468 Mon Sep 17 00:00:00 2001 From: John Baldwin Date: Thu, 8 Mar 2012 19:41:05 +0000 Subject: [PATCH] Add a new sched_clear_name() method to the scheduler interface to clear the cached name used for KTR_SCHED traces when a thread's name changes. This way KTR_SCHED traces (and thus schedgraph) will notice when a thread's name changes, most commonly via execve(). MFC after: 2 weeks --- sys/kern/kern_exec.c | 4 ++++ sys/kern/kern_intr.c | 3 +++ sys/kern/kern_kthread.c | 6 ++++++ sys/kern/kern_thr.c | 3 +++ sys/kern/sched_4bsd.c | 11 +++++++++++ sys/kern/sched_ule.c | 11 +++++++++++ sys/sys/sched.h | 3 +++ 7 files changed, 41 insertions(+) diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c index 135f7986a827..dac4703e6afa 100644 --- a/sys/kern/kern_exec.c +++ b/sys/kern/kern_exec.c @@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$"); #include #include #include +#include #include #include #include @@ -636,6 +637,9 @@ do_execve(td, args, mac_p) else if (vn_commname(binvp, p->p_comm, sizeof(p->p_comm)) != 0) bcopy(fexecv_proc_title, p->p_comm, sizeof(fexecv_proc_title)); bcopy(p->p_comm, td->td_name, sizeof(td->td_name)); +#ifdef KTR + sched_clear_tdname(td); +#endif /* * mark as execed, wakeup the process that vforked (if any) and tell diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index c2562dea9a41..72313b5e8430 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -180,6 +180,9 @@ ithread_update(struct intr_thread *ithd) /* Update name and priority. */ strlcpy(td->td_name, ie->ie_fullname, sizeof(td->td_name)); +#ifdef KTR + sched_clear_tdname(td); +#endif thread_lock(td); sched_prio(td, pri); thread_unlock(td); diff --git a/sys/kern/kern_kthread.c b/sys/kern/kern_kthread.c index dc3fdab8b4f9..9dcdeb00406d 100644 --- a/sys/kern/kern_kthread.c +++ b/sys/kern/kern_kthread.c @@ -115,6 +115,9 @@ kproc_create(void (*func)(void *), void *arg, va_start(ap, fmt); vsnprintf(td->td_name, sizeof(td->td_name), fmt, ap); va_end(ap); +#ifdef KTR + sched_clear_tdname(td); +#endif /* call the processes' main()... */ cpu_set_fork_handler(td, func, arg); @@ -453,6 +456,9 @@ kproc_kthread_add(void (*func)(void *), void *arg, va_start(ap, fmt); vsnprintf(td->td_name, sizeof(td->td_name), fmt, ap); va_end(ap); +#ifdef KTR + sched_clear_tdname(td); +#endif return (0); } va_start(ap, fmt); diff --git a/sys/kern/kern_thr.c b/sys/kern/kern_thr.c index a5d9692ce687..f283afbbb821 100644 --- a/sys/kern/kern_thr.c +++ b/sys/kern/kern_thr.c @@ -548,6 +548,9 @@ sys_thr_set_name(struct thread *td, struct thr_set_name_args *uap) if (ttd == NULL) return (ESRCH); strcpy(ttd->td_name, name); +#ifdef KTR + sched_clear_tdname(ttd); +#endif PROC_UNLOCK(p); return (error); } diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c index 16cc033204e4..1bd1cdd5ef5a 100644 --- a/sys/kern/sched_4bsd.c +++ b/sys/kern/sched_4bsd.c @@ -1614,6 +1614,17 @@ sched_tdname(struct thread *td) #endif } +#ifdef KTR +void +sched_clear_tdname(struct thread *td) +{ + struct td_sched *ts; + + ts = td->td_sched; + ts->ts_name[0] = '\0'; +} +#endif + void sched_affinity(struct thread *td) { diff --git a/sys/kern/sched_ule.c b/sys/kern/sched_ule.c index c6b2d036bc72..8bd2f9678260 100644 --- a/sys/kern/sched_ule.c +++ b/sys/kern/sched_ule.c @@ -2684,6 +2684,17 @@ sched_tdname(struct thread *td) #endif } +#ifdef KTR +void +sched_clear_tdname(struct thread *td) +{ + struct td_sched *ts; + + ts = td->td_sched; + ts->ts_name[0] = '\0'; +} +#endif + #ifdef SMP /* diff --git a/sys/sys/sched.h b/sys/sys/sched.h index 4380f78d6b34..4b8387c1d26c 100644 --- a/sys/sys/sched.h +++ b/sys/sys/sched.h @@ -138,6 +138,9 @@ int sched_sizeof_thread(void); * functions. */ char *sched_tdname(struct thread *td); +#ifdef KTR +void sched_clear_tdname(struct thread *td); +#endif static __inline void sched_pin(void)