mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2026-01-05 15:45:05 +00:00
hv: refine bitops
Rename bitmap_clr to bitmap_clear Rename bitmap_isset to bitmap_test Remove bitmap_setof Signed-off-by: Li, Fei1 <fei1.li@intel.com> Acked-by: Eddie Dong <eddie.dong@intel.com>
This commit is contained in:
@@ -87,7 +87,7 @@ void set_pcpu_used(int pcpu_id)
|
||||
|
||||
void free_pcpu(int pcpu_id)
|
||||
{
|
||||
bitmap_clr(pcpu_id, &pcpu_used_bitmap);
|
||||
bitmap_clear(pcpu_id, &pcpu_used_bitmap);
|
||||
}
|
||||
|
||||
void add_vcpu_to_runqueue(struct vcpu *vcpu)
|
||||
|
||||
Reference in New Issue
Block a user