[<prev] [next>] [day] [month] [year] [list]
Message-ID: <tip-7e9a2f0a080ba2f247559e95eb0df7072bede18a@git.kernel.org>
Date: Thu, 11 Apr 2013 05:18:10 -0700
From: tip-bot for Martin Bundgaard <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...nel.org,
martin@...dflux.org, tglx@...utronix.de
Subject: [tip:x86/mm] x86/mm/numa: Simplify some bit mangling
Commit-ID: 7e9a2f0a080ba2f247559e95eb0df7072bede18a
Gitweb: http://git.kernel.org/tip/7e9a2f0a080ba2f247559e95eb0df7072bede18a
Author: Martin Bundgaard <martin@...dflux.org>
AuthorDate: Thu, 14 Mar 2013 19:34:35 +0100
Committer: Ingo Molnar <mingo@...nel.org>
CommitDate: Wed, 10 Apr 2013 19:06:26 +0200
x86/mm/numa: Simplify some bit mangling
Minor. Reordered a few lines to lose a superfluous OR operation.
Signed-off-by: Martin Bundgaard <martin@...dflux.org>
Link: http://lkml.kernel.org/r/1363286075-62615-1-git-send-email-martin@mindflux.org
Signed-off-by: Ingo Molnar <mingo@...nel.org>
---
arch/x86/mm/amdtopology.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/arch/x86/mm/amdtopology.c b/arch/x86/mm/amdtopology.c
index 5247d01..2ca15b5 100644
--- a/arch/x86/mm/amdtopology.c
+++ b/arch/x86/mm/amdtopology.c
@@ -130,9 +130,8 @@ int __init amd_numa_init(void)
}
limit >>= 16;
- limit <<= 24;
- limit |= (1<<24)-1;
limit++;
+ limit <<= 24;
if (limit > end)
limit = end;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists