All of lore.kernel.org
 help / color / mirror / Atom feed
* 1 New compile/sparse warning (overnight build)
@ 2004-09-29 17:22 John Cherry
  2004-09-29 17:33 ` Jens Axboe
  0 siblings, 1 reply; 3+ messages in thread
From: John Cherry @ 2004-09-29 17:22 UTC (permalink / raw)
  To: linux-kernel@vger.kernel.org

This sparse warning was introduced with patch 1.2000 (axboe).
In fs/bio.c (line 509),

	if (copy_from_user(addr, (char *) p, bvec->bv_len))

should probably be

	if (copy_from_user(addr, (char __user *) p, bvec->bv_len))

John

--------------------------------------------------------------

Compiler: gcc version 3.2.2 20030222 (Red Hat Linux 3.2.2-5)
Arch: i386


Summary:
   New warnings = 1
   Fixed warnings = 3

New warnings:
-------------
fs/bio.c:509:30: warning: incorrect type in argument 2 (different
address spaces)
fs/bio.c:509:30:    expected void const [noderef] *from<asn:1>
fs/bio.c:509:30:    got char *<noident>


Fixed warnings:
---------------
fs/bio.c:392:20: warning: incorrect type in argument 1 (different
address spaces)
fs/bio.c:392:20:    expected void [noderef] *to<asn:1>
fs/bio.c:392:20:    got char *uaddr

fs/bio.c:462:31: warning: incorrect type in argument 2 (different
address spaces)
fs/bio.c:462:31:    expected void const [noderef] *from<asn:1>
fs/bio.c:462:31:    got char *<noident>

kernel/sys.c:1737:34: warning: incorrect type in argument 2 (different
address spaces)
kernel/sys.c:1737:34:    expected char const [noderef] *src<asn:1>
kernel/sys.c:1737:34:    got char *<noident>




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2004-09-29 17:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-09-29 17:22 1 New compile/sparse warning (overnight build) John Cherry
2004-09-29 17:33 ` Jens Axboe
2004-09-29 17:51   ` John Cherry

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.