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

chsc_sch.h (218B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _CHSC_SCH_H
      3#define _CHSC_SCH_H
      4
      5struct chsc_request {
      6	struct completion completion;
      7	struct irb irb;
      8};
      9
     10struct chsc_private {
     11	struct chsc_request *request;
     12};
     13
     14#endif