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.
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.
__bitwise__ - to be used for relatively compact stuff (gfp_t, etc.) that is mostly warning-free and is supposed to stay that way. Warnings will be generated without __CHECK_ENDIAN__.
__bitwise - noisy stuff; in particular, __le*/__be* are that. We really don't want to drown in noise unless we'd explicitly asked for it.
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. To perform endianness
checks, you may define __CHECK_ENDIAN__:
make C=2 CF="-D__CHECK_ENDIAN__"
These checks are disabled by default as they generate a host of warnings.
您能有收获就是我们最大的动力
不管多少都是对分享的肯定
打开支付宝扫一扫,即可进行扫码捐赠
不管多少都是对分享的肯定
打开微信扫一扫,即可进行扫码捐赠
文章
Kernel-3.10.0-957.el7_3270
IBM 3270 Display System support This file describes the driver that supports local channel attachmentof IBM 3270 devices. It consists of three section
Kernel-2.6.32-573.12.1.el6_devices
LINUX ALLOCATED DEVICES (2.6+ version) Maintained by Alan Cox <device@lanana.org> Last revised: 6th April 2009 This list is the Linux Device Lis
Kernel-3.10.0-957.el7_3c509
Linux and the 3Com EtherLink III Series Ethercards (driver v1.18c and higher)This file contains the instructions and caveats for v1.18c and higher ver
Kernel-3.10.0-957.el7_4CCs
Guidelines for Linux4Linux pixel format 4CCsGuidelines for Video4Linux 4CC codes defined using v4l2_fourcc() arespecified in this document. First of t
Kernel-3.10.0-957.el7_53c700
General DescriptionThis driver supports the 53c700 and 53c700-66 chips. It also supportsthe 53c710 but only in 53c700 emulation mode. It is full featu