To reduce CPU usage, limit rproc_dump_resource_table calls only when DEBUG or CONFIG_DYNAMIC_DEBUG flags are activated. Signed-off-by: Loic Pallardy <loic.pallardy@xxxxxx> --- drivers/remoteproc/remoteproc_core.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/drivers/remoteproc/remoteproc_core.c b/drivers/remoteproc/remoteproc_core.c index 7bc3cd4..4a61dc1 100644 --- a/drivers/remoteproc/remoteproc_core.c +++ b/drivers/remoteproc/remoteproc_core.c @@ -1066,7 +1066,8 @@ rproc_apply_resource_overrides(struct rproc *rproc, } - rproc_dump_resource_table(rproc, table, size); + if (IS_ENABLED(DEBUG) || IS_ENABLED(CONFIG_DYNAMIC_DEBUG)) + rproc_dump_resource_table(rproc, table, size); if (!table) { size = sizeof(*table); @@ -1100,7 +1101,8 @@ rproc_apply_resource_overrides(struct rproc *rproc, *orig_table = table; } - rproc_dump_resource_table(rproc, table, size); + if (IS_ENABLED(DEBUG) || IS_ENABLED(CONFIG_DYNAMIC_DEBUG)) + rproc_dump_resource_table(rproc, table, size); *tablesz = size; -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-remoteproc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html