summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2012-03-08 19:41:05 +0000
committerjhb <jhb@FreeBSD.org>2012-03-08 19:41:05 +0000
commit4fea355eb2254754b2e522d87d81c5562252116a (patch)
tree2da9212f02713305c4064fc6709c0a7a490815ce
parent486b631cb38cbd91bd7a8f6ab87a6d0ecdf7a8ac (diff)
downloadFreeBSD-src-4fea355eb2254754b2e522d87d81c5562252116a.zip
FreeBSD-src-4fea355eb2254754b2e522d87d81c5562252116a.tar.gz
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
-rw-r--r--sys/kern/kern_exec.c4
-rw-r--r--sys/kern/kern_intr.c3
-rw-r--r--sys/kern/kern_kthread.c6
-rw-r--r--sys/kern/kern_thr.c3
-rw-r--r--sys/kern/sched_4bsd.c11
-rw-r--r--sys/kern/sched_ule.c11
-rw-r--r--sys/sys/sched.h3
7 files changed, 41 insertions, 0 deletions
diff --git a/sys/kern/kern_exec.c b/sys/kern/kern_exec.c
index 135f798..dac4703 100644
--- a/sys/kern/kern_exec.c
+++ b/sys/kern/kern_exec.c
@@ -57,6 +57,7 @@ __FBSDID("$FreeBSD$");
#include <sys/pioctl.h>
#include <sys/namei.h>
#include <sys/resourcevar.h>
+#include <sys/sched.h>
#include <sys/sdt.h>
#include <sys/sf_buf.h>
#include <sys/syscallsubr.h>
@@ -636,6 +637,9 @@ interpret:
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 c2562de..72313b5 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 dc3fdab..9dcdeb0 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 a5d9692..f283afb 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 16cc033..1bd1cdd 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 c6b2d03..8bd2f96 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 4380f78..4b8387c 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)
OpenPOWER on IntegriCloud