Skip to content

Commit 6c25449

Browse files
yangxingwudavem330
authored andcommitted
net: udp: fix alignment problem in udp4_seq_show()
$ 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]>
1 parent 6d7373d commit 6c25449

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
@@ -3075,7 +3075,7 @@ int udp4_seq_show(struct seq_file *seq, void *v)
30753075
{
30763076
seq_setwidth(seq, 127);
30773077
if (v == SEQ_START_TOKEN)
3078-
seq_puts(seq, " sl local_address rem_address st tx_queue "
3078+
seq_puts(seq, " sl local_address rem_address st tx_queue "
30793079
"rx_queue tr tm->when retrnsmt uid timeout "
30803080
"inode ref pointer drops");
30813081
else {

0 commit comments

Comments
 (0)