mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-25 15:24:17 +08:00
e42ac777d6
demand_paging_test, dirty_log_test, and dirty_log_perf_test have redundant guest mode code. Factor it out. Also, while adding a new include, remove the ones we don't need. Reviewed-by: Ben Gardon <bgardon@google.com> Reviewed-by: Peter Xu <peterx@redhat.com> Signed-off-by: Andrew Jones <drjones@redhat.com> Message-Id: <20201218141734.54359-2-drjones@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
22 lines
532 B
C
22 lines
532 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020, Red Hat, Inc.
|
|
*/
|
|
#include "kvm_util.h"
|
|
|
|
struct guest_mode {
|
|
bool supported;
|
|
bool enabled;
|
|
};
|
|
|
|
extern struct guest_mode guest_modes[NUM_VM_MODES];
|
|
|
|
#define guest_mode_append(mode, supported, enabled) ({ \
|
|
guest_modes[mode] = (struct guest_mode){ supported, enabled }; \
|
|
})
|
|
|
|
void guest_modes_append_default(void);
|
|
void for_each_guest_mode(void (*func)(enum vm_guest_mode, void *), void *arg);
|
|
void guest_modes_help(void);
|
|
void guest_modes_cmdline(const char *arg);
|