From: Andrew Morton <akpm@zip.com.au>
To: Patrick Mau <mau@oscar.prima.de>
Cc: Linux Kernel <linux-kernel@vger.kernel.org>,
Linus Torvalds <torvalds@transmeta.com>
Subject: Re: 2.4.14-pre8: 'free' still reports bogus 'cached' value.
Date: Sun, 04 Nov 2001 10:27:18 -0800 [thread overview]
Message-ID: <3BE58886.FBCAEDB5@zip.com.au> (raw)
In-Reply-To: <20011104132238.A14511@oscar.dorf.de>
Patrick Mau wrote:
>
> Hi all,
>
> I just compiled 2.4.14-pre8, did some bonnie++ runs
> and compiled a few kernels to stress test this release.
>
> Here's the output of 'free':
>
> [root@tony] free
> total used free shared buffers cached
> Mem: 513336 82124 431212 0 30696 4294958092
> -/+ buffers/cache: 60632 452704
> Swap: 786416 4936 781480
>
It's a bug in the /proc code. If buffercache pages exceed
pagecache pages, `pg_size' flips negative.
There doesn't seem to be any reason to subtract buffermem_pages
from page_cache_size - they're independent.
--- linux-2.4.14-pre8/fs/proc/proc_misc.c Tue Oct 23 23:09:42 2001
+++ linux-akpm/fs/proc/proc_misc.c Sun Nov 4 10:10:18 2001
@@ -140,7 +140,7 @@ static int meminfo_read_proc(char *page,
{
struct sysinfo i;
int len;
- int pg_size ;
+ unsigned int cached;
/*
* display in kilobytes.
@@ -149,14 +149,14 @@ static int meminfo_read_proc(char *page,
#define B(x) ((unsigned long long)(x) << PAGE_SHIFT)
si_meminfo(&i);
si_swapinfo(&i);
- pg_size = atomic_read(&page_cache_size) - i.bufferram ;
+ cached = atomic_read(&page_cache_size);
len = sprintf(page, " total: used: free: shared: buffers: cached:\n"
"Mem: %8Lu %8Lu %8Lu %8Lu %8Lu %8Lu\n"
"Swap: %8Lu %8Lu %8Lu\n",
B(i.totalram), B(i.totalram-i.freeram), B(i.freeram),
B(i.sharedram), B(i.bufferram),
- B(pg_size), B(i.totalswap),
+ B(cached), B(i.totalswap),
B(i.totalswap-i.freeswap), B(i.freeswap));
/*
* Tagged format, for easy grepping and expansion.
@@ -182,7 +182,7 @@ static int meminfo_read_proc(char *page,
K(i.freeram),
K(i.sharedram),
K(i.bufferram),
- K(pg_size - swapper_space.nrpages),
+ K(cached - swapper_space.nrpages),
K(swapper_space.nrpages),
K(nr_active_pages),
K(nr_inactive_pages),
next prev parent reply other threads:[~2001-11-04 18:34 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-11-04 12:22 2.4.14-pre8: 'free' still reports bogus 'cached' value Patrick Mau
2001-11-04 18:27 ` Andrew Morton [this message]
2001-11-04 18:59 ` Andrew Morton
2001-11-04 20:30 ` Patrick Mau
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=3BE58886.FBCAEDB5@zip.com.au \
--to=akpm@zip.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=mau@oscar.prima.de \
--cc=torvalds@transmeta.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.