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

guest_modes.h (532B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Copyright (C) 2020, Red Hat, Inc.
      4 */
      5#include "kvm_util.h"
      6
      7struct guest_mode {
      8	bool supported;
      9	bool enabled;
     10};
     11
     12extern struct guest_mode guest_modes[NUM_VM_MODES];
     13
     14#define guest_mode_append(mode, supported, enabled) ({ \
     15	guest_modes[mode] = (struct guest_mode){ supported, enabled }; \
     16})
     17
     18void guest_modes_append_default(void);
     19void for_each_guest_mode(void (*func)(enum vm_guest_mode, void *), void *arg);
     20void guest_modes_help(void);
     21void guest_modes_cmdline(const char *arg);