* [PATCH] Fixed some style warnings and errors
@ 2018-04-02 15:17 Khan M Rashedun-Naby
2018-04-02 16:17 ` Borislav Petkov
0 siblings, 1 reply; 3+ messages in thread
From: Khan M Rashedun-Naby @ 2018-04-02 15:17 UTC (permalink / raw)
To: tglx
Cc: mingo, hpa, x86, bp, thomas.lendacky, jgross, r.marek, qianyue.zj,
linux-kernel, Khan M Rashedun-Naby
Signed-off-by: Khan M Rashedun-Naby <naby88@gmail.com>
---
arch/x86/kernel/cpu/amd.c | 46 ++++++++++++++++++++++++++--------------------
1 file changed, 26 insertions(+), 20 deletions(-)
diff --git a/arch/x86/kernel/cpu/amd.c b/arch/x86/kernel/cpu/amd.c
index f0e6456..1a6e45e 100644
--- a/arch/x86/kernel/cpu/amd.c
+++ b/arch/x86/kernel/cpu/amd.c
@@ -32,7 +32,7 @@ static bool cpu_has_amd_erratum(struct cpuinfo_x86 *cpu, const int *erratum);
*/
static u32 nodes_per_socket = 1;
-static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
+static inline int rdmsrl_amd_safe(unsigned int msr, unsigned long long *p)
{
u32 gprs[8] = { 0 };
int err;
@@ -50,7 +50,7 @@ static inline int rdmsrl_amd_safe(unsigned msr, unsigned long long *p)
return err;
}
-static inline int wrmsrl_amd_safe(unsigned msr, unsigned long long val)
+static inline int wrmsrl_amd_safe(unsigned int msr, unsigned long long val)
{
u32 gprs[8] = { 0 };
@@ -157,6 +157,7 @@ static void init_amd_k6(struct cpuinfo_x86 *c)
rdmsr(MSR_K6_WHCR, l, h);
if ((l&0x0000FFFF) == 0) {
unsigned long flags;
+
l = (1<<0)|((mbytes/4)<<1);
local_irq_save(flags);
wbinvd();
@@ -178,6 +179,7 @@ static void init_amd_k6(struct cpuinfo_x86 *c)
rdmsr(MSR_K6_WHCR, l, h);
if ((l&0xFFFF0000) == 0) {
unsigned long flags;
+
l = ((mbytes>>2)<<22)|(1<<16);
local_irq_save(flags);
wbinvd();
@@ -268,8 +270,7 @@ static void init_amd_k7(struct cpuinfo_x86 *c)
* Don't taint if we are running SMP kernel on a single non-MP
* approved Athlon
*/
- WARN_ONCE(1, "WARNING: This combination of AMD"
- " processors is not suitable for SMP.\n");
+ WARN_ONCE(1, "WARNING: This combination of AMD processors is not suitable for SMP.\n");
add_taint(TAINT_CPU_OUT_OF_SPEC, LOCKDEP_NOW_UNRELIABLE);
#endif
}
@@ -384,7 +385,7 @@ static void amd_get_topology(struct cpuinfo_x86 *c)
static void amd_detect_cmp(struct cpuinfo_x86 *c)
{
#ifdef CONFIG_SMP
- unsigned bits;
+ unsigned int bits;
int cpu = smp_processor_id();
bits = c->x86_coreid_bits;
@@ -419,7 +420,7 @@ static void srat_detect_node(struct cpuinfo_x86 *c)
#ifdef CONFIG_NUMA
int cpu = smp_processor_id();
int node;
- unsigned apicid = c->apicid;
+ unsigned int apicid = c->apicid;
node = numa_cpu_node(cpu);
if (node == NUMA_NO_NODE)
@@ -468,7 +469,7 @@ static void srat_detect_node(struct cpuinfo_x86 *c)
static void early_init_amd_mc(struct cpuinfo_x86 *c)
{
#ifdef CONFIG_SMP
- unsigned bits, ecx;
+ unsigned int bits, ecx;
/* Multi core CPU? */
if (c->extended_cpuid_level < 0x80000008)
@@ -820,14 +821,22 @@ static void init_amd(struct cpuinfo_x86 *c)
clear_cpu_cap(c, X86_FEATURE_MCE);
switch (c->x86) {
- case 4: init_amd_k5(c); break;
- case 5: init_amd_k6(c); break;
- case 6: init_amd_k7(c); break;
- case 0xf: init_amd_k8(c); break;
- case 0x10: init_amd_gh(c); break;
- case 0x12: init_amd_ln(c); break;
- case 0x15: init_amd_bd(c); break;
- case 0x17: init_amd_zn(c); break;
+ case 4:
+ init_amd_k5(c); break;
+ case 5:
+ init_amd_k6(c); break;
+ case 6:
+ init_amd_k7(c); break;
+ case 0xf:
+ init_amd_k8(c); break;
+ case 0x10:
+ init_amd_gh(c); break;
+ case 0x12:
+ init_amd_ln(c); break;
+ case 0x15:
+ init_amd_bd(c); break;
+ case 0x17:
+ init_amd_zn(c); break;
}
/*
@@ -970,17 +979,14 @@ static const struct cpu_dev amd_cpu_dev = {
.c_vendor = "AMD",
.c_ident = { "AuthenticAMD" },
#ifdef CONFIG_X86_32
- .legacy_models = {
- { .family = 4, .model_names =
- {
+ .legacy_models = { { .family = 4, .model_names = {
[3] = "486 DX/2",
[7] = "486 DX/2-WB",
[8] = "486 DX/4",
[9] = "486 DX/4-WB",
[14] = "Am5x86-WT",
[15] = "Am5x86-WB"
- }
- },
+ } },
},
.legacy_cache_size = amd_size_cache,
#endif
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] Fixed some style warnings and errors
2018-04-02 15:17 [PATCH] Fixed some style warnings and errors Khan M Rashedun-Naby
@ 2018-04-02 16:17 ` Borislav Petkov
[not found] ` <CANOsoeva82vod1QDHoJiJr2bBAmD7hULZVowebK9yrpF+5cpOQ@mail.gmail.com>
0 siblings, 1 reply; 3+ messages in thread
From: Borislav Petkov @ 2018-04-02 16:17 UTC (permalink / raw)
To: Khan M Rashedun-Naby
Cc: tglx, mingo, hpa, x86, thomas.lendacky, jgross, r.marek,
qianyue.zj, linux-kernel
On Mon, Apr 02, 2018 at 09:17:43PM +0600, Khan M Rashedun-Naby wrote:
> @@ -820,14 +821,22 @@ static void init_amd(struct cpuinfo_x86 *c)
> clear_cpu_cap(c, X86_FEATURE_MCE);
>
> switch (c->x86) {
> - case 4: init_amd_k5(c); break;
> - case 5: init_amd_k6(c); break;
> - case 6: init_amd_k7(c); break;
> - case 0xf: init_amd_k8(c); break;
> - case 0x10: init_amd_gh(c); break;
> - case 0x12: init_amd_ln(c); break;
> - case 0x15: init_amd_bd(c); break;
> - case 0x17: init_amd_zn(c); break;
> + case 4:
> + init_amd_k5(c); break;
> + case 5:
> + init_amd_k6(c); break;
> + case 6:
> + init_amd_k7(c); break;
> + case 0xf:
> + init_amd_k8(c); break;
> + case 0x10:
> + init_amd_gh(c); break;
> + case 0x12:
> + init_amd_ln(c); break;
> + case 0x15:
> + init_amd_bd(c); break;
> + case 0x17:
> + init_amd_zn(c); break;
No, it was compact and more readable before.
In general, I'd very much advise *not* to do checkpatch-only patches.
--
Regards/Gruss,
Boris.
Good mailing practices for 400: avoid top-posting and trim the reply.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-04-02 16:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-02 15:17 [PATCH] Fixed some style warnings and errors Khan M Rashedun-Naby
2018-04-02 16:17 ` Borislav Petkov
[not found] ` <CANOsoeva82vod1QDHoJiJr2bBAmD7hULZVowebK9yrpF+5cpOQ@mail.gmail.com>
2018-04-02 16:43 ` Borislav Petkov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox