diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2007-05-29 13:33:01 -0700 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-07-16 22:41:11 +0200 |
commit | 1de564bbf8b630ab356571cdbd15b7d5adb1c20d (patch) | |
tree | 3f04b53cd6ba721d5000fd75e3dbce14f23b2b8b /scripts | |
parent | 1abe02fef95366208c264635a886785d18fd38bb (diff) | |
download | linux-3.10-1de564bbf8b630ab356571cdbd15b7d5adb1c20d.tar.gz linux-3.10-1de564bbf8b630ab356571cdbd15b7d5adb1c20d.tar.bz2 linux-3.10-1de564bbf8b630ab356571cdbd15b7d5adb1c20d.zip |
kbuild: .paravirtprobe section is obsolete, so modpost doesn't need to handle it
The .paravirtprobe section is obsolete, so modpost doesn't need to handle it.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mod/modpost.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index fa33a6b92a9..ece09c55e09 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c @@ -637,12 +637,6 @@ static int strrcmp(const char *s, const char *sub) * fromsec = .text* * refsymname = logo_ * - * Pattern 8: - * Symbols contained in .paravirtprobe may safely reference .init.text. - * The pattern is: - * tosec = .init.text - * fromsec = .paravirtprobe - * * Pattern 10: * ia64 has machvec table for each platform and * powerpc has a machine desc table for each platform. @@ -726,11 +720,6 @@ static int secref_whitelist(const char *modname, const char *tosec, (strncmp(refsymname, "logo_", strlen("logo_")) == 0)) return 1; - /* Check for pattern 8 */ - if ((strcmp(tosec, ".init.text") == 0) && - (strcmp(fromsec, ".paravirtprobe") == 0)) - return 1; - /* Check for pattern 10 */ if ((strcmp(fromsec, ".machvec") == 0) || (strcmp(fromsec, ".machine.desc") == 0)) |