mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-03-03 18:28:01 +01:00
Remove Sparse support as discussed at [1].
The kernel codebase is still scattered with numerous places that try to
appease Sparse's context tracking ("annotation for sparse", "fake out
sparse", "work around sparse", etc.). Eventually, as more subsystems
enable Clang's context analysis, these places will show up and need
adjustment or removal of the workarounds altogether.
Signed-off-by: Marco Elver <elver@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/all/20250207083335.GW7145@noisy.programming.kicks-ass.net/ [1]
Link: https://lore.kernel.org/all/Z6XTKTo_LMj9KmbY@elver.google.com/ [2]
Link: https://patch.msgid.link/20251219154418.3592607-24-elver@google.com
86 lines
2.9 KiB
ReStructuredText
86 lines
2.9 KiB
ReStructuredText
.. Copyright 2004 Linus Torvalds
|
|
.. Copyright 2004 Pavel Machek <pavel@ucw.cz>
|
|
.. Copyright 2006 Bob Copeland <me@bobcopeland.com>
|
|
|
|
Sparse
|
|
======
|
|
|
|
Sparse is a semantic checker for C programs; it can be used to find a
|
|
number of potential problems with kernel code. See
|
|
https://lwn.net/Articles/689907/ for an overview of sparse; this document
|
|
contains some kernel-specific sparse information.
|
|
More information on sparse, mainly about its internals, can be found in
|
|
its official pages at https://sparse.docs.kernel.org.
|
|
|
|
|
|
Using sparse for typechecking
|
|
-----------------------------
|
|
|
|
"__bitwise" is a type attribute, so you have to do something like this::
|
|
|
|
typedef int __bitwise pm_request_t;
|
|
|
|
enum pm_request {
|
|
PM_SUSPEND = (__force pm_request_t) 1,
|
|
PM_RESUME = (__force pm_request_t) 2
|
|
};
|
|
|
|
which makes PM_SUSPEND and PM_RESUME "bitwise" integers (the "__force" is
|
|
there because sparse will complain about casting to/from a bitwise type,
|
|
but in this case we really _do_ want to force the conversion). And because
|
|
the enum values are all the same type, now "enum pm_request" will be that
|
|
type too.
|
|
|
|
And with gcc, all the "__bitwise"/"__force stuff" goes away, and it all
|
|
ends up looking just like integers to gcc.
|
|
|
|
Quite frankly, you don't need the enum there. The above all really just
|
|
boils down to one special "int __bitwise" type.
|
|
|
|
So the simpler way is to just do::
|
|
|
|
typedef int __bitwise pm_request_t;
|
|
|
|
#define PM_SUSPEND ((__force pm_request_t) 1)
|
|
#define PM_RESUME ((__force pm_request_t) 2)
|
|
|
|
and you now have all the infrastructure needed for strict typechecking.
|
|
|
|
One small note: the constant integer "0" is special. You can use a
|
|
constant zero as a bitwise integer type without sparse ever complaining.
|
|
This is because "bitwise" (as the name implies) was designed for making
|
|
sure that bitwise types don't get mixed up (little-endian vs big-endian
|
|
vs cpu-endian vs whatever), and there the constant "0" really _is_
|
|
special.
|
|
|
|
Getting sparse
|
|
--------------
|
|
|
|
You can get tarballs of the latest released versions from:
|
|
https://www.kernel.org/pub/software/devel/sparse/dist/
|
|
|
|
Alternatively, you can get snapshots of the latest development version
|
|
of sparse using git to clone::
|
|
|
|
git://git.kernel.org/pub/scm/devel/sparse/sparse.git
|
|
|
|
Once you have it, just do::
|
|
|
|
make
|
|
make install
|
|
|
|
as a regular user, and it will install sparse in your ~/bin directory.
|
|
|
|
Using sparse
|
|
------------
|
|
|
|
Do a kernel make with "make C=1" to run sparse on all the C files that get
|
|
recompiled, or use "make C=2" to run sparse on the files whether they need to
|
|
be recompiled or not. The latter is a fast way to check the whole tree if you
|
|
have already built it.
|
|
|
|
The optional make variable CF can be used to pass arguments to sparse. The
|
|
build system passes -Wbitwise to sparse automatically.
|
|
|
|
Note that sparse defines the __CHECKER__ preprocessor symbol.
|