public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* Reading /proc/stat is slooow
@ 2005-12-02 17:42 Andreas Schwab
  2005-12-05 22:21 ` Luck, Tony
                   ` (7 more replies)
  0 siblings, 8 replies; 12+ messages in thread
From: Andreas Schwab @ 2005-12-02 17:42 UTC (permalink / raw)
  To: linux-ia64

[-- Attachment #1: Type: text/plain, Size: 643 bytes --]

At some point after 2.6.13 reading /proc/stat has become too slow.  This
is most visible with xosview, which spends up to 80% in kernel space.  I
have attached a simple program that you can run with "strace -r" to see
that the second read of /proc/stat which eventually returns EOF takes too
much time.  If you remove the loop around read the same amount of time is
now spent in close.

Andreas.

-- 
Andreas Schwab, SuSE Labs, schwab@suse.de
SuSE Linux Products GmbH, Maxfeldstraße 5, 90409 Nürnberg, Germany
PGP key fingerprint = 58CA 54C7 6D53 942B 1756  01D3 44D5 214B 8276 4ED5
"And now for something completely different."

[-- Attachment #2: stat.c --]
[-- Type: text/plain, Size: 300 bytes --]

#include <unistd.h>
#include <fcntl.h>

static char buf[8192];

int
main (int argc, char **argv)
{
  const char *file = argc > 1 ? argv[1] : "/proc/stat";
  while (1)
    {
      int fd = open (file, O_RDONLY);
      while (read (fd, buf, 8192) > 0);
      close (fd);
      usleep (300000);
    }
}

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2005-12-07 19:54 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-12-02 17:42 Reading /proc/stat is slooow Andreas Schwab
2005-12-05 22:21 ` Luck, Tony
2005-12-05 23:36 ` Andreas Schwab
2005-12-05 23:46 ` Andreas Schwab
2005-12-06  0:19 ` Luck, Tony
2005-12-06  1:21 ` Luck, Tony
2005-12-06  6:15 ` Luck, Tony
2005-12-06  9:24 ` Zou, Nanhai
2005-12-06 16:58   ` Luck, Tony
2005-12-06 17:10     ` Andreas Schwab
2005-12-07 19:54       ` [PATCH] Drop per-irq counters from /proc/stat (Was: Reading /proc/stat is slooow) Luck, Tony
2005-12-06  9:57 ` Reading /proc/stat is slooow Andreas Schwab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox