From: Bill Wendling Date: Wed, 16 Mar 2022 21:31:25 +0000 (-0700) Subject: vlan: use correct format characters X-Git-Tag: v6.6.17~7931^2~55 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8624a95ecdea5ce6829bb42b0b9dcd8705961e04;p=platform%2Fkernel%2Flinux-rpi.git vlan: use correct format characters When compiling with -Wformat, clang emits the following warning: net/8021q/vlanproc.c:284:22: warning: format specifies type 'unsigned short' but the argument has type 'int' [-Wformat] mp->priority, ((mp->vlan_qos >> 13) & 0x7)); ^~~~~~~~~~~~~~~~~~~~~~~~~~~~ The types of these arguments are unconditionally defined, so this patch updates the format character to the correct ones for ints and unsigned ints. Link: https://github.com/ClangBuiltLinux/linux/issues/378 Signed-off-by: Bill Wendling Link: https://lore.kernel.org/r/20220316213125.2353370-1-morbo@google.com Signed-off-by: Jakub Kicinski --- diff --git a/net/8021q/vlanproc.c b/net/8021q/vlanproc.c index 08bf6c8..7825c12 100644 --- a/net/8021q/vlanproc.c +++ b/net/8021q/vlanproc.c @@ -280,7 +280,7 @@ static int vlandev_seq_show(struct seq_file *seq, void *offset) const struct vlan_priority_tci_mapping *mp = vlan->egress_priority_map[i]; while (mp) { - seq_printf(seq, "%u:%hu ", + seq_printf(seq, "%u:%d ", mp->priority, ((mp->vlan_qos >> 13) & 0x7)); mp = mp->next; }