projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b520410
)
vsprintf: replace in_irq() with in_hardirq()
author
ye xingchen
<ye.xingchen@zte.com.cn>
Tue, 11 Oct 2022 02:48:31 +0000
(
02:48
+0000)
committer
Petr Mladek
<pmladek@suse.com>
Tue, 18 Oct 2022 13:04:05 +0000
(15:04 +0200)
Replace the obsolete and ambiguos macro in_irq() with new
macro in_hardirq().
Signed-off-by: ye xingchen <ye.xingchen@zte.com.cn>
Reviewed-by: Sergey Senozhatsky <senozhatsky@chromium.org>
Reviewed-by: Petr Mladek <pmladek@suse.com>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link:
https://lore.kernel.org/r/20221011024831.322799-1-ye.xingchen@zte.com.cn
lib/vsprintf.c
patch
|
blob
|
history
diff --git
a/lib/vsprintf.c
b/lib/vsprintf.c
index 24f37bab8bc1f7a9ae5c533e6f155fa2aa30e83b..5b0611c0095608c5bcd04af33489ae4339e8968d 100644
(file)
--- a/
lib/vsprintf.c
+++ b/
lib/vsprintf.c
@@
-866,7
+866,7
@@
char *restricted_pointer(char *buf, char *end, const void *ptr,
* kptr_restrict==1 cannot be used in IRQ context
* because its test for CAP_SYSLOG would be meaningless.
*/
- if (in_irq() || in_serving_softirq() || in_nmi()) {
+ if (in_
hard
irq() || in_serving_softirq() || in_nmi()) {
if (spec.field_width == -1)
spec.field_width = 2 * sizeof(ptr);
return error_string(buf, end, "pK-error", spec);