mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 00:34:52 +00:00
x86/vmware: Use bool type for vmw_sched_clock
To be aligned with other bool variables. Signed-off-by: Alexey Makhalov <amakhalov@vmware.com> Signed-off-by: Borislav Petkov <bp@suse.de> Reviewed-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200323195707.31242-6-amakhalov@vmware.com
This commit is contained in:
parent
e73a8f38f8
commit
8fefe9dacd
1 changed files with 2 additions and 2 deletions
|
@ -122,14 +122,14 @@ static unsigned long vmware_get_tsc_khz(void)
|
|||
|
||||
#ifdef CONFIG_PARAVIRT
|
||||
static struct cyc2ns_data vmware_cyc2ns __ro_after_init;
|
||||
static int vmw_sched_clock __initdata = 1;
|
||||
static bool vmw_sched_clock __initdata = true;
|
||||
static DEFINE_PER_CPU_DECRYPTED(struct vmware_steal_time, vmw_steal_time) __aligned(64);
|
||||
static bool has_steal_clock;
|
||||
static bool steal_acc __initdata = true; /* steal time accounting */
|
||||
|
||||
static __init int setup_vmw_sched_clock(char *s)
|
||||
{
|
||||
vmw_sched_clock = 0;
|
||||
vmw_sched_clock = false;
|
||||
return 0;
|
||||
}
|
||||
early_param("no-vmw-sched-clock", setup_vmw_sched_clock);
|
||||
|
|
Loading…
Add table
Reference in a new issue