User Tools

Site Tools


en:developers:documentation:using-sparse

This is an old revision of the document!


Using sparse

Sparse is a semantic parser and static analyzer utility we use for Linux kernel development. We highly recommend using sparse for the wireless subsystem. Below are some quick instructions how to get this set up and how to use it.

Get sparse

You can get sparse from:

git://git.kernel.org/pub/scm/devel/sparse/sparse.git

Version of sparse to use

We recommend to use the latest stable release of sparse. As of now this is v0.5.1, so you can do something as follows:

git checkout v0.5.1

Or do

git tag -l

to see all releases.

Install sparse

To install:

make
make install

Using sparse

To use sparse for kernel development simply pass on the C=1 argument onto your make command. For example to enable sparse for mac80211 development you would use:

make C=1 M=net/mac80211/

Endian checks

Endian checks are encouraged. Most endian complaints are typically valid and reflect design issues. These should be reviewed carefully. Some drivers force-enable endian checks with sparse by forcing it through their own driver makefiles upstream. If drivers do not have these you can enable sparse checks yourself by appending to your make command:

CF="-D__CHECK_ENDIAN__" 

To enforce endian checks on your driver you can use something as follows on your driver Makefile:

ccflags-y += -D__CHECK_ENDIAN__
en/developers/documentation/using-sparse.1508813364.txt.gz · Last modified: 2017/10/24 02:49 by Nikolas Nyby