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

bugs.c (288B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <linux/init.h>
      3#include <asm/bugs.h>
      4#include <asm/proc-fns.h>
      5
      6void check_other_bugs(void)
      7{
      8#ifdef MULTI_CPU
      9	if (cpu_check_bugs)
     10		cpu_check_bugs();
     11#endif
     12}
     13
     14void __init check_bugs(void)
     15{
     16	check_writebuffer_bugs();
     17	check_other_bugs();
     18}