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

trace.h (709B)


      1/* SPDX-License-Identifier: GPL-2.0 or BSD-3-Clause */
      2/*
      3 * Copyright(c) 2015 - 2018 Intel Corporation.
      4 */
      5
      6#define packettype_name(etype) { RHF_RCV_TYPE_##etype, #etype }
      7#define show_packettype(etype)                  \
      8__print_symbolic(etype,                         \
      9	packettype_name(EXPECTED),              \
     10	packettype_name(EAGER),                 \
     11	packettype_name(IB),                    \
     12	packettype_name(ERROR),                 \
     13	packettype_name(BYPASS))
     14
     15#include "trace_dbg.h"
     16#include "trace_misc.h"
     17#include "trace_ctxts.h"
     18#include "trace_ibhdrs.h"
     19#include "trace_rc.h"
     20#include "trace_rx.h"
     21#include "trace_tx.h"
     22#include "trace_mmu.h"
     23#include "trace_iowait.h"
     24#include "trace_tid.h"