1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright 2012 Michael Ellerman, IBM Corporation.
4 * Copyright 2012 Benjamin Herrenschmidt, IBM Corporation
7 #include <linux/kernel.h>
8 #include <linux/kvm_host.h>
10 #include <linux/kernel_stat.h>
11 #include <linux/pgtable.h>
13 #include <asm/kvm_book3s.h>
14 #include <asm/kvm_ppc.h>
15 #include <asm/hvcall.h>
17 #include <asm/synch.h>
18 #include <asm/cputhreads.h>
19 #include <asm/ppc-opcode.h>
20 #include <asm/pnv-pci.h>
24 #include "book3s_xics.h"
28 int h_ipi_redirect = 1;
29 EXPORT_SYMBOL(h_ipi_redirect);
30 int kvm_irq_bypass = 1;
31 EXPORT_SYMBOL(kvm_irq_bypass);
33 static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
34 u32 new_irq, bool check_resend);
35 static int xics_opal_set_server(unsigned int hw_irq, int server_cpu);
37 /* -- ICS routines -- */
38 static void ics_rm_check_resend(struct kvmppc_xics *xics,
39 struct kvmppc_ics *ics, struct kvmppc_icp *icp)
43 for (i = 0; i < KVMPPC_XICS_IRQ_PER_ICS; i++) {
44 struct ics_irq_state *state = &ics->irq_state[i];
46 icp_rm_deliver_irq(xics, icp, state->number, true);
51 /* -- ICP routines -- */
54 static inline void icp_send_hcore_msg(int hcore, struct kvm_vcpu *vcpu)
58 hcpu = hcore << threads_shift;
59 kvmppc_host_rm_ops_hv->rm_core[hcore].rm_data = vcpu;
60 smp_muxed_ipi_set_message(hcpu, PPC_MSG_RM_HOST_ACTION);
61 kvmppc_set_host_ipi(hcpu);
63 kvmhv_rm_send_ipi(hcpu);
66 static inline void icp_send_hcore_msg(int hcore, struct kvm_vcpu *vcpu) { }
70 * We start the search from our current CPU Id in the core map
71 * and go in a circle until we get back to our ID looking for a
72 * core that is running in host context and that hasn't already
73 * been targeted for another rm_host_ops.
75 * In the future, could consider using a fairer algorithm (one
76 * that distributes the IPIs better)
78 * Returns -1, if no CPU could be found in the host
79 * Else, returns a CPU Id which has been reserved for use
81 static inline int grab_next_hostcore(int start,
82 struct kvmppc_host_rm_core *rm_core, int max, int action)
86 union kvmppc_rm_state old, new;
88 for (core = start + 1; core < max; core++) {
89 old = new = READ_ONCE(rm_core[core].rm_state);
91 if (!old.in_host || old.rm_action)
94 /* Try to grab this host core if not taken already. */
95 new.rm_action = action;
97 success = cmpxchg64(&rm_core[core].rm_state.raw,
98 old.raw, new.raw) == old.raw;
101 * Make sure that the store to the rm_action is made
102 * visible before we return to caller (and the
103 * subsequent store to rm_data) to synchronize with
114 static inline int find_available_hostcore(int action)
117 int my_core = smp_processor_id() >> threads_shift;
118 struct kvmppc_host_rm_core *rm_core = kvmppc_host_rm_ops_hv->rm_core;
120 core = grab_next_hostcore(my_core, rm_core, cpu_nr_cores(), action);
122 core = grab_next_hostcore(core, rm_core, my_core, action);
127 static void icp_rm_set_vcpu_irq(struct kvm_vcpu *vcpu,
128 struct kvm_vcpu *this_vcpu)
130 struct kvmppc_icp *this_icp = this_vcpu->arch.icp;
134 /* Mark the target VCPU as having an interrupt pending */
135 vcpu->stat.queue_intr++;
136 set_bit(BOOK3S_IRQPRIO_EXTERNAL, &vcpu->arch.pending_exceptions);
138 /* Kick self ? Just set MER and return */
139 if (vcpu == this_vcpu) {
140 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) | LPCR_MER);
145 * Check if the core is loaded,
146 * if not, find an available host core to post to wake the VCPU,
147 * if we can't find one, set up state to eventually return too hard.
149 cpu = vcpu->arch.thread_cpu;
150 if (cpu < 0 || cpu >= nr_cpu_ids) {
152 if (kvmppc_host_rm_ops_hv && h_ipi_redirect)
153 hcore = find_available_hostcore(XICS_RM_KICK_VCPU);
155 icp_send_hcore_msg(hcore, vcpu);
157 this_icp->rm_action |= XICS_RM_KICK_VCPU;
158 this_icp->rm_kick_target = vcpu;
164 kvmhv_rm_send_ipi(cpu);
167 static void icp_rm_clr_vcpu_irq(struct kvm_vcpu *vcpu)
169 /* Note: Only called on self ! */
170 clear_bit(BOOK3S_IRQPRIO_EXTERNAL, &vcpu->arch.pending_exceptions);
171 mtspr(SPRN_LPCR, mfspr(SPRN_LPCR) & ~LPCR_MER);
174 static inline bool icp_rm_try_update(struct kvmppc_icp *icp,
175 union kvmppc_icp_state old,
176 union kvmppc_icp_state new)
178 struct kvm_vcpu *this_vcpu = local_paca->kvm_hstate.kvm_vcpu;
181 /* Calculate new output value */
182 new.out_ee = (new.xisr && (new.pending_pri < new.cppr));
184 /* Attempt atomic update */
185 success = cmpxchg64(&icp->state.raw, old.raw, new.raw) == old.raw;
190 * Check for output state update
192 * Note that this is racy since another processor could be updating
193 * the state already. This is why we never clear the interrupt output
194 * here, we only ever set it. The clear only happens prior to doing
195 * an update and only by the processor itself. Currently we do it
196 * in Accept (H_XIRR) and Up_Cppr (H_XPPR).
198 * We also do not try to figure out whether the EE state has changed,
199 * we unconditionally set it if the new state calls for it. The reason
200 * for that is that we opportunistically remove the pending interrupt
201 * flag when raising CPPR, so we need to set it back here if an
202 * interrupt is still pending.
205 icp_rm_set_vcpu_irq(icp->vcpu, this_vcpu);
207 /* Expose the state change for debug purposes */
208 this_vcpu->arch.icp->rm_dbgstate = new;
209 this_vcpu->arch.icp->rm_dbgtgt = icp->vcpu;
215 static inline int check_too_hard(struct kvmppc_xics *xics,
216 struct kvmppc_icp *icp)
218 return (xics->real_mode_dbg || icp->rm_action) ? H_TOO_HARD : H_SUCCESS;
221 static void icp_rm_check_resend(struct kvmppc_xics *xics,
222 struct kvmppc_icp *icp)
226 /* Order this load with the test for need_resend in the caller */
228 for_each_set_bit(icsid, icp->resend_map, xics->max_icsid + 1) {
229 struct kvmppc_ics *ics = xics->ics[icsid];
231 if (!test_and_clear_bit(icsid, icp->resend_map))
235 ics_rm_check_resend(xics, ics, icp);
239 static bool icp_rm_try_to_deliver(struct kvmppc_icp *icp, u32 irq, u8 priority,
242 union kvmppc_icp_state old_state, new_state;
246 old_state = new_state = READ_ONCE(icp->state);
250 /* See if we can deliver */
251 success = new_state.cppr > priority &&
252 new_state.mfrr > priority &&
253 new_state.pending_pri > priority;
256 * If we can, check for a rejection and perform the
260 *reject = new_state.xisr;
261 new_state.xisr = irq;
262 new_state.pending_pri = priority;
265 * If we failed to deliver we set need_resend
266 * so a subsequent CPPR state change causes us
267 * to try a new delivery.
269 new_state.need_resend = true;
272 } while (!icp_rm_try_update(icp, old_state, new_state));
277 static void icp_rm_deliver_irq(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
278 u32 new_irq, bool check_resend)
280 struct ics_irq_state *state;
281 struct kvmppc_ics *ics;
286 * This is used both for initial delivery of an interrupt and
287 * for subsequent rejection.
289 * Rejection can be racy vs. resends. We have evaluated the
290 * rejection in an atomic ICP transaction which is now complete,
291 * so potentially the ICP can already accept the interrupt again.
293 * So we need to retry the delivery. Essentially the reject path
294 * boils down to a failed delivery. Always.
296 * Now the interrupt could also have moved to a different target,
297 * thus we may need to re-do the ICP lookup as well
301 /* Get the ICS state and lock it */
302 ics = kvmppc_xics_find_ics(xics, new_irq, &src);
304 /* Unsafe increment, but this does not need to be accurate */
308 state = &ics->irq_state[src];
310 /* Get a lock on the ICS */
311 arch_spin_lock(&ics->lock);
314 if (!icp || state->server != icp->server_num) {
315 icp = kvmppc_xics_find_server(xics->kvm, state->server);
317 /* Unsafe increment again*/
327 /* Clear the resend bit of that interrupt */
331 * If masked, bail out
333 * Note: PAPR doesn't mention anything about masked pending
334 * when doing a resend, only when doing a delivery.
336 * However that would have the effect of losing a masked
337 * interrupt that was rejected and isn't consistent with
338 * the whole masked_pending business which is about not
339 * losing interrupts that occur while masked.
341 * I don't differentiate normal deliveries and resends, this
342 * implementation will differ from PAPR and not lose such
345 if (state->priority == MASKED) {
346 state->masked_pending = 1;
351 * Try the delivery, this will set the need_resend flag
352 * in the ICP as part of the atomic transaction if the
353 * delivery is not possible.
355 * Note that if successful, the new delivery might have itself
356 * rejected an interrupt that was "delivered" before we took the
359 * In this case we do the whole sequence all over again for the
360 * new guy. We cannot assume that the rejected interrupt is less
361 * favored than the new one, and thus doesn't need to be delivered,
362 * because by the time we exit icp_rm_try_to_deliver() the target
363 * processor may well have already consumed & completed it, and thus
364 * the rejected interrupt might actually be already acceptable.
366 if (icp_rm_try_to_deliver(icp, new_irq, state->priority, &reject)) {
368 * Delivery was successful, did we reject somebody else ?
370 if (reject && reject != XICS_IPI) {
371 arch_spin_unlock(&ics->lock);
379 * We failed to deliver the interrupt we need to set the
380 * resend map bit and mark the ICS state as needing a resend
385 * Make sure when checking resend, we don't miss the resend
386 * if resend_map bit is seen and cleared.
389 set_bit(ics->icsid, icp->resend_map);
392 * If the need_resend flag got cleared in the ICP some time
393 * between icp_rm_try_to_deliver() atomic update and now, then
394 * we know it might have missed the resend_map bit. So we
398 if (!icp->state.need_resend) {
400 arch_spin_unlock(&ics->lock);
406 arch_spin_unlock(&ics->lock);
409 static void icp_rm_down_cppr(struct kvmppc_xics *xics, struct kvmppc_icp *icp,
412 union kvmppc_icp_state old_state, new_state;
416 * This handles several related states in one operation:
418 * ICP State: Down_CPPR
420 * Load CPPR with new value and if the XISR is 0
421 * then check for resends:
425 * If MFRR is more favored than CPPR, check for IPIs
426 * and notify ICS of a potential resend. This is done
427 * asynchronously (when used in real mode, we will have
430 * We do not handle the complete Check_IPI as documented
431 * here. In the PAPR, this state will be used for both
432 * Set_MFRR and Down_CPPR. However, we know that we aren't
433 * changing the MFRR state here so we don't need to handle
434 * the case of an MFRR causing a reject of a pending irq,
435 * this will have been handled when the MFRR was set in the
438 * Thus we don't have to handle rejects, only resends.
440 * When implementing real mode for HV KVM, resend will lead to
441 * a H_TOO_HARD return and the whole transaction will be handled
445 old_state = new_state = READ_ONCE(icp->state);
448 new_state.cppr = new_cppr;
451 * Cut down Resend / Check_IPI / IPI
453 * The logic is that we cannot have a pending interrupt
454 * trumped by an IPI at this point (see above), so we
455 * know that either the pending interrupt is already an
456 * IPI (in which case we don't care to override it) or
457 * it's either more favored than us or non existent
459 if (new_state.mfrr < new_cppr &&
460 new_state.mfrr <= new_state.pending_pri) {
461 new_state.pending_pri = new_state.mfrr;
462 new_state.xisr = XICS_IPI;
465 /* Latch/clear resend bit */
466 resend = new_state.need_resend;
467 new_state.need_resend = 0;
469 } while (!icp_rm_try_update(icp, old_state, new_state));
472 * Now handle resend checks. Those are asynchronous to the ICP
473 * state update in HW (ie bus transactions) so we can handle them
474 * separately here as well.
477 icp->n_check_resend++;
478 icp_rm_check_resend(xics, icp);
483 unsigned long xics_rm_h_xirr(struct kvm_vcpu *vcpu)
485 union kvmppc_icp_state old_state, new_state;
486 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
487 struct kvmppc_icp *icp = vcpu->arch.icp;
490 if (!xics || !xics->real_mode)
493 /* First clear the interrupt */
494 icp_rm_clr_vcpu_irq(icp->vcpu);
497 * ICP State: Accept_Interrupt
499 * Return the pending interrupt (if any) along with the
500 * current CPPR, then clear the XISR & set CPPR to the
504 old_state = new_state = READ_ONCE(icp->state);
506 xirr = old_state.xisr | (((u32)old_state.cppr) << 24);
509 new_state.cppr = new_state.pending_pri;
510 new_state.pending_pri = 0xff;
513 } while (!icp_rm_try_update(icp, old_state, new_state));
515 /* Return the result in GPR4 */
516 vcpu->arch.regs.gpr[4] = xirr;
518 return check_too_hard(xics, icp);
521 int xics_rm_h_ipi(struct kvm_vcpu *vcpu, unsigned long server,
524 union kvmppc_icp_state old_state, new_state;
525 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
526 struct kvmppc_icp *icp, *this_icp = vcpu->arch.icp;
531 if (!xics || !xics->real_mode)
534 local = this_icp->server_num == server;
538 icp = kvmppc_xics_find_server(vcpu->kvm, server);
543 * ICP state: Set_MFRR
545 * If the CPPR is more favored than the new MFRR, then
546 * nothing needs to be done as there can be no XISR to
549 * ICP state: Check_IPI
551 * If the CPPR is less favored, then we might be replacing
552 * an interrupt, and thus need to possibly reject it.
556 * Besides rejecting any pending interrupts, we also
557 * update XISR and pending_pri to mark IPI as pending.
559 * PAPR does not describe this state, but if the MFRR is being
560 * made less favored than its earlier value, there might be
561 * a previously-rejected interrupt needing to be resent.
562 * Ideally, we would want to resend only if
563 * prio(pending_interrupt) < mfrr &&
564 * prio(pending_interrupt) < cppr
565 * where pending interrupt is the one that was rejected. But
566 * we don't have that state, so we simply trigger a resend
567 * whenever the MFRR is made less favored.
570 old_state = new_state = READ_ONCE(icp->state);
573 new_state.mfrr = mfrr;
578 if (mfrr < new_state.cppr) {
579 /* Reject a pending interrupt if not an IPI */
580 if (mfrr <= new_state.pending_pri) {
581 reject = new_state.xisr;
582 new_state.pending_pri = mfrr;
583 new_state.xisr = XICS_IPI;
587 if (mfrr > old_state.mfrr) {
588 resend = new_state.need_resend;
589 new_state.need_resend = 0;
591 } while (!icp_rm_try_update(icp, old_state, new_state));
593 /* Handle reject in real mode */
594 if (reject && reject != XICS_IPI) {
595 this_icp->n_reject++;
596 icp_rm_deliver_irq(xics, icp, reject, false);
599 /* Handle resends in real mode */
601 this_icp->n_check_resend++;
602 icp_rm_check_resend(xics, icp);
605 return check_too_hard(xics, this_icp);
608 int xics_rm_h_cppr(struct kvm_vcpu *vcpu, unsigned long cppr)
610 union kvmppc_icp_state old_state, new_state;
611 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
612 struct kvmppc_icp *icp = vcpu->arch.icp;
615 if (!xics || !xics->real_mode)
619 * ICP State: Set_CPPR
621 * We can safely compare the new value with the current
622 * value outside of the transaction as the CPPR is only
623 * ever changed by the processor on itself
625 if (cppr > icp->state.cppr) {
626 icp_rm_down_cppr(xics, icp, cppr);
628 } else if (cppr == icp->state.cppr)
634 * The processor is raising its priority, this can result
635 * in a rejection of a pending interrupt:
637 * ICP State: Reject_Current
639 * We can remove EE from the current processor, the update
640 * transaction will set it again if needed
642 icp_rm_clr_vcpu_irq(icp->vcpu);
645 old_state = new_state = READ_ONCE(icp->state);
648 new_state.cppr = cppr;
650 if (cppr <= new_state.pending_pri) {
651 reject = new_state.xisr;
653 new_state.pending_pri = 0xff;
656 } while (!icp_rm_try_update(icp, old_state, new_state));
659 * Check for rejects. They are handled by doing a new delivery
660 * attempt (see comments in icp_rm_deliver_irq).
662 if (reject && reject != XICS_IPI) {
664 icp_rm_deliver_irq(xics, icp, reject, false);
667 return check_too_hard(xics, icp);
670 static int ics_rm_eoi(struct kvm_vcpu *vcpu, u32 irq)
672 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
673 struct kvmppc_icp *icp = vcpu->arch.icp;
674 struct kvmppc_ics *ics;
675 struct ics_irq_state *state;
680 * ICS EOI handling: For LSI, if P bit is still set, we need to
683 * For MSI, we move Q bit into P (and clear Q). If it is set,
687 ics = kvmppc_xics_find_ics(xics, irq, &src);
691 state = &ics->irq_state[src];
694 pq_new = state->pq_state;
697 pq_old = state->pq_state;
698 pq_new = pq_old >> 1;
699 } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old);
701 if (pq_new & PQ_PRESENTED)
702 icp_rm_deliver_irq(xics, NULL, irq, false);
704 if (!hlist_empty(&vcpu->kvm->irq_ack_notifier_list)) {
705 icp->rm_action |= XICS_RM_NOTIFY_EOI;
706 icp->rm_eoied_irq = irq;
709 /* Handle passthrough interrupts */
710 if (state->host_irq) {
711 ++vcpu->stat.pthru_all;
712 if (state->intr_cpu != -1) {
713 int pcpu = raw_smp_processor_id();
715 pcpu = cpu_first_thread_sibling(pcpu);
716 ++vcpu->stat.pthru_host;
717 if (state->intr_cpu != pcpu) {
718 ++vcpu->stat.pthru_bad_aff;
719 xics_opal_set_server(state->host_irq, pcpu);
721 state->intr_cpu = -1;
726 return check_too_hard(xics, icp);
729 int xics_rm_h_eoi(struct kvm_vcpu *vcpu, unsigned long xirr)
731 struct kvmppc_xics *xics = vcpu->kvm->arch.xics;
732 struct kvmppc_icp *icp = vcpu->arch.icp;
733 u32 irq = xirr & 0x00ffffff;
735 if (!xics || !xics->real_mode)
741 * Note: If EOI is incorrectly used by SW to lower the CPPR
742 * value (ie more favored), we do not check for rejection of
743 * a pending interrupt, this is a SW error and PAPR specifies
744 * that we don't have to deal with it.
746 * The sending of an EOI to the ICS is handled after the
749 * ICP State: Down_CPPR which we handle
750 * in a separate function as it's shared with H_CPPR.
752 icp_rm_down_cppr(xics, icp, xirr >> 24);
754 /* IPIs have no EOI */
756 return check_too_hard(xics, icp);
758 return ics_rm_eoi(vcpu, irq);
761 static unsigned long eoi_rc;
763 static void icp_eoi(struct irq_data *d, u32 hwirq, __be32 xirr, bool *again)
765 void __iomem *xics_phys;
768 rc = pnv_opal_pci_msi_eoi(d);
776 xics_phys = local_paca->kvm_hstate.xics_phys;
778 __raw_rm_writel(xirr, xics_phys + XICS_XIRR);
780 rc = opal_int_eoi(be32_to_cpu(xirr));
785 static int xics_opal_set_server(unsigned int hw_irq, int server_cpu)
787 unsigned int mangle_cpu = get_hard_smp_processor_id(server_cpu) << 2;
789 return opal_set_xive(hw_irq, mangle_cpu, DEFAULT_PRIORITY);
793 * Increment a per-CPU 32-bit unsigned integer variable.
794 * Safe to call in real-mode. Handles vmalloc'ed addresses
796 * ToDo: Make this work for any integral type
799 static inline void this_cpu_inc_rm(unsigned int __percpu *addr)
803 int cpu = smp_processor_id();
805 raddr = per_cpu_ptr(addr, cpu);
806 l = (unsigned long)raddr;
808 if (get_region_id(l) == VMALLOC_REGION_ID) {
809 l = vmalloc_to_phys(raddr);
810 raddr = (unsigned int *)l;
816 * We don't try to update the flags in the irq_desc 'istate' field in
817 * here as would happen in the normal IRQ handling path for several reasons:
818 * - state flags represent internal IRQ state and are not expected to be
819 * updated outside the IRQ subsystem
820 * - more importantly, these are useful for edge triggered interrupts,
821 * IRQ probing, etc., but we are only handling MSI/MSIx interrupts here
822 * and these states shouldn't apply to us.
824 * However, we do update irq_stats - we somewhat duplicate the code in
825 * kstat_incr_irqs_this_cpu() for this since this function is defined
826 * in irq/internal.h which we don't want to include here.
827 * The only difference is that desc->kstat_irqs is an allocated per CPU
828 * variable and could have been vmalloc'ed, so we can't directly
829 * call __this_cpu_inc() on it. The kstat structure is a static
830 * per CPU variable and it should be accessible by real-mode KVM.
833 static void kvmppc_rm_handle_irq_desc(struct irq_desc *desc)
835 this_cpu_inc_rm(desc->kstat_irqs);
836 __this_cpu_inc(kstat.irqs_sum);
839 long kvmppc_deliver_irq_passthru(struct kvm_vcpu *vcpu,
841 struct kvmppc_irq_map *irq_map,
842 struct kvmppc_passthru_irqmap *pimap,
845 struct kvmppc_xics *xics;
846 struct kvmppc_icp *icp;
847 struct kvmppc_ics *ics;
848 struct ics_irq_state *state;
853 irq = irq_map->v_hwirq;
854 xics = vcpu->kvm->arch.xics;
855 icp = vcpu->arch.icp;
857 kvmppc_rm_handle_irq_desc(irq_map->desc);
859 ics = kvmppc_xics_find_ics(xics, irq, &src);
863 state = &ics->irq_state[src];
865 /* only MSIs register bypass producers, so it must be MSI here */
867 pq_old = state->pq_state;
868 pq_new = ((pq_old << 1) & 3) | PQ_PRESENTED;
869 } while (cmpxchg(&state->pq_state, pq_old, pq_new) != pq_old);
871 /* Test P=1, Q=0, this is the only case where we present */
872 if (pq_new == PQ_PRESENTED)
873 icp_rm_deliver_irq(xics, icp, irq, false);
875 /* EOI the interrupt */
876 icp_eoi(irq_desc_get_irq_data(irq_map->desc), irq_map->r_hwirq, xirr, again);
878 if (check_too_hard(xics, icp) == H_TOO_HARD)
884 /* --- Non-real mode XICS-related built-in routines --- */
887 * Host Operations poked by RM KVM
889 static void rm_host_ipi_action(int action, void *data)
892 case XICS_RM_KICK_VCPU:
893 kvmppc_host_rm_ops_hv->vcpu_kick(data);
896 WARN(1, "Unexpected rm_action=%d data=%p\n", action, data);
902 void kvmppc_xics_ipi_action(void)
905 unsigned int cpu = smp_processor_id();
906 struct kvmppc_host_rm_core *rm_corep;
908 core = cpu >> threads_shift;
909 rm_corep = &kvmppc_host_rm_ops_hv->rm_core[core];
911 if (rm_corep->rm_data) {
912 rm_host_ipi_action(rm_corep->rm_state.rm_action,
914 /* Order these stores against the real mode KVM */
915 rm_corep->rm_data = NULL;
917 rm_corep->rm_state.rm_action = 0;