Skip to content

Commit

Permalink
PM / core: Use dev_printk() and symbols in suspend/resume diagnostics
Browse files Browse the repository at this point in the history
When we print diagnostic messages about suspend/resume, we have a device
pointer, so use dev_printk() to match other device-related things.  Add the
function name, similar to initcall_debug output.  E.g.,

  - calling  0000:01:00.0+ @ 998, parent: 0000:00:1c.0
  + pci 0000:01:00.0: calling <something> @ 998, parent: 0000:00:1c.0

I wondered if this would break scripts/bootgraph.pl, but I don't think it
will because bootgraph.pl doesn't add any timing information to $start{}
after it sees "Write protecting the" or "Freeing unused kernel memory".

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Bjorn Helgaas authored and Rafael J. Wysocki committed May 10, 2018
1 parent 143711f commit 7f817ba
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions drivers/base/power/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -192,19 +192,19 @@ void device_pm_move_last(struct device *dev)
list_move_tail(&dev->power.entry, &dpm_list);
}

static ktime_t initcall_debug_start(struct device *dev)
static ktime_t initcall_debug_start(struct device *dev, void *cb)
{
if (!pm_print_times_enabled)
return 0;

pr_info("calling %s+ @ %i, parent: %s\n",
dev_name(dev), task_pid_nr(current),
dev->parent ? dev_name(dev->parent) : "none");
dev_info(dev, "calling %pF @ %i, parent: %s\n", cb,
task_pid_nr(current),
dev->parent ? dev_name(dev->parent) : "none");
return ktime_get();
}

static void initcall_debug_report(struct device *dev, ktime_t calltime,
int error)
void *cb, int error)
{
ktime_t rettime;
s64 nsecs;
Expand All @@ -215,8 +215,8 @@ static void initcall_debug_report(struct device *dev, ktime_t calltime,
rettime = ktime_get();
nsecs = (s64) ktime_to_ns(ktime_sub(rettime, calltime));

pr_info("call %s+ returned %d after %Ld usecs\n", dev_name(dev),
error, (unsigned long long)nsecs >> 10);
dev_info(dev, "%pF returned %d after %Ld usecs\n", cb, error,
(unsigned long long)nsecs >> 10);
}

/**
Expand Down Expand Up @@ -443,15 +443,15 @@ static int dpm_run_callback(pm_callback_t cb, struct device *dev,
if (!cb)
return 0;

calltime = initcall_debug_start(dev);
calltime = initcall_debug_start(dev, cb);

pm_dev_dbg(dev, state, info);
trace_device_pm_callback_start(dev, info, state.event);
error = cb(dev);
trace_device_pm_callback_end(dev, error);
suspend_report_result(cb, error);

initcall_debug_report(dev, calltime, error);
initcall_debug_report(dev, calltime, cb, error);

return error;
}
Expand Down Expand Up @@ -1661,14 +1661,14 @@ static int legacy_suspend(struct device *dev, pm_message_t state,
int error;
ktime_t calltime;

calltime = initcall_debug_start(dev);
calltime = initcall_debug_start(dev, cb);

trace_device_pm_callback_start(dev, info, state.event);
error = cb(dev, state);
trace_device_pm_callback_end(dev, error);
suspend_report_result(cb, error);

initcall_debug_report(dev, calltime, error);
initcall_debug_report(dev, calltime, cb, error);

return error;
}
Expand Down

0 comments on commit 7f817ba

Please sign in to comment.