KVM: PIT: control word is write-only

PIT control word (address 0x43) is write-only, reads are undefined.

Cc: stable@kernel.org
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>

authored by Marcelo Tosatti and committed by Avi Kivity ee73f656 923de3cf

+3
+3
arch/x86/kvm/i8254.c
··· 467 467 return -EOPNOTSUPP; 468 468 469 469 addr &= KVM_PIT_CHANNEL_MASK; 470 + if (addr == 3) 471 + return 0; 472 + 470 473 s = &pit_state->channels[addr]; 471 474 472 475 mutex_lock(&pit_state->lock);