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/nfs/inode.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/nfs/inode.c')
-rw-r--r-- | fs/nfs/inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/inode.c b/fs/nfs/inode.c index 37e55c328ebc..419d1d254f9f 100644 --- a/fs/nfs/inode.c +++ b/fs/nfs/inode.c | |||
@@ -103,7 +103,7 @@ static struct rpc_version * nfs_version[] = { | |||
103 | static struct rpc_program nfs_program = { | 103 | static struct rpc_program nfs_program = { |
104 | .name = "nfs", | 104 | .name = "nfs", |
105 | .number = NFS_PROGRAM, | 105 | .number = NFS_PROGRAM, |
106 | .nrvers = sizeof(nfs_version) / sizeof(nfs_version[0]), | 106 | .nrvers = ARRAY_SIZE(nfs_version), |
107 | .version = nfs_version, | 107 | .version = nfs_version, |
108 | .stats = &nfs_rpcstat, | 108 | .stats = &nfs_rpcstat, |
109 | .pipe_dir_name = "/nfs", | 109 | .pipe_dir_name = "/nfs", |
@@ -118,7 +118,7 @@ static struct rpc_version * nfsacl_version[] = { | |||
118 | struct rpc_program nfsacl_program = { | 118 | struct rpc_program nfsacl_program = { |
119 | .name = "nfsacl", | 119 | .name = "nfsacl", |
120 | .number = NFS_ACL_PROGRAM, | 120 | .number = NFS_ACL_PROGRAM, |
121 | .nrvers = sizeof(nfsacl_version) / sizeof(nfsacl_version[0]), | 121 | .nrvers = ARRAY_SIZE(nfsacl_version), |
122 | .version = nfsacl_version, | 122 | .version = nfsacl_version, |
123 | .stats = &nfsacl_rpcstat, | 123 | .stats = &nfsacl_rpcstat, |
124 | }; | 124 | }; |