From: Keith Owens <kaos@ocs.com.au>
To: Andrey Panin <pazke@orbita1.ru>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH][RFC] __init and friends support for loadable modules
Date: Thu, 09 May 2002 00:02:07 +1000 [thread overview]
Message-ID: <9276.1020866527@ocs3.intra.ocs.com.au> (raw)
In-Reply-To: Your message of "Wed, 08 May 2002 14:29:33 +0400." <20020508102933.GA574@pazke.ipt>
On Wed, 8 May 2002 14:29:33 +0400,
Andrey Panin <pazke@orbita1.ru> wrote:
>attached patch adds support for freeing .init sections of loadable modules
>after init_module() function exits. Modutils have support for this since 19=
>98,
>but kernel support didn't exist.
The main reason I have not done this myself is the interaction between
freeing code areas and the exception and unwind tables. When you free
code, you should remove or nullify the related unwind and exception
entries. Another module could be loaded into the area that used to
contain init code and it would then be mapped by the first module's
tables, oops.
Fixing exception tables is relatively easy, search_exception_table()
can check if the address fits within the module (taking runsize into
account) before running the exception table. Unwind data is harder, it
is all architecture specific. Your patch will not be complete without
fixing all tables that point at module code. Don't forget the MIPS DBE
table.
Rusty and I plan to completely redo module loading and unloading and
the corresponding modutils support in 2.5. That will (hopefully)
include additional features such as per-node replication of pure module
areas for NUMA boxes. For me, the ability to free .init text and data
from modules falls into the category of "would be nice but the gain is
not worth the bother just for 2.4".
next prev parent reply other threads:[~2002-05-08 14:02 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-05-08 10:29 [PATCH][RFC] __init and friends support for loadable modules Andrey Panin
2002-05-08 14:02 ` Keith Owens [this message]
2002-05-09 7:45 ` Rusty Russell
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=9276.1020866527@ocs3.intra.ocs.com.au \
--to=kaos@ocs.com.au \
--cc=linux-kernel@vger.kernel.org \
--cc=pazke@orbita1.ru \
/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