aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/kvm_host.h2
-rw-r--r--include/linux/sched.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/kvm_host.h b/include/linux/kvm_host.h
index 7d21cf9f4380..3c4bcf146159 100644
--- a/include/linux/kvm_host.h
+++ b/include/linux/kvm_host.h
@@ -584,7 +584,7 @@ void mark_page_dirty(struct kvm *kvm, gfn_t gfn);
584 584
585void kvm_vcpu_block(struct kvm_vcpu *vcpu); 585void kvm_vcpu_block(struct kvm_vcpu *vcpu);
586void kvm_vcpu_kick(struct kvm_vcpu *vcpu); 586void kvm_vcpu_kick(struct kvm_vcpu *vcpu);
587bool kvm_vcpu_yield_to(struct kvm_vcpu *target); 587int kvm_vcpu_yield_to(struct kvm_vcpu *target);
588void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu); 588void kvm_vcpu_on_spin(struct kvm_vcpu *vcpu);
589void kvm_load_guest_fpu(struct kvm_vcpu *vcpu); 589void kvm_load_guest_fpu(struct kvm_vcpu *vcpu);
590void kvm_put_guest_fpu(struct kvm_vcpu *vcpu); 590void kvm_put_guest_fpu(struct kvm_vcpu *vcpu);
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 0f91d00efd87..6790c3b42072 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -2180,7 +2180,7 @@ static inline void sched_autogroup_fork(struct signal_struct *sig) { }
2180static inline void sched_autogroup_exit(struct signal_struct *sig) { } 2180static inline void sched_autogroup_exit(struct signal_struct *sig) { }
2181#endif 2181#endif
2182 2182
2183extern bool yield_to(struct task_struct *p, bool preempt); 2183extern int yield_to(struct task_struct *p, bool preempt);
2184extern void set_user_nice(struct task_struct *p, long nice); 2184extern void set_user_nice(struct task_struct *p, long nice);
2185extern int task_prio(const struct task_struct *p); 2185extern int task_prio(const struct task_struct *p);
2186/** 2186/**