diff options
author | Tobias Klauser <tklauser@nuerscht.ch> | 2006-03-24 06:15:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:19 -0500 |
commit | e8c96f8c29d89af0c13dc2819a9a00575846ca18 (patch) | |
tree | b90ed0da4803df56a91be5979580e335af2d697c /fs/nfsctl.c | |
parent | b5029622ac86bb441dc5e641226fb1152fca02d7 (diff) |
[PATCH] fs: Use ARRAY_SIZE macro
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]) and remove a
duplicate of ARRAY_SIZE. Some trailing whitespaces are also deleted.
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Cc: David Howells <dhowells@redhat.com>
Cc: Dave Kleikamp <shaggy@austin.ibm.com>
Acked-by: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Cc: Chris Mason <mason@suse.com>
Cc: Jeff Mahoney <jeffm@suse.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Nathan Scott <nathans@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/nfsctl.c')
-rw-r--r-- | fs/nfsctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsctl.c b/fs/nfsctl.c index 1c72c7f85ddc..a5a18d4aca40 100644 --- a/fs/nfsctl.c +++ b/fs/nfsctl.c | |||
@@ -101,7 +101,7 @@ asmlinkage sys_nfsservctl(int cmd, struct nfsctl_arg __user *arg, void __user *r | |||
101 | if (version != NFSCTL_VERSION) | 101 | if (version != NFSCTL_VERSION) |
102 | return -EINVAL; | 102 | return -EINVAL; |
103 | 103 | ||
104 | if (cmd < 0 || cmd >= sizeof(map)/sizeof(map[0]) || !map[cmd].name) | 104 | if (cmd < 0 || cmd >= ARRAY_SIZE(map) || !map[cmd].name) |
105 | return -EINVAL; | 105 | return -EINVAL; |
106 | 106 | ||
107 | file = do_open(map[cmd].name, map[cmd].rsize ? O_RDWR : O_WRONLY); | 107 | file = do_open(map[cmd].name, map[cmd].rsize ? O_RDWR : O_WRONLY); |