bfd * elf.c (elfcore_make_memtag_note_section): New function.
(elfcore_grok_note): Handle NT_MEMTAG note types.
binutils* readelf.c (get_note_type): Handle NT_MEMTAG note types.
include * elf/common.h (NT_MEMTAG): New constant.
(NT_MEMTAG_TYPE_AARCH_MTE): New constant.
+2021-09-07 Luis Machado <luis.machado@linaro.org>
+
+ Revert: [AArch64] MTE corefile support
+
+ 2021-05-21 Luis Machado <luis.machado@linaro.org>
+
+ * elf.c (elfcore_make_memtag_note_section): New function.
+ (elfcore_grok_note): Handle NT_MEMTAG note types.
+
2021-09-07 Nick Clifton <nickc@redhat.com>
PR 28305
return true;
}
-static bool
-elfcore_make_memtag_note_section (bfd *abfd, Elf_Internal_Note *note,
- size_t offs)
-{
- asection *sect = bfd_make_section_anyway_with_flags (abfd, ".memtag",
- SEC_HAS_CONTENTS);
-
- if (sect == NULL)
- return false;
-
- sect->size = note->descsz - offs;
- sect->filepos = note->descpos + offs;
- sect->alignment_power = 1 + bfd_get_arch_size (abfd) / 32;
-
- return true;
-}
-
/* prstatus_t exists on:
solaris 2.5+
linux 2.[01] + glibc
return elfcore_make_note_pseudosection (abfd, ".note.linuxcore.siginfo",
note);
- case NT_MEMTAG:
- return elfcore_make_memtag_note_section (abfd, note, 0);
}
}
+2021-09-07 Luis Machado <luis.machado@linaro.org>
+
+ Revert: [AArch64] MTE corefile support
+
+ 2021-05-21 Luis Machado <luis.machado@linaro.org>
+
+ * readelf.c (get_note_type): Handle NT_MEMTAG note types.
+
2021-08-11 Nick Clifton <nickc@redhat.com>
* po/pt.po: Updated Portuguese translation.
return _("NT_SIGINFO (siginfo_t data)");
case NT_FILE:
return _("NT_FILE (mapped files)");
- case NT_MEMTAG:
- return _("NT_MEMTAG (memory tags)");
default:
break;
}
+2021-09-07 Luis Machado <luis.machado@linaro.org>
+
+ Revert: [AArch64] MTE corefile support
+
+ 2021-05-21 Luis Machado <luis.machado@linaro.org>
+
+ * elf/common.h (NT_MEMTAG): New constant.
+ (NT_MEMTAG_TYPE_AARCH_MTE): New constant.
+
2021-07-03 Nick Clifton <nickc@redhat.com>
* 2.37 release branch created.
/* The range 0xff000000 to 0xffffffff is set aside for notes that don't
originate from any particular operating system. */
#define NT_GDB_TDESC 0xff000000 /* Contains copy of GDB's target description XML. */
-#define NT_MEMTAG 0xff000001 /* Contains a copy of the memory tags. */
-
-/* NT_MEMTAG record types. */
-
-/* ARM-specific NT_MEMTAG types. */
-#define NT_MEMTAG_TYPE_AARCH_MTE 0x400 /* MTE memory tags for AArch64. */
/* Note segments for core files on dir-style procfs systems. */