Commit 93ba048e authored by Dave Wysochanski's avatar Dave Wysochanski Committed by Trond Myklebust

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: default avatarDave Wysochanski <dwysocha@redhat.com>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 9dfe52a9
...@@ -225,7 +225,7 @@ static void _print_rpc_iostats(struct seq_file *seq, struct rpc_iostats *stats, ...@@ -225,7 +225,7 @@ static void _print_rpc_iostats(struct seq_file *seq, struct rpc_iostats *stats,
int op, const struct rpc_procinfo *procs) int op, const struct rpc_procinfo *procs)
{ {
_print_name(seq, op, procs); _print_name(seq, op, procs);
seq_printf(seq, "%lu %lu %lu %Lu %Lu %Lu %Lu %Lu\n", seq_printf(seq, "%lu %lu %lu %llu %llu %llu %llu %llu\n",
stats->om_ops, stats->om_ops,
stats->om_ntrans, stats->om_ntrans,
stats->om_timeouts, stats->om_timeouts,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment