diff options
author | Laura Abbott <labbott@redhat.com> | 2018-07-05 20:49:40 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-07-17 12:18:05 -0400 |
commit | efa75c4923be7fedc00b040116657101f20b3678 (patch) | |
tree | 844e867f8fc90ad9cf842a4757da475e6b4d47b2 | |
parent | b399baaaf7522750eab0c2a6b9f0dc511d878dd6 (diff) |
arm64: Add build salt to the vDSO
The vDSO needs to have a unique build id in a similar manner
to the kernel and modules. Use the build salt macro.
Acked-by: Will Deacon <will.deacon@arm.com>
Signed-off-by: Laura Abbott <labbott@redhat.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
-rw-r--r-- | arch/arm64/kernel/vdso/note.S | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/arm64/kernel/vdso/note.S b/arch/arm64/kernel/vdso/note.S index b82c85e5d972..e20483b104d9 100644 --- a/arch/arm64/kernel/vdso/note.S +++ b/arch/arm64/kernel/vdso/note.S | |||
@@ -22,7 +22,10 @@ | |||
22 | #include <linux/uts.h> | 22 | #include <linux/uts.h> |
23 | #include <linux/version.h> | 23 | #include <linux/version.h> |
24 | #include <linux/elfnote.h> | 24 | #include <linux/elfnote.h> |
25 | #include <linux/build-salt.h> | ||
25 | 26 | ||
26 | ELFNOTE_START(Linux, 0, "a") | 27 | ELFNOTE_START(Linux, 0, "a") |
27 | .long LINUX_VERSION_CODE | 28 | .long LINUX_VERSION_CODE |
28 | ELFNOTE_END | 29 | ELFNOTE_END |
30 | |||
31 | BUILD_SALT | ||