mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
KVM: x86: Drop some unused functions from lapic
Both have no users anymore. Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com> Signed-off-by: Gleb Natapov <gleb@redhat.com>
This commit is contained in:
parent
11f5cc0515
commit
9576c4cd6b
@ -79,16 +79,6 @@ static inline void apic_set_reg(struct kvm_lapic *apic, int reg_off, u32 val)
|
||||
*((u32 *) (apic->regs + reg_off)) = val;
|
||||
}
|
||||
|
||||
static inline int apic_test_and_set_vector(int vec, void *bitmap)
|
||||
{
|
||||
return test_and_set_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
|
||||
}
|
||||
|
||||
static inline int apic_test_and_clear_vector(int vec, void *bitmap)
|
||||
{
|
||||
return test_and_clear_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
|
||||
}
|
||||
|
||||
static inline int apic_test_vector(int vec, void *bitmap)
|
||||
{
|
||||
return test_bit(VEC_POS(vec), (bitmap) + REG_POS(vec));
|
||||
|
Loading…
Reference in New Issue
Block a user