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
This commit is contained in:
John Baldwin 2012-03-08 19:41:05 +00:00
parent fb175d1c81
commit 44ad547522
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=232700
7 changed files with 41 additions and 0 deletions

View File

@ -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 @@ 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

View File

@ -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);

View File

@ -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);

View File

@ -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);
}

View File

@ -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)
{

View File

@ -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
/*

View File

@ -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)