[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1413576089-27014-1-git-send-email-fabf@skynet.be>
Date: Fri, 17 Oct 2014 22:01:29 +0200
From: Fabian Frederick <fabf@...net.be>
To: linux-kernel@...r.kernel.org
Cc: Fabian Frederick <fabf@...net.be>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>,
"H. Peter Anvin" <hpa@...or.com>, x86@...nel.org
Subject: [PATCH 1/4 linux-next] x86, msr: define msr chunksize
define MSR_CHUNK_SIZE instead of hard-coded value (8).
Signed-off-by: Fabian Frederick <fabf@...net.be>
---
arch/x86/include/asm/msr.h | 2 ++
arch/x86/kernel/msr.c | 18 +++++++++---------
2 files changed, 11 insertions(+), 9 deletions(-)
diff --git a/arch/x86/include/asm/msr.h b/arch/x86/include/asm/msr.h
index de36f22..f28a5a2 100644
--- a/arch/x86/include/asm/msr.h
+++ b/arch/x86/include/asm/msr.h
@@ -39,6 +39,8 @@ static inline unsigned long long native_read_tscp(unsigned int *aux)
return low | ((u64)high << 32);
}
+#define MSR_CHUNK_SIZE 8
+
/*
* both i386 and x86_64 returns 64-bit value in edx:eax, but gcc's "A"
* constraint has different meanings. For i386, "A" means exactly
diff --git a/arch/x86/kernel/msr.c b/arch/x86/kernel/msr.c
index c9603ac..f1f3ed0 100644
--- a/arch/x86/kernel/msr.c
+++ b/arch/x86/kernel/msr.c
@@ -75,19 +75,19 @@ static ssize_t msr_read(struct file *file, char __user *buf,
int err = 0;
ssize_t bytes = 0;
- if (count % 8)
+ if (count % MSR_CHUNK_SIZE)
return -EINVAL; /* Invalid chunk size */
- for (; count; count -= 8) {
+ for (; count; count -= MSR_CHUNK_SIZE) {
err = rdmsr_safe_on_cpu(cpu, reg, &data[0], &data[1]);
if (err)
break;
- if (copy_to_user(tmp, &data, 8)) {
+ if (copy_to_user(tmp, &data, MSR_CHUNK_SIZE)) {
err = -EFAULT;
break;
}
tmp += 2;
- bytes += 8;
+ bytes += MSR_CHUNK_SIZE;
}
return bytes ? bytes : err;
@@ -103,11 +103,11 @@ static ssize_t msr_write(struct file *file, const char __user *buf,
int err = 0;
ssize_t bytes = 0;
- if (count % 8)
+ if (count % MSR_CHUNK_SIZE)
return -EINVAL; /* Invalid chunk size */
- for (; count; count -= 8) {
- if (copy_from_user(&data, tmp, 8)) {
+ for (; count; count -= MSR_CHUNK_SIZE) {
+ if (copy_from_user(&data, tmp, MSR_CHUNK_SIZE)) {
err = -EFAULT;
break;
}
@@ -115,7 +115,7 @@ static ssize_t msr_write(struct file *file, const char __user *buf,
if (err)
break;
tmp += 2;
- bytes += 8;
+ bytes += MSR_CHUNK_SIZE;
}
return bytes ? bytes : err;
@@ -124,7 +124,7 @@ static ssize_t msr_write(struct file *file, const char __user *buf,
static long msr_ioctl(struct file *file, unsigned int ioc, unsigned long arg)
{
u32 __user *uregs = (u32 __user *)arg;
- u32 regs[8];
+ u32 regs[MSR_CHUNK_SIZE];
int cpu = iminor(file_inode(file));
int err;
--
1.9.3
--
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