]> git.karo-electronics.de Git - karo-tx-linux.git/commit
init: disable sparse checking of the mount.o source files
authorH Hartley Sweeten <hartleys@visionengravers.com>
Thu, 3 May 2012 05:44:31 +0000 (15:44 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Thu, 3 May 2012 05:46:51 +0000 (15:46 +1000)
commit3fc45bf39e21533dca0deb88325156d63aac2aee
treec0fb2d921622e050223deb48a5a5fa58aa5279de
parent66115a5efca1681947753d2a9e0080f01533331d
init: disable sparse checking of the mount.o source files

The init/mount.o source files produce a number of sparse warnings of the
type:

warning: incorrect type in argument 1 (different address spaces)
   expected char [noderef] <asn:1>*dev_name
   got char *name

This is due to the syscalls expecting some of the arguments to be user
pointers but they are being passed as kernel pointers.  This is harmless
but adds a lot of noise to a sparse build.

To limit the noise just disable the sparse checking in the relevant source
files, but still display a warning so that the user knows this has been
done.

Since the sparse checking has been disabled we can also remove the __user
__force casts that are scattered thru the source.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
init/do_mounts.c
init/do_mounts_initrd.c
init/do_mounts_md.c
init/do_mounts_rd.c
init/initramfs.c