[COMMON] PM: Fixed debugging information for pm_qos in kernel 4.4.
authorWoosung Lee <wstar.lee@samsung.com>
Wed, 20 Aug 2014 05:53:14 +0000 (14:53 +0900)
committerChungwoo Park <cww.park@samsung.com>
Wed, 23 May 2018 10:52:08 +0000 (19:52 +0900)
commit21ed3f39012787c2020b2444b76e390f04a098a8
tree184a755065ce6d1748f8fb7735f4f46e9cd95acc
parent11fc8cf7ca35f800f38d6c61ed4f1fe446867ff1
[COMMON] PM: Fixed debugging information for pm_qos in kernel 4.4.

During debugging or profiling, pm_qos list like below is useful information.

device_throughput
default value: 0
target value: 468000
requests:
ffffffc0012896f8: 0
ffffffc06f2f0458: 0

But only pm_qos_request declared for global name space could find what it is.
If pm_qos_request declared in local name space, its address doesn't appeared in
System.map file.

So add more information about pm_qos_request's position like below.

device_throughput
default value: 0
target value: 468000
requests:
ffffffc0012896f8(lpass_probe:1027): 0
ffffffc06f2f0458(fimg2d_pm_qos_add_bus:170): 0

Change-Id: Ib4d18bb7fb44fc6f5c4516382447ed2e60b1efd5
Signed-off-by: Woosung Lee <wstar.lee@samsung.com>
kernel/power/qos.c