mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-11-23 18:14:04 +08:00
l2tp: l2tp_debugfs: fix Clang -Wformat warnings
When building with Clang we encounter the following warnings: | net/l2tp/l2tp_debugfs.c:187:40: error: format specifies type 'unsigned | short' but the argument has type 'u32' (aka 'unsigned int') | [-Werror,-Wformat] seq_printf(m, " nr %hu, ns %hu\n", session->nr, | session->ns); - | net/l2tp/l2tp_debugfs.c:196:32: error: format specifies type 'unsigned | short' but the argument has type 'int' [-Werror,-Wformat] | session->l2specific_type, l2tp_get_l2specific_len(session)); - | net/l2tp/l2tp_debugfs.c:219:6: error: format specifies type 'unsigned | short' but the argument has type 'u32' (aka 'unsigned int') | [-Werror,-Wformat] session->nr, session->ns, Both session->nr and ->nc are of type `u32`. The currently used format specifier is `%hu` which describes a `u16`. My proposed fix is to listen to Clang and use the correct format specifier `%u`. For the warning at line 196, l2tp_get_l2specific_len() returns an int and should therefore be using the `%d` format specifier. Link: https://github.com/ClangBuiltLinux/linux/issues/378 Signed-off-by: Justin Stitt <justinstitt@google.com> Acked-by: Guillaume Nault <gnault@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
9157533a0a
commit
9d899dbe23
@ -184,7 +184,7 @@ static void l2tp_dfs_seq_session_show(struct seq_file *m, void *v)
|
|||||||
session->pwtype == L2TP_PWTYPE_PPP ? "PPP" :
|
session->pwtype == L2TP_PWTYPE_PPP ? "PPP" :
|
||||||
"");
|
"");
|
||||||
if (session->send_seq || session->recv_seq)
|
if (session->send_seq || session->recv_seq)
|
||||||
seq_printf(m, " nr %hu, ns %hu\n", session->nr, session->ns);
|
seq_printf(m, " nr %u, ns %u\n", session->nr, session->ns);
|
||||||
seq_printf(m, " refcnt %d\n", refcount_read(&session->ref_count));
|
seq_printf(m, " refcnt %d\n", refcount_read(&session->ref_count));
|
||||||
seq_printf(m, " config 0/0/%c/%c/-/%s %08x %u\n",
|
seq_printf(m, " config 0/0/%c/%c/-/%s %08x %u\n",
|
||||||
session->recv_seq ? 'R' : '-',
|
session->recv_seq ? 'R' : '-',
|
||||||
@ -192,7 +192,7 @@ static void l2tp_dfs_seq_session_show(struct seq_file *m, void *v)
|
|||||||
session->lns_mode ? "LNS" : "LAC",
|
session->lns_mode ? "LNS" : "LAC",
|
||||||
0,
|
0,
|
||||||
jiffies_to_msecs(session->reorder_timeout));
|
jiffies_to_msecs(session->reorder_timeout));
|
||||||
seq_printf(m, " offset 0 l2specific %hu/%hu\n",
|
seq_printf(m, " offset 0 l2specific %hu/%d\n",
|
||||||
session->l2specific_type, l2tp_get_l2specific_len(session));
|
session->l2specific_type, l2tp_get_l2specific_len(session));
|
||||||
if (session->cookie_len) {
|
if (session->cookie_len) {
|
||||||
seq_printf(m, " cookie %02x%02x%02x%02x",
|
seq_printf(m, " cookie %02x%02x%02x%02x",
|
||||||
@ -215,7 +215,7 @@ static void l2tp_dfs_seq_session_show(struct seq_file *m, void *v)
|
|||||||
seq_puts(m, "\n");
|
seq_puts(m, "\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
seq_printf(m, " %hu/%hu tx %ld/%ld/%ld rx %ld/%ld/%ld\n",
|
seq_printf(m, " %u/%u tx %ld/%ld/%ld rx %ld/%ld/%ld\n",
|
||||||
session->nr, session->ns,
|
session->nr, session->ns,
|
||||||
atomic_long_read(&session->stats.tx_packets),
|
atomic_long_read(&session->stats.tx_packets),
|
||||||
atomic_long_read(&session->stats.tx_bytes),
|
atomic_long_read(&session->stats.tx_bytes),
|
||||||
|
Loading…
Reference in New Issue
Block a user