diff options
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/mod/modpost.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c index b81157cf4527..628f393ecaa6 100644 --- a/scripts/mod/modpost.c +++ b/scripts/mod/modpost.c | |||
| @@ -635,6 +635,13 @@ static int strrcmp(const char *s, const char *sub) | |||
| 635 | * tosec = .init.data | 635 | * tosec = .init.data |
| 636 | * fromsec = .text* | 636 | * fromsec = .text* |
| 637 | * refsymname = logo_ | 637 | * refsymname = logo_ |
| 638 | * | ||
| 639 | * Pattern 8: | ||
| 640 | * Symbols contained in .paravirtprobe may safely reference .init.text. | ||
| 641 | * The pattern is: | ||
| 642 | * tosec = .init.text | ||
| 643 | * fromsec = .paravirtprobe | ||
| 644 | * | ||
| 638 | **/ | 645 | **/ |
| 639 | static int secref_whitelist(const char *modname, const char *tosec, | 646 | static int secref_whitelist(const char *modname, const char *tosec, |
| 640 | const char *fromsec, const char *atsym, | 647 | const char *fromsec, const char *atsym, |
| @@ -712,6 +719,12 @@ static int secref_whitelist(const char *modname, const char *tosec, | |||
| 712 | (strncmp(fromsec, ".text", strlen(".text")) == 0) && | 719 | (strncmp(fromsec, ".text", strlen(".text")) == 0) && |
| 713 | (strncmp(refsymname, "logo_", strlen("logo_")) == 0)) | 720 | (strncmp(refsymname, "logo_", strlen("logo_")) == 0)) |
| 714 | return 1; | 721 | return 1; |
| 722 | |||
| 723 | /* Check for pattern 8 */ | ||
| 724 | if ((strcmp(tosec, ".init.text") == 0) && | ||
| 725 | (strcmp(fromsec, ".paravirtprobe") == 0)) | ||
| 726 | return 1; | ||
| 727 | |||
| 715 | return 0; | 728 | return 0; |
| 716 | } | 729 | } |
| 717 | 730 | ||
