vdso-note.S 534 B

12345678910111213141516171819
  1. /* This .note section informs dynamic linker about vDSO */
  2. .section .note.Linux, "a", @note
  3. .balign 4
  4. .long 6 /* namesz */
  5. .long 4 /* descsz */
  6. .long 0 /* type */
  7. .string "Linux" /* name */
  8. .zero 2 /* padding for 4-byte alignment */
  9. .long 267008 /* LINUX_VERSION_CODE */
  10. .balign 4
  11. .long 6 /* namesz */
  12. .long 4 /* descsz */
  13. .long 0x100 /* type */
  14. .string "Linux" /* name */
  15. .zero 2 /* padding for 4-byte alignment */
  16. .long 0 /* CONFIG_BUILD_SALT. 0 for now.
  17. TODO: make it compile-time configurable */