Skip to content

Commit

Permalink
SUNRPC: fix compile warnings on 64-bit platforms
Browse files Browse the repository at this point in the history
Introduced by NFS metrics patch.

Test plan:
Compile kernel with CONFIG_NFS enabled on a 64-bit platform.

Signed-off-by: Chuck Lever <cel@netapp.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
  • Loading branch information
Chuck Lever authored and Trond Myklebust committed Mar 20, 2006
1 parent 35576cb commit 5eb53f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion net/sunrpc/stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ void _print_name(struct seq_file *seq, unsigned int op, struct rpc_procinfo *pro
seq_printf(seq, "\t%12u: ", op);
}

#define MILLISECS_PER_JIFFY (1000UL / HZ)
#define MILLISECS_PER_JIFFY (1000 / HZ)

void rpc_print_iostats(struct seq_file *seq, struct rpc_clnt *clnt)
{
Expand Down

0 comments on commit 5eb53f4

Please sign in to comment.