mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-13 14:24:11 +08:00
bug: Remove redundant condition check in report_bug
report_bug() will return early if it cannot find a bug corresponding to
the provided address. The subsequent test for the bug will always be
true so remove it.
Fixes: 1b4cfe3c0a
("lib/bug.c: exclude non-BUG/WARN exceptions from report_bug()")
Signed-off-by: Andrew Scull <ascull@google.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: "Steven Rostedt (VMware)" <rostedt@goodmis.org>
Reviewed-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Acked-by: Will Deacon <will@kernel.org>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20210318143311.839894-2-ascull@google.com
This commit is contained in:
parent
1e28eed176
commit
3ad1a6cb0a
29
lib/bug.c
29
lib/bug.c
@ -155,30 +155,27 @@ enum bug_trap_type report_bug(unsigned long bugaddr, struct pt_regs *regs)
|
|||||||
|
|
||||||
file = NULL;
|
file = NULL;
|
||||||
line = 0;
|
line = 0;
|
||||||
warning = 0;
|
|
||||||
|
|
||||||
if (bug) {
|
|
||||||
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
||||||
#ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
|
#ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
|
||||||
file = bug->file;
|
file = bug->file;
|
||||||
#else
|
#else
|
||||||
file = (const char *)bug + bug->file_disp;
|
file = (const char *)bug + bug->file_disp;
|
||||||
#endif
|
#endif
|
||||||
line = bug->line;
|
line = bug->line;
|
||||||
#endif
|
#endif
|
||||||
warning = (bug->flags & BUGFLAG_WARNING) != 0;
|
warning = (bug->flags & BUGFLAG_WARNING) != 0;
|
||||||
once = (bug->flags & BUGFLAG_ONCE) != 0;
|
once = (bug->flags & BUGFLAG_ONCE) != 0;
|
||||||
done = (bug->flags & BUGFLAG_DONE) != 0;
|
done = (bug->flags & BUGFLAG_DONE) != 0;
|
||||||
|
|
||||||
if (warning && once) {
|
if (warning && once) {
|
||||||
if (done)
|
if (done)
|
||||||
return BUG_TRAP_TYPE_WARN;
|
return BUG_TRAP_TYPE_WARN;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Since this is the only store, concurrency is not an issue.
|
* Since this is the only store, concurrency is not an issue.
|
||||||
*/
|
*/
|
||||||
bug->flags |= BUGFLAG_DONE;
|
bug->flags |= BUGFLAG_DONE;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
Loading…
Reference in New Issue
Block a user