Skip to content

Commit cf8f0e7

Browse files
yangxingwugregkh
authored andcommitted
net: udp: fix alignment problem in udp4_seq_show()
[ Upstream commit 6c25449 ] $ 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 <[email protected]> Signed-off-by: David S. Miller <[email protected]> Signed-off-by: Sasha Levin <[email protected]>
1 parent 294f3fc commit cf8f0e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

net/ipv4/udp.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3076,7 +3076,7 @@ int udp4_seq_show(struct seq_file *seq, void *v)
30763076
{
30773077
seq_setwidth(seq, 127);
30783078
if (v == SEQ_START_TOKEN)
3079-
seq_puts(seq, " sl local_address rem_address st tx_queue "
3079+
seq_puts(seq, " sl local_address rem_address st tx_queue "
30803080
"rx_queue tr tm->when retrnsmt uid timeout "
30813081
"inode ref pointer drops");
30823082
else {

0 commit comments

Comments
 (0)