Wonhyuk Yang 873a400938 workqueue: Fix type of cpu in trace event
The trace event "workqueue_queue_work" use unsigned int type for
req_cpu, cpu. This casue confusing cpu number like below log.

$ cat /sys/kernel/debug/tracing/trace
cat-317  [001] ...: workqueue_queue_work: ... req_cpu=8192 cpu=4294967295

So, change unsigned type to signed type in the trace event. After
applying this patch, cpu number will be printed as -1 instead of
4294967295 as folllows.

$ cat /sys/kernel/debug/tracing/trace
cat-1338  [002] ...: workqueue_queue_work: ... req_cpu=8192 cpu=-1

Cc: Baik Song An <bsahn@etri.re.kr>
Cc: Hong Yeon Kim <kimhy@etri.re.kr>
Cc: Taeung Song <taeung@reallinux.co.kr>
Cc: linuxgeek@linuxgeek.io
Signed-off-by: Wonhyuk Yang <vvghjk1234@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
2022-06-07 07:09:47 -10:00
..
2021-11-10 21:16:56 +00:00
2020-11-30 12:54:01 +00:00
2021-06-29 10:53:52 -07:00
2021-11-02 14:39:20 -05:00
2022-05-31 16:52:59 -07:00
2020-04-22 12:55:54 -07:00
2021-05-31 22:48:24 -04:00
2021-06-29 11:28:21 -07:00
2022-05-19 12:25:39 -04:00
2022-04-07 20:33:15 -07:00