mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
checkpatch: add checks for in_atomic()
in_atomic() is not for driver use so report any such use as an ERROR. Also in_atomic() is often used to determine if we may sleep, but it is not reliable in this use model therefore strongly discourage its use. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
94e2959e7a
commit
691d77b6b8
1 changed files with 9 additions and 0 deletions
|
@ -2466,6 +2466,15 @@ sub process {
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# whine mightly about in_atomic
|
||||||
|
if ($line =~ /\bin_atomic\s*\(/) {
|
||||||
|
if ($realfile =~ m@^drivers/@) {
|
||||||
|
ERROR("do not use in_atomic in drivers\n" . $herecurr);
|
||||||
|
} else {
|
||||||
|
WARN("use of in_atomic() is incorrect outside core kernel code\n" . $herecurr);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
# If we have no input at all, then there is nothing to report on
|
# If we have no input at all, then there is nothing to report on
|
||||||
|
|
Loading…
Reference in a new issue