Skip to content

Commit

Permalink
PM / runtime: Update links_count also if !CONFIG_SRCU
Browse files Browse the repository at this point in the history
Commit baa8809 (PM / runtime: Optimize the use of device links)
added an invocation of pm_runtime_drop_link() to __device_link_del().
However there are two variants of that function, one for CONFIG_SRCU and
another for !CONFIG_SRCU, and the commit only modified the former.

Fixes: baa8809 (PM / runtime: Optimize the use of device links)
Cc: v4.10+ <stable@vger.kernel.org> # v4.10+
Signed-off-by: Lukas Wunner <lukas@wunner.de>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
  • Loading branch information
Lukas Wunner authored and Rafael J. Wysocki committed Feb 12, 2018
1 parent 6972805 commit 433986c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions drivers/base/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -310,6 +310,9 @@ static void __device_link_del(struct device_link *link)
dev_info(link->consumer, "Dropping the link to %s\n",
dev_name(link->supplier));

if (link->flags & DL_FLAG_PM_RUNTIME)
pm_runtime_drop_link(link->consumer);

list_del(&link->s_node);
list_del(&link->c_node);
device_link_free(link);
Expand Down

0 comments on commit 433986c

Please sign in to comment.