projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
787314c
)
arch/x86/platform/uv: use ARRAY_SIZE where possible
author
Sasha Levin
<sasha.levin@oracle.com>
Thu, 20 Dec 2012 19:11:34 +0000
(14:11 -0500)
committer
H. Peter Anvin
<hpa@linux.intel.com>
Thu, 20 Dec 2012 19:49:39 +0000
(11:49 -0800)
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Link:
http://lkml.kernel.org/r/1356030701-16284-26-git-send-email-sasha.levin@oracle.com
Cc: Cliff Wickman <cpw@sgi.com>
Cc: Alex Shi <alex.shi@intel.com>
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
arch/x86/platform/uv/tlb_uv.c
patch
|
blob
|
history
diff --git
a/arch/x86/platform/uv/tlb_uv.c
b/arch/x86/platform/uv/tlb_uv.c
index b8b3a37c80cd75e96559e67876206ad603b53741..933bea5a601d565b9affe8699a212b8275d789ad 100644
(file)
--- a/
arch/x86/platform/uv/tlb_uv.c
+++ b/
arch/x86/platform/uv/tlb_uv.c
@@
-1463,7
+1463,7
@@
static ssize_t ptc_proc_write(struct file *file, const char __user *user,
}
if (input_arg == 0) {
- elements =
sizeof(stat_description)/sizeof(*
stat_description);
+ elements =
ARRAY_SIZE(
stat_description);
printk(KERN_DEBUG "# cpu: cpu number\n");
printk(KERN_DEBUG "Sender statistics:\n");
for (i = 0; i < elements; i++)
@@
-1504,7
+1504,7
@@
static int parse_tunables_write(struct bau_control *bcp, char *instr,
char *q;
int cnt = 0;
int val;
- int e =
sizeof(tunables) / sizeof(*
tunables);
+ int e =
ARRAY_SIZE(
tunables);
p = instr + strspn(instr, WHITESPACE);
q = p;