Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
3d92789f
Commit
3d92789f
authored
Dec 19, 2016
by
Paolo Bonzini
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
KVM: vmx: move sync_pir_to_irr from apic_find_highest_irr to callers
Signed-off-by:
Paolo Bonzini
<
pbonzini@redhat.com
>
parent
810e6def
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
arch/x86/kvm/lapic.c
arch/x86/kvm/lapic.c
+4
-3
arch/x86/kvm/x86.c
arch/x86/kvm/x86.c
+3
-1
No files found.
arch/x86/kvm/lapic.c
View file @
3d92789f
...
@@ -410,8 +410,6 @@ static inline int apic_find_highest_irr(struct kvm_lapic *apic)
...
@@ -410,8 +410,6 @@ static inline int apic_find_highest_irr(struct kvm_lapic *apic)
if
(
!
apic
->
irr_pending
)
if
(
!
apic
->
irr_pending
)
return
-
1
;
return
-
1
;
if
(
apic
->
vcpu
->
arch
.
apicv_active
)
kvm_x86_ops
->
sync_pir_to_irr
(
apic
->
vcpu
);
result
=
apic_search_irr
(
apic
);
result
=
apic_search_irr
(
apic
);
ASSERT
(
result
==
-
1
||
result
>=
16
);
ASSERT
(
result
==
-
1
||
result
>=
16
);
...
@@ -581,7 +579,10 @@ static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
...
@@ -581,7 +579,10 @@ static void pv_eoi_clr_pending(struct kvm_vcpu *vcpu)
static
int
apic_has_interrupt_for_ppr
(
struct
kvm_lapic
*
apic
,
u32
ppr
)
static
int
apic_has_interrupt_for_ppr
(
struct
kvm_lapic
*
apic
,
u32
ppr
)
{
{
int
highest_irr
=
apic_find_highest_irr
(
apic
);
int
highest_irr
;
if
(
apic
->
vcpu
->
arch
.
apicv_active
)
kvm_x86_ops
->
sync_pir_to_irr
(
apic
->
vcpu
);
highest_irr
=
apic_find_highest_irr
(
apic
);
if
(
highest_irr
==
-
1
||
(
highest_irr
&
0xF0
)
<=
ppr
)
if
(
highest_irr
==
-
1
||
(
highest_irr
&
0xF0
)
<=
ppr
)
return
-
1
;
return
-
1
;
return
highest_irr
;
return
highest_irr
;
...
...
arch/x86/kvm/x86.c
View file @
3d92789f
...
@@ -6822,9 +6822,11 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
...
@@ -6822,9 +6822,11 @@ static int vcpu_enter_guest(struct kvm_vcpu *vcpu)
* Update architecture specific hints for APIC
* Update architecture specific hints for APIC
* virtual interrupt delivery.
* virtual interrupt delivery.
*/
*/
if
(
vcpu
->
arch
.
apicv_active
)
if
(
vcpu
->
arch
.
apicv_active
)
{
kvm_x86_ops
->
sync_pir_to_irr
(
vcpu
);
kvm_x86_ops
->
hwapic_irr_update
(
vcpu
,
kvm_x86_ops
->
hwapic_irr_update
(
vcpu
,
kvm_lapic_find_highest_irr
(
vcpu
));
kvm_lapic_find_highest_irr
(
vcpu
));
}
}
}
if
(
kvm_check_request
(
KVM_REQ_EVENT
,
vcpu
)
||
req_int_win
)
{
if
(
kvm_check_request
(
KVM_REQ_EVENT
,
vcpu
)
||
req_int_win
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment