diff options
author | Dave Wysochanski <dwysocha@redhat.com> | 2019-05-23 16:13:49 -0400 |
---|---|---|
committer | Trond Myklebust <trond.myklebust@hammerspace.com> | 2019-07-06 14:54:51 -0400 |
commit | 93ba048e1b9f95ac7e1584fa33ed4d985bf1133d (patch) | |
tree | f66a17baeca5d8d54a1d9ebbefe64725cee1e78c /net/sunrpc | |
parent | 9dfe52a95a60096fc12234383a19b0f436304418 (diff) |
SUNRPC: Use proper printk specifiers for unsigned long long
Update the printk specifiers inside _print_rpc_iostats to avoid
a checkpatch warning.
Signed-off-by: Dave Wysochanski <dwysocha@redhat.com>
Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Diffstat (limited to 'net/sunrpc')
-rw-r--r-- | net/sunrpc/stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/sunrpc/stats.c b/net/sunrpc/stats.c index 2b6dc7e5f74f..2f7bde82450b 100644 --- a/net/sunrpc/stats.c +++ b/net/sunrpc/stats.c | |||
@@ -225,7 +225,7 @@ static void _print_rpc_iostats(struct seq_file *seq, struct rpc_iostats *stats, | |||
225 | int op, const struct rpc_procinfo *procs) | 225 | int op, const struct rpc_procinfo *procs) |
226 | { | 226 | { |
227 | _print_name(seq, op, procs); | 227 | _print_name(seq, op, procs); |
228 | seq_printf(seq, "%lu %lu %lu %Lu %Lu %Lu %Lu %Lu\n", | 228 | seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %llu\n", |
229 | stats->om_ops, | 229 | stats->om_ops, |
230 | stats->om_ntrans, | 230 | stats->om_ntrans, |
231 | stats->om_timeouts, | 231 | stats->om_timeouts, |