Searched refs:orig_sp (Results 1 – 10 of 10) sorted by relevance
/linux-6.3-rc2/arch/sparc/kernel/ |
A D | kstack.h | 67 void *orig_sp, *sp = hardirq_stack[smp_processor_id()]; in set_hardirq_stack() local 69 __asm__ __volatile__("mov %%sp, %0" : "=r" (orig_sp)); in set_hardirq_stack() 70 if (orig_sp < sp || in set_hardirq_stack() 71 orig_sp > (sp + THREAD_SIZE)) { in set_hardirq_stack() 76 return orig_sp; in set_hardirq_stack() 79 static inline __attribute__((always_inline)) void restore_hardirq_stack(void *orig_sp) in restore_hardirq_stack() argument 81 __asm__ __volatile__("mov %0, %%sp" : : "r" (orig_sp)); in restore_hardirq_stack()
|
A D | nmi.c | 85 void *orig_sp; in perfctr_irq() local 93 orig_sp = set_hardirq_stack(); in perfctr_irq() 120 restore_hardirq_stack(orig_sp); in perfctr_irq()
|
A D | irq_64.c | 819 void *orig_sp; in handler_irq() local 837 orig_sp = set_hardirq_stack(); in handler_irq() 852 restore_hardirq_stack(orig_sp); in handler_irq() 861 void *orig_sp, *sp = softirq_stack[smp_processor_id()]; in do_softirq_own_stack() local 867 : "=&r" (orig_sp) in do_softirq_own_stack() 871 : : "r" (orig_sp)); in do_softirq_own_stack()
|
A D | process_64.c | 530 unsigned long sp, orig_sp; in fault_in_user_windows() local 532 orig_sp = sp = t->rwbuf_stkptrs[window]; in fault_in_user_windows() 548 sp, orig_sp, in fault_in_user_windows()
|
/linux-6.3-rc2/arch/x86/kernel/ |
A D | unwind_frame.c | 48 for (sp = PTR_ALIGN(state->orig_sp, sizeof(long)); sp; in unwind_dump() 234 if (state->orig_sp && state->stack_info.type == prev_type && in update_stack_state() 257 if (!state->orig_sp) in update_stack_state() 258 state->orig_sp = frame; in update_stack_state()
|
/linux-6.3-rc2/drivers/scsi/qla2xxx/ |
A D | qla_nvme.c | 848 void qla_nvme_abort_set_option(struct abort_entry_24xx *abt, srb_t *orig_sp) in qla_nvme_abort_set_option() argument 852 if (!(ql2xabts_wait_nvme && QLA_ABTS_WAIT_ENABLED(orig_sp))) in qla_nvme_abort_set_option() 855 ha = orig_sp->fcport->vha->hw; in qla_nvme_abort_set_option() 867 void qla_nvme_abort_process_comp_status(struct abort_entry_24xx *abt, srb_t *orig_sp) in qla_nvme_abort_process_comp_status() argument 872 if (!(ql2xabts_wait_nvme && QLA_ABTS_WAIT_ENABLED(orig_sp))) in qla_nvme_abort_process_comp_status() 875 vha = orig_sp->fcport->vha; in qla_nvme_abort_process_comp_status() 923 inline void qla_wait_nvme_release_cmd_kref(srb_t *orig_sp) in qla_wait_nvme_release_cmd_kref() argument 925 if (!(ql2xabts_wait_nvme && QLA_ABTS_WAIT_ENABLED(orig_sp))) in qla_wait_nvme_release_cmd_kref() 927 kref_put(&orig_sp->cmd_kref, orig_sp->put_fn); in qla_wait_nvme_release_cmd_kref()
|
A D | qla_isr.c | 3680 srb_t *orig_sp = NULL; in qla24xx_abort_iocb_entry() local 3689 orig_sp = sp->cmd_sp; in qla24xx_abort_iocb_entry() 3691 if (orig_sp) in qla24xx_abort_iocb_entry() 3692 qla_nvme_abort_process_comp_status(pkt, orig_sp); in qla24xx_abort_iocb_entry()
|
A D | qla_iocb.c | 3667 srb_t *orig_sp = sp->cmd_sp; in qla24xx_abort_iocb() local 3686 if (orig_sp) in qla24xx_abort_iocb() 3687 qla_nvme_abort_set_option(abt_iocb, orig_sp); in qla24xx_abort_iocb()
|
A D | qla_init.c | 161 srb_t *orig_sp = sp->cmd_sp; in qla24xx_abort_sp_done() local 163 if (orig_sp) in qla24xx_abort_sp_done() 164 qla_wait_nvme_release_cmd_kref(orig_sp); in qla24xx_abort_sp_done()
|
/linux-6.3-rc2/arch/x86/include/asm/ |
A D | unwind.h | 29 unsigned long *bp, *orig_sp, ip; member
|
Completed in 57 milliseconds