tools/headers: Sync objtool UAPI header

objtool grew this new warning:

Warning: synced file at 'tools/objtool/arch/x86/include/asm/inat.h' differs from latest kernel version at 'arch/x86/include/asm/inat.h'

which upstream header grew new INAT_SEG_* definitions.

Sync up the tooling version of the header.

Reported-by: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Josh Poimboeuf <jpoimboe@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>

+10
+10
tools/objtool/arch/x86/include/asm/inat.h
··· 97 #define INAT_MAKE_GROUP(grp) ((grp << INAT_GRP_OFFS) | INAT_MODRM) 98 #define INAT_MAKE_IMM(imm) (imm << INAT_IMM_OFFS) 99 100 /* Attribute search APIs */ 101 extern insn_attr_t inat_get_opcode_attribute(insn_byte_t opcode); 102 extern int inat_get_last_prefix_id(insn_byte_t last_pfx);
··· 97 #define INAT_MAKE_GROUP(grp) ((grp << INAT_GRP_OFFS) | INAT_MODRM) 98 #define INAT_MAKE_IMM(imm) (imm << INAT_IMM_OFFS) 99 100 + /* Identifiers for segment registers */ 101 + #define INAT_SEG_REG_IGNORE 0 102 + #define INAT_SEG_REG_DEFAULT 1 103 + #define INAT_SEG_REG_CS 2 104 + #define INAT_SEG_REG_SS 3 105 + #define INAT_SEG_REG_DS 4 106 + #define INAT_SEG_REG_ES 5 107 + #define INAT_SEG_REG_FS 6 108 + #define INAT_SEG_REG_GS 7 109 + 110 /* Attribute search APIs */ 111 extern insn_attr_t inat_get_opcode_attribute(insn_byte_t opcode); 112 extern int inat_get_last_prefix_id(insn_byte_t last_pfx);