diff --git a/drivers/android/vendor_hooks.c b/drivers/android/vendor_hooks.c index bdfd287971c6..afbf68f586f7 100644 --- a/drivers/android/vendor_hooks.c +++ b/drivers/android/vendor_hooks.c @@ -325,7 +325,6 @@ EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_save_vmalloc_stack); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_show_stack_hash); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_save_track_hash); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_vmpressure); -EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_set_task_comm); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_cpufreq_acct_update_power); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_typec_tcpm_log); EXPORT_TRACEPOINT_SYMBOL_GPL(android_vh_media_device_setup_link); diff --git a/fs/exec.c b/fs/exec.c index ec5ef10ce2db..5ce144cf810f 100644 --- a/fs/exec.c +++ b/fs/exec.c @@ -73,7 +73,6 @@ #include "internal.h" #include -#include EXPORT_TRACEPOINT_SYMBOL_GPL(task_rename); @@ -1230,7 +1229,6 @@ void __set_task_comm(struct task_struct *tsk, const char *buf, bool exec) strlcpy(tsk->comm, buf, sizeof(tsk->comm)); task_unlock(tsk); perf_event_comm(tsk, exec); - trace_android_vh_set_task_comm(tsk); } /* diff --git a/include/trace/hooks/sched.h b/include/trace/hooks/sched.h index 92690acc1197..55fc6c3a1a89 100644 --- a/include/trace/hooks/sched.h +++ b/include/trace/hooks/sched.h @@ -363,10 +363,6 @@ DECLARE_HOOK(android_vh_dup_task_struct, TP_PROTO(struct task_struct *tsk, struct task_struct *orig), TP_ARGS(tsk, orig)); -DECLARE_HOOK(android_vh_set_task_comm, - TP_PROTO(struct task_struct *p), - TP_ARGS(p)); - DECLARE_RESTRICTED_HOOK(android_rvh_find_new_ilb, TP_PROTO(struct cpumask *nohz_idle_cpus_mask, int *ilb), TP_ARGS(nohz_idle_cpus_mask, ilb), 1);