The patch titled
powerpc: suppress modpost warnings for references from the .toc
has been removed from the -mm tree. Its filename was
powerpc-suppress-modpost-warnings-for-references-from-the-toc.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: powerpc: suppress modpost warnings for references from the .toc
From: Stephen Rothwell <[EMAIL PROTECTED]>
We should do better here by effetively "dereferencing" references to the
.toc (or the .got2) section, but that is much harder.
Signed-off-by: Stephen Rothwell <[EMAIL PROTECTED]>
Cc: Paul Mackerras <[EMAIL PROTECTED]>
Cc: Sam Ravnborg <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
scripts/mod/modpost.c | 5 ++++-
1 files changed, 4 insertions(+), 1 deletion(-)
diff -puN
scripts/mod/modpost.c~powerpc-suppress-modpost-warnings-for-references-from-the-toc
scripts/mod/modpost.c
---
a/scripts/mod/modpost.c~powerpc-suppress-modpost-warnings-for-references-from-the-toc
+++ a/scripts/mod/modpost.c
@@ -865,9 +865,12 @@ static void warn_sec_mismatch(const char
return;
/* fromsec whitelist - without a valid 'before'
- * powerpc has a GOT table in .got2 section */
+ * powerpc has a GOT table in .got2 section
+ * and also a .toc section */
if (strcmp(fromsec, ".got2") == 0)
return;
+ if (strcmp(fromsec, ".toc") == 0)
+ return;
if (before && after) {
warn("%s(%s+0x%llx): Section mismatch: reference to %s:%s "
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
git-kbuild.patch
move-three-functions-that-are-only-needed-for.patch
introduce-config_virt_to_bus.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html