cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

elfnote.h (527B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * PowerPC ELF notes.
      4 *
      5 * Copyright 2019, IBM Corporation
      6 */
      7
      8#ifndef __ASM_POWERPC_ELFNOTE_H__
      9#define __ASM_POWERPC_ELFNOTE_H__
     10
     11/*
     12 * These note types should live in a SHT_NOTE segment and have
     13 * "PowerPC" in the name field.
     14 */
     15
     16/*
     17 * The capabilities supported/required by this kernel (bitmap).
     18 *
     19 * This type uses a bitmap as "desc" field. Each bit is described
     20 * in arch/powerpc/kernel/note.S
     21 */
     22#define PPC_ELFNOTE_CAPABILITIES 1
     23
     24#endif /* __ASM_POWERPC_ELFNOTE_H__ */