aboutsummaryrefslogtreecommitdiffstats
path: root/net/core/net-sysfs.c
diff options
context:
space:
mode:
authorAdrian Bunk <bunk@stusta.de>2006-04-05 22:19:47 -0700
committerDavid S. Miller <davem@sunset.davemloft.net>2006-04-09 22:25:26 -0700
commite3a5cd9edff9a7a20de3c88c9d479704da98fb85 (patch)
tree2667fc69e67a58a49515e56d480ae61b984ab301 /net/core/net-sysfs.c
parent[NET] netconsole: set .name in struct console (diff)
downloadlinux-dev-e3a5cd9edff9a7a20de3c88c9d479704da98fb85.tar.xz
linux-dev-e3a5cd9edff9a7a20de3c88c9d479704da98fb85.zip
[NET]: Fix an off-by-21-or-49 error.
This patch fixes an off-by-21-or-49 error ;-) spotted by the Coverity checker. Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/core/net-sysfs.c')
-rw-r--r--net/core/net-sysfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/core/net-sysfs.c b/net/core/net-sysfs.c
index 21b68464cabb..c12990c9c603 100644
--- a/net/core/net-sysfs.c
+++ b/net/core/net-sysfs.c
@@ -165,7 +165,7 @@ static ssize_t show_operstate(struct class_device *dev, char *buf)
operstate = IF_OPER_DOWN;
read_unlock(&dev_base_lock);
- if (operstate >= sizeof(operstates))
+ if (operstate >= ARRAY_SIZE(operstates))
return -EINVAL; /* should not happen */
return sprintf(buf, "%s\n", operstates[operstate]);