public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Witold Krecicki <wpk@dst-labs.com>
To: linux-kernel@vger.kernel.org
Subject: Oddness with reading /proc/net/tcp
Date: Fri, 13 Apr 2007 18:46:16 +0200	[thread overview]
Message-ID: <200704131846.16358.wpk@dst-labs.com> (raw)

Reading data from /proc/net/tcp is slower with progress of reading data, 
tested on system with >200k active connections.

Sample code:
#include <stdio.h>
#include <sys/time.h>
#include <unistd.h>

int main(int argc, char ** argv)
{
  struct timeval starttime, endtime;
  FILE * fd;
  char buf[1024*1024*4];
  int pk;
  fd=fopen("/proc/net/tcp","r");
  gettimeofday(&starttime,0);
  pk=0;
  while (!feof(fd) && pk<10000)
    {
      fread(buf, 1, 1024, fd);
      pk++;
      if (pk%512==0)
      {
        gettimeofday(&endtime,0);
        printf("%d %ld\n",pk, (endtime.tv_usec-starttime.tv_usec) 
+1000000*(endtime.tv_sec - starttime.tv_sec));
        gettimeofday(&starttime,0);
      }
    }
  fclose(fd);
  return 0;
}

Result:
$ time ./a.out
512 231781
1024 1057159
1536 1726530
2048 2474851
2560 3236269
3072 3856587
3584 3438862
4096 3108675
4608 3500559
5120 4090534
5632 4612594
6144 5135624
6656 5266945
7168 5491547
7680 6355916
8192 6661789
8704 7095428
9216 7565589
9728 7982981

real    1m27.347s
user    0m0.024s
sys     1m27.309s


             reply	other threads:[~2007-04-13 16:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-13 16:46 Witold Krecicki [this message]
2007-04-13 17:40 ` Oddness with reading /proc/net/tcp Eric Dumazet

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=200704131846.16358.wpk@dst-labs.com \
    --to=wpk@dst-labs.com \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox