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/nfsd/nfssvc.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/nfsd/nfssvc.c')
-rw-r--r-- | fs/nfsd/nfssvc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c index 1d163b616915..3790727e5dfd 100644 --- a/fs/nfsd/nfssvc.c +++ b/fs/nfsd/nfssvc.c | |||
@@ -72,7 +72,7 @@ static struct svc_version * nfsd_acl_version[] = { | |||
72 | }; | 72 | }; |
73 | 73 | ||
74 | #define NFSD_ACL_MINVERS 2 | 74 | #define NFSD_ACL_MINVERS 2 |
75 | #define NFSD_ACL_NRVERS (sizeof(nfsd_acl_version)/sizeof(nfsd_acl_version[0])) | 75 | #define NFSD_ACL_NRVERS ARRAY_SIZE(nfsd_acl_version) |
76 | static struct svc_version *nfsd_acl_versions[NFSD_ACL_NRVERS]; | 76 | static struct svc_version *nfsd_acl_versions[NFSD_ACL_NRVERS]; |
77 | 77 | ||
78 | static struct svc_program nfsd_acl_program = { | 78 | static struct svc_program nfsd_acl_program = { |
@@ -101,7 +101,7 @@ static struct svc_version * nfsd_version[] = { | |||
101 | }; | 101 | }; |
102 | 102 | ||
103 | #define NFSD_MINVERS 2 | 103 | #define NFSD_MINVERS 2 |
104 | #define NFSD_NRVERS (sizeof(nfsd_version)/sizeof(nfsd_version[0])) | 104 | #define NFSD_NRVERS ARRAY_SIZE(nfsd_version) |
105 | static struct svc_version *nfsd_versions[NFSD_NRVERS]; | 105 | static struct svc_version *nfsd_versions[NFSD_NRVERS]; |
106 | 106 | ||
107 | struct svc_program nfsd_program = { | 107 | struct svc_program nfsd_program = { |