diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:24:27 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-02-18 00:24:27 +0000 |
commit | b9558d5f86c471a125abf1fb3a3882fb053b1f8c (patch) | |
tree | 707b53ec64e740a7da87d5f36485e3cd9b1c794e /net/ipv4/proc.c | |
parent | b3ac367c7a3e6047abe74817db27e34e759f279f (diff) |
Merge with Linux 2.3.41.
Diffstat (limited to 'net/ipv4/proc.c')
-rw-r--r-- | net/ipv4/proc.c | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/net/ipv4/proc.c b/net/ipv4/proc.c index b3e86f58c..d6a7c57f5 100644 --- a/net/ipv4/proc.c +++ b/net/ipv4/proc.c @@ -7,7 +7,7 @@ * PROC file system. It is mainly used for debugging and * statistics. * - * Version: $Id: proc.c,v 1.38 2000/01/09 02:19:30 davem Exp $ + * Version: $Id: proc.c,v 1.41 2000/01/21 23:45:57 davem Exp $ * * Authors: Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> * Gerald J. Heim, <heim@peanuts.informatik.uni-tuebingen.de> @@ -71,8 +71,9 @@ int afinet_get_info(char *buffer, char **start, off_t offset, int length) int len = socket_get_info(buffer,start,offset,length); - len += sprintf(buffer+len,"TCP: inuse %d\n", - fold_prot_inuse(&tcp_prot)); + len += sprintf(buffer+len,"TCP: inuse %d orphan %d tw %d\n", + fold_prot_inuse(&tcp_prot), + atomic_read(&tcp_orphan_count), tcp_tw_count); len += sprintf(buffer+len,"UDP: inuse %d\n", fold_prot_inuse(&udp_prot)); len += sprintf(buffer+len,"RAW: inuse %d\n", @@ -163,7 +164,14 @@ int netstat_get_info(char *buffer, char **start, off_t offset, int length) len = sprintf(buffer, "TcpExt: SyncookiesSent SyncookiesRecv SyncookiesFailed" " EmbryonicRsts PruneCalled RcvPruned OfoPruned" - " OutOfWindowIcmps LockDroppedIcmps\n" + " OutOfWindowIcmps LockDroppedIcmps" + " TW TWRecycled TWKilled" + " PAWSPassive PAWSActive PAWSEstab" + " DelayedACKs DelayedACKLocked DelayedACKLost" + " ListenOverflows ListenDrops" + " TCPPrequeued TCPDirectCopyFromBacklog" + " TCPDirectCopyFromPrequeue TCPPrequeueDropped" + " TCPHPHits TCPHPHitsToUser\n" "TcpExt:"); for (i=0; i<offsetof(struct linux_mib, __pad)/sizeof(unsigned long); i++) len += sprintf(buffer+len, " %lu", fold_field((unsigned long*)net_statistics, sizeof(struct linux_mib), i)); |