Commit 1d73135e authored by Linus Torvalds's avatar Linus Torvalds

Merge master.kernel.org:/pub/scm/linux/kernel/git/sam/kbuild

* master.kernel.org:/pub/scm/linux/kernel/git/sam/kbuild:
  kbuild: fix false section mismatch warnings
parents 1b627d17 5ecdd0f6
...@@ -492,9 +492,9 @@ static int strrcmp(const char *s, const char *sub) ...@@ -492,9 +492,9 @@ static int strrcmp(const char *s, const char *sub)
* These functions may often be marked __init and we do not want to * These functions may often be marked __init and we do not want to
* warn here. * warn here.
* the pattern is identified by: * the pattern is identified by:
* tosec = .init.text | .exit.text * tosec = .init.text | .exit.text | .init.data
* fromsec = .data * fromsec = .data
* atsym = *_driver, *_ops, *_probe, *probe_one * atsym = *_driver, *_template, *_sht, *_ops, *_probe, *probe_one
**/ **/
static int secref_whitelist(const char *tosec, const char *fromsec, static int secref_whitelist(const char *tosec, const char *fromsec,
const char *atsym) const char *atsym)
...@@ -503,6 +503,8 @@ static int secref_whitelist(const char *tosec, const char *fromsec, ...@@ -503,6 +503,8 @@ static int secref_whitelist(const char *tosec, const char *fromsec,
const char **s; const char **s;
const char *pat2sym[] = { const char *pat2sym[] = {
"_driver", "_driver",
"_template", /* scsi uses *_template a lot */
"_sht", /* scsi also used *_sht to some extent */
"_ops", "_ops",
"_probe", "_probe",
"_probe_one", "_probe_one",
...@@ -522,7 +524,8 @@ static int secref_whitelist(const char *tosec, const char *fromsec, ...@@ -522,7 +524,8 @@ static int secref_whitelist(const char *tosec, const char *fromsec,
/* Check for pattern 2 */ /* Check for pattern 2 */
if ((strcmp(tosec, ".init.text") != 0) && if ((strcmp(tosec, ".init.text") != 0) &&
(strcmp(tosec, ".exit.text") != 0)) (strcmp(tosec, ".exit.text") != 0) &&
(strcmp(tosec, ".init.data") != 0))
f2 = 0; f2 = 0;
if (strcmp(fromsec, ".data") != 0) if (strcmp(fromsec, ".data") != 0)
f2 = 0; f2 = 0;
...@@ -820,6 +823,7 @@ static int exit_section(const char *name) ...@@ -820,6 +823,7 @@ static int exit_section(const char *name)
* For our future {in}sanity, add a comment that this is the ppc .opd * For our future {in}sanity, add a comment that this is the ppc .opd
* section, not the ia64 .opd section. * section, not the ia64 .opd section.
* ia64 .opd should not point to discarded sections. * ia64 .opd should not point to discarded sections.
* [.rodata] like for .init.text we ignore .rodata references -same reason
**/ **/
static int exit_section_ref_ok(const char *name) static int exit_section_ref_ok(const char *name)
{ {
...@@ -829,6 +833,7 @@ static int exit_section_ref_ok(const char *name) ...@@ -829,6 +833,7 @@ static int exit_section_ref_ok(const char *name)
".exit.text", ".exit.text",
".exit.data", ".exit.data",
".init.text", ".init.text",
".rodata",
".opd", /* See comment [OPD] */ ".opd", /* See comment [OPD] */
".toc1", /* used by ppc64 */ ".toc1", /* used by ppc64 */
".altinstructions", ".altinstructions",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment