* [PATCH] x86/intel_cacheinfo: remove redundant assignment to this_leaf
@ 2017-10-15 16:02 Colin King
2017-10-15 20:46 ` Borislav Petkov
2017-10-16 9:36 ` [tip:x86/urgent] x86/cpu/intel_cacheinfo: Remove redundant assignment to 'this_leaf' tip-bot for Colin Ian King
0 siblings, 2 replies; 3+ messages in thread
From: Colin King @ 2017-10-15 16:02 UTC (permalink / raw)
To: Thomas Gleixner, Ingo Molnar, H . Peter Anvin, x86
Cc: kernel-janitors, linux-kernel
From: Colin Ian King <colin.king@canonical.com>
The variable this_leaf is being assigned a value that is never
read and it is being updated a little later with a newer value,
hence we can remove the redundant assignment.
Cleans up clang warning: Value stored to 'this_leaf' is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
arch/x86/kernel/cpu/intel_cacheinfo.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 24f749324c0f..9990a71e311f 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -831,7 +831,6 @@ static int __cache_amd_cpumap_setup(unsigned int cpu, int index,
} else if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
unsigned int apicid, nshared, first, last;
- this_leaf = this_cpu_ci->info_list + index;
nshared = base->eax.split.num_threads_sharing + 1;
apicid = cpu_data(cpu).apicid;
first = apicid - (apicid % nshared);
--
2.14.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] x86/intel_cacheinfo: remove redundant assignment to this_leaf
2017-10-15 16:02 [PATCH] x86/intel_cacheinfo: remove redundant assignment to this_leaf Colin King
@ 2017-10-15 20:46 ` Borislav Petkov
2017-10-16 9:36 ` [tip:x86/urgent] x86/cpu/intel_cacheinfo: Remove redundant assignment to 'this_leaf' tip-bot for Colin Ian King
1 sibling, 0 replies; 3+ messages in thread
From: Borislav Petkov @ 2017-10-15 20:46 UTC (permalink / raw)
To: Colin King
Cc: Thomas Gleixner, Ingo Molnar, H . Peter Anvin, x86,
kernel-janitors, linux-kernel
On Sun, Oct 15, 2017 at 05:02:03PM +0100, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> The variable this_leaf is being assigned a value that is never
> read and it is being updated a little later with a newer value,
> hence we can remove the redundant assignment.
>
> Cleans up clang warning: Value stored to 'this_leaf' is never read
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
> ---
> arch/x86/kernel/cpu/intel_cacheinfo.c | 1 -
> 1 file changed, 1 deletion(-)
>
> diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
> index 24f749324c0f..9990a71e311f 100644
> --- a/arch/x86/kernel/cpu/intel_cacheinfo.c
> +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
> @@ -831,7 +831,6 @@ static int __cache_amd_cpumap_setup(unsigned int cpu, int index,
> } else if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
> unsigned int apicid, nshared, first, last;
>
> - this_leaf = this_cpu_ci->info_list + index;
> nshared = base->eax.split.num_threads_sharing + 1;
> apicid = cpu_data(cpu).apicid;
> first = apicid - (apicid % nshared);
> --
Looks ok to me.
Reviewed-by: Borislav Petkov <bp@suse.de>
--
Regards/Gruss,
Boris.
Good mailing practices for 400: avoid top-posting and trim the reply.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:x86/urgent] x86/cpu/intel_cacheinfo: Remove redundant assignment to 'this_leaf'
2017-10-15 16:02 [PATCH] x86/intel_cacheinfo: remove redundant assignment to this_leaf Colin King
2017-10-15 20:46 ` Borislav Petkov
@ 2017-10-16 9:36 ` tip-bot for Colin Ian King
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Colin Ian King @ 2017-10-16 9:36 UTC (permalink / raw)
To: linux-tip-commits
Cc: torvalds, bp, tglx, colin.king, hpa, mingo, peterz, linux-kernel
Commit-ID: e6fc454b7794fc45c27364c7896b8f03094635ee
Gitweb: https://git.kernel.org/tip/e6fc454b7794fc45c27364c7896b8f03094635ee
Author: Colin Ian King <colin.king@canonical.com>
AuthorDate: Sun, 15 Oct 2017 17:02:03 +0100
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Mon, 16 Oct 2017 09:25:18 +0200
x86/cpu/intel_cacheinfo: Remove redundant assignment to 'this_leaf'
The 'this_leaf' variable is assigned a value that is never
read and it is updated a little later with a newer value,
hence we can remove the redundant assignment.
Cleans up the following Clang warning:
Value stored to 'this_leaf' is never read
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Reviewed-by: Borislav Petkov <bp@suse.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: kernel-janitors@vger.kernel.org
Link: http://lkml.kernel.org/r/20171015160203.12332-1-colin.king@canonical.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
---
arch/x86/kernel/cpu/intel_cacheinfo.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c
index 24f74932..9990a71 100644
--- a/arch/x86/kernel/cpu/intel_cacheinfo.c
+++ b/arch/x86/kernel/cpu/intel_cacheinfo.c
@@ -831,7 +831,6 @@ static int __cache_amd_cpumap_setup(unsigned int cpu, int index,
} else if (boot_cpu_has(X86_FEATURE_TOPOEXT)) {
unsigned int apicid, nshared, first, last;
- this_leaf = this_cpu_ci->info_list + index;
nshared = base->eax.split.num_threads_sharing + 1;
apicid = cpu_data(cpu).apicid;
first = apicid - (apicid % nshared);
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-10-16 9:41 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-10-15 16:02 [PATCH] x86/intel_cacheinfo: remove redundant assignment to this_leaf Colin King
2017-10-15 20:46 ` Borislav Petkov
2017-10-16 9:36 ` [tip:x86/urgent] x86/cpu/intel_cacheinfo: Remove redundant assignment to 'this_leaf' tip-bot for Colin Ian King
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox