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

misc.c (171B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <config.h>
      3
      4#include "misc.h"
      5#include "bug_on.h"
      6
      7struct rcu_head;
      8
      9void wakeme_after_rcu(struct rcu_head *head)
     10{
     11	BUG();
     12}