From: Andrew Morton <akpm@zip.com.au>
To: "Chen, Kenneth W" <kenneth.w.chen@intel.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: free_task_struct() called too early?
Date: Fri, 10 Aug 2001 11:57:51 -0700 [thread overview]
Message-ID: <3B742EAF.8DC816D0@zip.com.au> (raw)
In-Reply-To: <794826DE8867D411BAB8009027AE9EB91011431F@FMSMSX38>
"Chen, Kenneth W" wrote:
>
> When a process terminates, it appears that the task structure is freed too
> early. There are memory references to the kernel task area (task_struct and
> stack space) after free_task_struct(p) is called.
>
> If I modify the following line in include/asm-i386/processor.h
>
> #define free_task_struct(p) free_pages((unsigned long) (p), 1) to
> #define free_task_struct(p) memset((void*) (p), 0xf, PAGE_SIZE*2);
> free_pages((unsigned long) (p), 1)
> then kernel will boot to init and lockup on when first task terminates.
free_pages will not actually free the page if its reference count
is greater than one - you're poisoning the page before it has actually
ceased to be used.
You should zap the page in __free_pages(), after the put_page_testzero()
call has succeeded.
next prev parent reply other threads:[~2001-08-10 18:52 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2001-08-10 18:13 free_task_struct() called too early? Chen, Kenneth W
2001-08-10 18:57 ` Andrew Morton [this message]
[not found] <no.id>
2001-08-10 22:43 ` Alan Cox
2001-08-10 22:57 ` Linus Torvalds
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=3B742EAF.8DC816D0@zip.com.au \
--to=akpm@zip.com.au \
--cc=kenneth.w.chen@intel.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 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.