From patchwork Wed Oct 24 17:20:43 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joseph Myers X-Patchwork-Id: 29873 Received: (qmail 31837 invoked by alias); 24 Oct 2018 17:20:50 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 31810 invoked by uid 89); 24 Oct 2018 17:20:49 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-24.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:771 X-HELO: relay1.mentorg.com Date: Wed, 24 Oct 2018 17:20:43 +0000 From: Joseph Myers To: Subject: Add new ELF note types from Linux 4.19 to elf.h Message-ID: User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 This patch adds NT_MIPS_DSP and NT_MIPS_FP_MODE from Linux 4.19 to elf.h. Tested for x86_64. 2018-10-24 Joseph Myers * elf/elf.h (NT_MIPS_DSP): New macro. (NT_MIPS_FP_MODE): Likewise. diff --git a/elf/elf.h b/elf/elf.h index 226e53842e..69ffa2ec0e 100644 --- a/elf/elf.h +++ b/elf/elf.h @@ -809,6 +809,8 @@ typedef struct #define NT_ARM_SVE 0x405 /* ARM Scalable Vector Extension registers */ #define NT_VMCOREDD 0x700 /* Vmcore Device Dump Note. */ +#define NT_MIPS_DSP 0x800 /* MIPS DSP ASE registers. */ +#define NT_MIPS_FP_MODE 0x801 /* MIPS floating-point mode. */ /* Legal values for the note segment descriptor types for object files. */