From: Andrew Morton <akpm@osdl.org>
To: "Jeffrey E. Hundstad" <jeffrey@hundstad.net>
Cc: linux-kernel@vger.kernel.org
Subject: Re: /proc/[0-9]*/maps where did the (deleted) status go?
Date: Sat, 1 Nov 2003 23:52:03 -0800 [thread overview]
Message-ID: <20031101235203.1721da10.akpm@osdl.org> (raw)
In-Reply-To: <3FA47EAF.3070802@hundstad.net>
"Jeffrey E. Hundstad" <jeffrey@hundstad.net> wrote:
>
> Hello,
>
> In the 2.4.x kernels the /proc/[process id]/maps file contains that
> processes current mappings. This is also true with 2.6.0-test9 but I've
> noticed a difference. It is a feature I'll miss. In the 2.4 kernels
> when a file is mapped but no longer exists (because it has been removed)
> the mapping line would contain the text "(deleted)" after it.
>
> I've used this feature after I've updated libraries on my system. I ran
> a little scriptlet (see below). It'd tell me which processes were
> running with the old copy of the library. This way I restart those
> processes.
>
> Is this a feature that can be restored, or perhaps there's a better way
> to do it. Let me know?
I see no difference between 2.4 and 2.6:
vmm:/home/akpm> uname -r
2.6.0-test9-mm2
vmm:/home/akpm> cat t.c
#include <sys/mman.h>
#include <fcntl.h>
#include <stdlib.h>
int main()
{
int fd;
char buf[4096];
void *p;
fd = open("foo", O_RDWR|O_CREAT, 0666);
write(fd, buf, 4096);
p = mmap(0, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE, fd, 0);
if (p == MAP_FAILED)
perror("mmap");
else
sleep(1000);
}
vmm:/home/akpm> ./a.out&
[1] 1397
vmm:/home/akpm> cat /proc/$(pidof a.out)/maps
08048000-08049000 r-xp 00000000 03:02 1425796 /home/akpm/a.out
08049000-0804a000 rw-p 00000000 03:02 1425796 /home/akpm/a.out
40000000-40015000 r-xp 00000000 03:02 1406303 /lib/ld-2.3.2.so
40015000-40016000 rw-p 00014000 03:02 1406303 /lib/ld-2.3.2.so
40016000-40017000 rw-p 00000000 00:00 0
40017000-40018000 rw-p 00000000 03:02 1425798 /home/akpm/foo
42000000-4212e000 r-xp 00000000 03:02 523311 /lib/tls/libc-2.3.2.so
4212e000-42131000 rw-p 0012e000 03:02 523311 /lib/tls/libc-2.3.2.so
42131000-42133000 rw-p 00000000 00:00 0
bfffc000-c0000000 rwxp ffffd000 00:00 0
vmm:/home/akpm> rm foo
vmm:/home/akpm> cat /proc/$(pidof a.out)/maps
08048000-08049000 r-xp 00000000 03:02 1425796 /home/akpm/a.out
08049000-0804a000 rw-p 00000000 03:02 1425796 /home/akpm/a.out
40000000-40015000 r-xp 00000000 03:02 1406303 /lib/ld-2.3.2.so
40015000-40016000 rw-p 00014000 03:02 1406303 /lib/ld-2.3.2.so
40016000-40017000 rw-p 00000000 00:00 0
40017000-40018000 rw-p 00000000 03:02 1425798 /home/akpm/foo\040(deleted)
42000000-4212e000 r-xp 00000000 03:02 523311 /lib/tls/libc-2.3.2.so
4212e000-42131000 rw-p 0012e000 03:02 523311 /lib/tls/libc-2.3.2.so
42131000-42133000 rw-p 00000000 00:00 0
bfffc000-c0000000 rwxp ffffd000 00:00 0
next prev parent reply other threads:[~2003-11-02 7:49 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-11-02 3:49 /proc/[0-9]*/maps where did the (deleted) status go? Jeffrey E. Hundstad
2003-11-02 7:52 ` Andrew Morton [this message]
2003-11-02 8:17 ` Jeffrey E. Hundstad
2003-11-02 8:47 ` Andrew Morton
2003-11-02 8:58 ` viro
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=20031101235203.1721da10.akpm@osdl.org \
--to=akpm@osdl.org \
--cc=jeffrey@hundstad.net \
--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 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.