projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f82b48d
)
net: udp: fix alignment problem in udp4_seq_show()
author
yangxingwu
<xingwu.yang@gmail.com>
Mon, 27 Dec 2021 08:29:51 +0000
(16:29 +0800)
committer
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Tue, 11 Jan 2022 14:25:02 +0000
(15:25 +0100)
[ Upstream commit
6c25449e1a32c594d743df8e8258e8ef870b6a77
]
$ cat /pro/net/udp
before:
sl local_address rem_address st tx_queue rx_queue tr tm->when
26050:
0100007F
:0035
00000000
:0000 07
00000000
:
00000000
00:
00000000
26320:
0100007F
:0143
00000000
:0000 07
00000000
:
00000000
00:
00000000
27135:
00000000
:8472
00000000
:0000 07
00000000
:
00000000
00:
00000000
after:
sl local_address rem_address st tx_queue rx_queue tr tm->when
26050:
0100007F
:0035
00000000
:0000 07
00000000
:
00000000
00:
00000000
26320:
0100007F
:0143
00000000
:0000 07
00000000
:
00000000
00:
00000000
27135:
00000000
:8472
00000000
:0000 07
00000000
:
00000000
00:
00000000
Signed-off-by: yangxingwu <xingwu.yang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/ipv4/udp.c
patch
|
blob
|
blame
|
history
diff --git
a/net/ipv4/udp.c
b/net/ipv4/udp.c
index 86ed2afbee302520b0b2b5c32b00dea502b3bdb4..ef2068a60d4ad49db4dd781178b060dd78541b58 100644
(file)
--- a/
net/ipv4/udp.c
+++ b/
net/ipv4/udp.c
@@
-3006,7
+3006,7
@@
int udp4_seq_show(struct seq_file *seq, void *v)
{
seq_setwidth(seq, 127);
if (v == SEQ_START_TOKEN)
- seq_puts(seq, " sl local_address rem_address st tx_queue "
+ seq_puts(seq, "
sl local_address rem_address st tx_queue "
"rx_queue tr tm->when retrnsmt uid timeout "
"inode ref pointer drops");
else {