Home
last modified time | relevance | path

Searched refs:time_limit (Results 1 – 6 of 6) sorted by relevance

/arch/powerpc/platforms/pseries/
Dlpar.c82 void alloc_dtl_buffers(unsigned long *time_limit) in alloc_dtl_buffers() argument
107 if (time_limit && time_after(jiffies, *time_limit)) { in alloc_dtl_buffers()
109 *time_limit = jiffies + HZ; in alloc_dtl_buffers()
180 static void free_dtl_buffers(unsigned long *time_limit) in free_dtl_buffers() argument
196 if (time_limit && time_after(jiffies, *time_limit)) { in free_dtl_buffers()
198 *time_limit = jiffies + HZ; in free_dtl_buffers()
459 static int dtl_worker_enable(unsigned long *time_limit) in dtl_worker_enable() argument
471 alloc_dtl_buffers(time_limit); in dtl_worker_enable()
477 free_dtl_buffers(time_limit); in dtl_worker_enable()
489 static void dtl_worker_disable(unsigned long *time_limit) in dtl_worker_disable() argument
[all …]
/arch/powerpc/include/asm/
Ddtl.h49 extern void alloc_dtl_buffers(unsigned long *time_limit);
Dkvm_book3s.h302 u64 time_limit, unsigned long lpcr);
/arch/powerpc/mm/book3s64/
Dhash_utils.c339 unsigned long vaddr, time_limit; in htab_remove_mapping() local
352 time_limit = jiffies + HZ; in htab_remove_mapping()
361 if (time_after(jiffies, time_limit)) { in htab_remove_mapping()
363 time_limit = jiffies + HZ; in htab_remove_mapping()
/arch/powerpc/kernel/
Dfadump.c1224 unsigned long time_limit = jiffies + HZ; in fadump_free_reserved_memory() local
1232 if (time_after(jiffies, time_limit)) { in fadump_free_reserved_memory()
1234 time_limit = jiffies + HZ; in fadump_free_reserved_memory()
/arch/powerpc/kvm/
Dbook3s_hv.c3449 static int kvmhv_load_hv_regs_and_go(struct kvm_vcpu *vcpu, u64 time_limit, in kvmhv_load_hv_regs_and_go() argument
3470 hdec = time_limit - mftb(); in kvmhv_load_hv_regs_and_go()
3596 static int kvmhv_p9_guest_entry(struct kvm_vcpu *vcpu, u64 time_limit, in kvmhv_p9_guest_entry() argument
3614 if (local_paca->kvm_hstate.dec_expires < time_limit) in kvmhv_p9_guest_entry()
3615 time_limit = local_paca->kvm_hstate.dec_expires; in kvmhv_p9_guest_entry()
3702 hvregs.hdec_expiry = time_limit; in kvmhv_p9_guest_entry()
3720 trap = kvmhv_load_hv_regs_and_go(vcpu, time_limit, lpcr); in kvmhv_p9_guest_entry()
4138 int kvmhv_run_single_vcpu(struct kvm_vcpu *vcpu, u64 time_limit, in kvmhv_run_single_vcpu() argument
4234 trap = kvmhv_p9_guest_entry(vcpu, time_limit, lpcr); in kvmhv_run_single_vcpu()