[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20211011115018.88948-1-yangjihong1@huawei.com>
Date: Mon, 11 Oct 2021 19:50:18 +0800
From: Yang Jihong <yangjihong1@...wei.com>
To: <rostedt@...dmis.org>, <mingo@...hat.com>,
<linux-kernel@...r.kernel.org>
CC: <yangjihong1@...wei.com>
Subject: [PATCH] tracing: save cmdline only when task does not exist in savecmd for optimization
commit 85f726a35e504418 use strncpy instead of memcpy when copying comm,
on ARM64 machine, this commit causes performance degradation.
For the task that already exists in savecmd, it is unnecessary to call
set_cmdline to execute strncpy once, run set_cmdline only if the task does
not exist in savecmd.
I have written an example (which is an extreme case) in which trace sched switch
is invoked for 1000 times, as shown in the following:
for (int i = 0; i < 1000; i++) {
trace_sched_switch(true, current, current);
}
On ARM64 machine, compare the data before and after the optimization:
+---------------------+------------------------------+------------------------+
| | Total number of instructions | Total number of cycles |
+---------------------+------------------------------+------------------------+
| Before optimization | 1107367 | 658491 |
+---------------------+------------------------------+------------------------+
| After optimization | 869367 | 520171 |
+---------------------+------------------------------+------------------------+
As shown above, there is nearly 26% performance
Signed-off-by: Yang Jihong <yangjihong1@...wei.com>
---
kernel/trace/trace.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index 7896d30d90f7..a795610a3b37 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2427,8 +2427,11 @@ static int trace_save_cmdline(struct task_struct *tsk)
savedcmd->cmdline_idx = idx;
}
- savedcmd->map_cmdline_to_pid[idx] = tsk->pid;
- set_cmdline(idx, tsk->comm);
+ /* save cmdline only when task does not exist in savecmd */
+ if (savedcmd->map_cmdline_to_pid[idx] != tsk->pid) {
+ savedcmd->map_cmdline_to_pid[idx] = tsk->pid;
+ set_cmdline(idx, tsk->comm);
+ }
arch_spin_unlock(&trace_cmdline_lock);
--
2.30.GIT
Powered by blists - more mailing lists