+ kern-sys-compat-sysinfo-syscall-fix-undefined-behavior.patch added to -mm tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The patch titled
     Subject: kernel/sys.c: compat sysinfo syscall: fix undefined behavior
has been added to the -mm tree.  Its filename is
     kern-sys-compat-sysinfo-syscall-fix-undefined-behavior.patch

This patch should soon appear at
    http://ozlabs.org/~akpm/mmots/broken-out/kern-sys-compat-sysinfo-syscall-fix-undefined-behavior.patch
and later at
    http://ozlabs.org/~akpm/mmotm/broken-out/kern-sys-compat-sysinfo-syscall-fix-undefined-behavior.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

The -mm tree is included into linux-next and is updated
there every 3-4 working days

------------------------------------------------------
From: Scotty Bauer <sbauer@xxxxxxxxxxxx>
Subject: kernel/sys.c: compat sysinfo syscall: fix undefined behavior

Fix undefined behavior and compiler warning by replacing right shift 32
with upper_32_bits macro

Signed-off-by: Scotty Bauer <sbauer@xxxxxxxxxxxx>
Cc: Clemens Ladisch <clemens@xxxxxxxxxx>
Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
---

 kernel/sys.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN kernel/sys.c~kern-sys-compat-sysinfo-syscall-fix-undefined-behavior kernel/sys.c
--- a/kernel/sys.c~kern-sys-compat-sysinfo-syscall-fix-undefined-behavior
+++ a/kernel/sys.c
@@ -2330,7 +2330,7 @@ COMPAT_SYSCALL_DEFINE1(sysinfo, struct c
 	/* Check to see if any memory value is too large for 32-bit and scale
 	 *  down if needed
 	 */
-	if ((s.totalram >> 32) || (s.totalswap >> 32)) {
+	if (upper_32_bits(s.totalram) || upper_32_bits(s.totalswap)) {
 		int bitcount = 0;
 
 		while (s.mem_unit < PAGE_SIZE) {
_

Patches currently in -mm which might be from sbauer@xxxxxxxxxxxx are

kern-sys-compat-sysinfo-syscall-fix-undefined-behavior.patch

--
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html




[Index of Archives]     [Kernel Newbies FAQ]     [Kernel Archive]     [IETF Annouce]     [DCCP]     [Netdev]     [Networking]     [Security]     [Bugtraq]     [Photo]     [Yosemite]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux SCSI]

  Powered by Linux