diff options
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r-- | net/ipv4/proc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index d75ddb7fa4b8..d63474c6b400 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c | |||
@@ -59,9 +59,7 @@ static int sockstat_seq_show(struct seq_file *seq, void *v) | |||
59 | atomic_read(&tcp_memory_allocated)); | 59 | atomic_read(&tcp_memory_allocated)); |
60 | seq_printf(seq, "UDP: inuse %d mem %d\n", sock_prot_inuse_get(&udp_prot), | 60 | seq_printf(seq, "UDP: inuse %d mem %d\n", sock_prot_inuse_get(&udp_prot), |
61 | atomic_read(&udp_memory_allocated)); | 61 | atomic_read(&udp_memory_allocated)); |
62 | #ifdef CONFIG_IP_UDPLITE | ||
63 | seq_printf(seq, "UDPLITE: inuse %d\n", sock_prot_inuse_get(&udplite_prot)); | 62 | seq_printf(seq, "UDPLITE: inuse %d\n", sock_prot_inuse_get(&udplite_prot)); |
64 | #endif | ||
65 | seq_printf(seq, "RAW: inuse %d\n", sock_prot_inuse_get(&raw_prot)); | 63 | seq_printf(seq, "RAW: inuse %d\n", sock_prot_inuse_get(&raw_prot)); |
66 | seq_printf(seq, "FRAG: inuse %d memory %d\n", | 64 | seq_printf(seq, "FRAG: inuse %d memory %d\n", |
67 | ip_frag_nqueues(&init_net), ip_frag_mem(&init_net)); | 65 | ip_frag_nqueues(&init_net), ip_frag_mem(&init_net)); |
@@ -351,7 +349,6 @@ static int snmp_seq_show(struct seq_file *seq, void *v) | |||
351 | snmp_fold_field((void **)udp_statistics, | 349 | snmp_fold_field((void **)udp_statistics, |
352 | snmp4_udp_list[i].entry)); | 350 | snmp4_udp_list[i].entry)); |
353 | 351 | ||
354 | #ifdef CONFIG_IP_UDPLITE | ||
355 | /* the UDP and UDP-Lite MIBs are the same */ | 352 | /* the UDP and UDP-Lite MIBs are the same */ |
356 | seq_puts(seq, "\nUdpLite:"); | 353 | seq_puts(seq, "\nUdpLite:"); |
357 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) | 354 | for (i = 0; snmp4_udp_list[i].name != NULL; i++) |
@@ -362,7 +359,7 @@ static int snmp_seq_show(struct seq_file *seq, void *v) | |||
362 | seq_printf(seq, " %lu", | 359 | seq_printf(seq, " %lu", |
363 | snmp_fold_field((void **)udplite_statistics, | 360 | snmp_fold_field((void **)udplite_statistics, |
364 | snmp4_udp_list[i].entry)); | 361 | snmp4_udp_list[i].entry)); |
365 | #endif | 362 | |
366 | seq_putc(seq, '\n'); | 363 | seq_putc(seq, '\n'); |
367 | return 0; | 364 | return 0; |
368 | } | 365 | } |