[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-0d0fbbddcc27c062815732b38c44b544e656c799@git.kernel.org>
Date: Sun, 8 Nov 2009 11:06:56 GMT
From: tip-bot for Rusty Russell <rusty@...tcorp.com.au>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
rusty@...tcorp.com.au, tglx@...utronix.de, mingo@...e.hu,
borislav.petkov@....com
Subject: [tip:x86/cpu] x86, msr, cpumask: Use struct cpumask rather than the deprecated cpumask_t
Commit-ID: 0d0fbbddcc27c062815732b38c44b544e656c799
Gitweb: http://git.kernel.org/tip/0d0fbbddcc27c062815732b38c44b544e656c799
Author: Rusty Russell <rusty@...tcorp.com.au>
AuthorDate: Thu, 5 Nov 2009 22:45:41 +1030
Committer: Ingo Molnar <mingo@...e.hu>
CommitDate: Sun, 8 Nov 2009 11:58:38 +0100
x86, msr, cpumask: Use struct cpumask rather than the deprecated cpumask_t
This makes the declarations match the definitions, which already
use 'struct cpumask'.
Signed-off-by: Rusty Russell <rusty@...tcorp.com.au>
Acked-by: Borislav Petkov <borislav.petkov@....com>
LKML-Reference: <200911052245.41803.rusty@...tcorp.com.au>
Signed-off-by: Ingo Molnar <mingo@...e.hu>
---
arch/x86/include/asm/msr.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/arch/x86/include/asm/msr.h b/arch/x86/include/asm/msr.h
index 9a00219..5bef931 100644
--- a/arch/x86/include/asm/msr.h
+++ b/arch/x86/include/asm/msr.h
@@ -264,12 +264,12 @@ static inline int wrmsr_on_cpu(unsigned int cpu, u32 msr_no, u32 l, u32 h)
wrmsr(msr_no, l, h);
return 0;
}
-static inline void rdmsr_on_cpus(const cpumask_t *m, u32 msr_no,
+static inline void rdmsr_on_cpus(const struct cpumask *m, u32 msr_no,
struct msr *msrs)
{
rdmsr_on_cpu(0, msr_no, &(msrs[0].l), &(msrs[0].h));
}
-static inline void wrmsr_on_cpus(const cpumask_t *m, u32 msr_no,
+static inline void wrmsr_on_cpus(const struct cpumask *m, u32 msr_no,
struct msr *msrs)
{
wrmsr_on_cpu(0, msr_no, msrs[0].l, msrs[0].h);
--
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