aboutsummaryrefslogtreecommitdiff
path: root/binutils/readelf.c
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2020-09-11 05:51:53 -0700
committerH.J. Lu <hjl.tools@gmail.com>2020-09-11 05:52:06 -0700
commit8d58ed37f168b3ae927cbb2967089c85d10ef6f2 (patch)
treef0bd49822e9987d9e5daf99799c0350fb3e4a8bf /binutils/readelf.c
parentce139cd560dcb85b09d4d257ac67ebffdf215859 (diff)
downloadgdb-8d58ed37f168b3ae927cbb2967089c85d10ef6f2.zip
gdb-8d58ed37f168b3ae927cbb2967089c85d10ef6f2.tar.gz
gdb-8d58ed37f168b3ae927cbb2967089c85d10ef6f2.tar.bz2
x86: Add NT_X86_CET note
Define NT_X86_CET which is the proposed note for x86 CET state to support Intel CET in Linux kernel. Double check it after Intel CET patches have been merged into Linux kernel. binutils/ * readelf.c (get_note_type): Support NT_X86_CET. include/ * elf/common.h (NT_X86_CET): New.
Diffstat (limited to 'binutils/readelf.c')
-rw-r--r--binutils/readelf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/binutils/readelf.c b/binutils/readelf.c
index cb4208f..95720ea 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -17953,6 +17953,8 @@ get_note_type (Filedata * filedata, unsigned e_type)
return _("NT_386_IOPERM (x86 I/O permissions)");
case NT_X86_XSTATE:
return _("NT_X86_XSTATE (x86 XSAVE extended state)");
+ case NT_X86_CET:
+ return _("NT_X86_CET (x86 CET state)");
case NT_S390_HIGH_GPRS:
return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
case NT_S390_TIMER: