--=_courier-13809-1054772207-0001-2
Content-Type: multipart/mixed; boundary="=-TA6YXxbYRCChssUK0A3w"
--=-TA6YXxbYRCChssUK0A3w
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Hi,
I'm using GCC 3.3 to compile 2.5.70-mm4, and am being bombarded by
warnings regarding the use of integer constants in
include/linux/bitops.h. The attached patch, which is trivial, should
fix the problem.
Please CC me on any replies, as I am not subscribed to the linux-kernel
mailing list.
Regards,
Mike Jones
An excerpt of the warnings displayed on almost every compiled file:
include/linux/bitops.h: In function `generic_hweight64':
include/linux/bitops.h:118: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:118: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:119: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:119: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:120: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:120: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:121: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:121: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:122: warning: integer constant is too large for
"unsigned long" type
include/linux/bitops.h:122: warning: integer constant is too large for
"unsigned long" type
--=-TA6YXxbYRCChssUK0A3w
Content-Description:
Content-Disposition: inline; filename=bitops.h.diff
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable
--- bitops.h 2003-06-04 20:06:07.000000000 -0400
+++ linux-2.5.70/include/linux/bitops.h 2003-06-04 20:03:56.000000000 -0400
@@ -115,12 +115,12 @@
return generic_hweight32((unsigned int)(w >> 32)) +
generic_hweight32((unsigned int)w);
=20
- res =3D (w & 0x5555555555555555) + ((w >> 1) & 0x5555555555555555);
- res =3D (res & 0x3333333333333333) + ((res >> 2) & 0x3333333333333333);
- res =3D (res & 0x0F0F0F0F0F0F0F0F) + ((res >> 4) & 0x0F0F0F0F0F0F0F0F);
- res =3D (res & 0x00FF00FF00FF00FF) + ((res >> 8) & 0x00FF00FF00FF00FF);
- res =3D (res & 0x0000FFFF0000FFFF) + ((res >> 16) & 0x0000FFFF0000FFFF);
- return (res & 0x00000000FFFFFFFF) + ((res >> 32) & 0x00000000FFFFFFFF);
+ res =3D (w & 0x5555555555555555ULL) + ((w >> 1) & 0x5555555555555555ULL);
+ res =3D (res & 0x3333333333333333ULL) + ((res >> 2) & 0x3333333333333333U=
LL);
+ res =3D (res & 0x0F0F0F0F0F0F0F0FULL) + ((res >> 4) & 0x0F0F0F0F0F0F0F0FU=
LL);
+ res =3D (res & 0x00FF00FF00FF00FFULL) + ((res >> 8) & 0x00FF00FF00FF00FFU=
LL);
+ res =3D (res & 0x0000FFFF0000FFFFULL) + ((res >> 16) & 0x0000FFFF0000FFFF=
ULL);
+ return (res & 0x00000000FFFFFFFFULL) + ((res >> 32) & 0x00000000FFFFFFFFU=
LL);
}
=20
static inline unsigned long hweight_long(unsigned long w)
--=-TA6YXxbYRCChssUK0A3w--
--=_courier-13809-1054772207-0001-2
Content-Type: application/pgp-signature; name="signature.asc"
Content-Transfer-Encoding: 7bit
Content-Description: This is a digitally signed message part
-----BEGIN PGP SIGNATURE-----
iD8DBQA+3ou+QST/ojU/5mcRAicwAJ4tHWcEIM67VW3Bd6SAKMeQxIJnOQCeNu/n
/Gk/CLNoISKNn5QyM3KYB2s=
=5yzr
-----END PGP SIGNATURE-----
--=_courier-13809-1054772207-0001-2--