diff options
author | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-06-10 14:03:21 +0300 |
---|---|---|
committer | Russell King (Oracle) <rmk+kernel@armlinux.org.uk> | 2024-06-10 14:03:21 +0300 |
commit | 594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2 (patch) | |
tree | 070bd60a8fda15e5f47339d3f6888a0fe2ca6fe9 /scripts/gcc-plugins | |
parent | 616501eccb58615f8f352a29239ea6c6fc5e6546 (diff) | |
parent | e3cf20e5c68df604315ab30bdbe15dc8a5da556b (diff) | |
download | linux-594ce0b8a998aa4d05827cd7c0d0dcec9a1e3ae2.tar.xz |
Merge topic branches 'clkdev' and 'fixes' into for-linus
Diffstat (limited to 'scripts/gcc-plugins')
-rw-r--r-- | scripts/gcc-plugins/stackleak_plugin.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/gcc-plugins/stackleak_plugin.c b/scripts/gcc-plugins/stackleak_plugin.c index c5c2ce113c92..d20c47d21ad8 100644 --- a/scripts/gcc-plugins/stackleak_plugin.c +++ b/scripts/gcc-plugins/stackleak_plugin.c @@ -467,6 +467,8 @@ static bool stackleak_gate(void) return false; if (STRING_EQUAL(section, ".entry.text")) return false; + if (STRING_EQUAL(section, ".head.text")) + return false; } return track_frame_size >= 0; |