mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-17 17:24:17 +08:00
remoteproc: Fixup coredump debugfs disable request
Fix the discrepancy observed between accepted input and read back value
while disabling remoteproc coredump through the coredump debugfs entry.
Fixes: 3afdc59e43
("remoteproc: Add coredump debugfs entry")
Cc: stable@vger.kernel.org
Signed-off-by: Sibi Sankar <sibis@codeaurora.org>
Link: https://lore.kernel.org/r/20200916145100.15872-1-sibis@codeaurora.org
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
This commit is contained in:
parent
4360f93ac3
commit
1894622636
@ -94,7 +94,7 @@ static ssize_t rproc_coredump_write(struct file *filp,
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (!strncmp(buf, "disable", count)) {
|
||||
if (!strncmp(buf, "disabled", count)) {
|
||||
rproc->dump_conf = RPROC_COREDUMP_DISABLED;
|
||||
} else if (!strncmp(buf, "inline", count)) {
|
||||
rproc->dump_conf = RPROC_COREDUMP_INLINE;
|
||||
|
Loading…
Reference in New Issue
Block a user