• Hidetoshi Seto's avatar
    [IA64] kdump: Don't return APs to SAL from kdump · 68cb14c7
    Hidetoshi Seto authored
    
    
    Summary:
    
      Asserting INIT on cpu going to be offline will result in unexpected
      behavior.  It will be a real problem in kdump cases where INIT might
      be asserted to unstable APs going to be offline by returning to SAL.
    
    Description:
    
      Since psr.mc is cleared when bits in psr are set to SAL_PSR_BITS_TO_SET
      in ia64_jump_to_sal(), there is a small window (~few msecs) that the
      cpu can receive INIT even if the cpu enter there via INIT handler.
      In this window we do restore of registers for SAL, so INIT asserted
      here will not work properly.
    
      It is hard to remove this window by masking INIT (i.e. setting psr.mc)
      because we have to unmask it later in OS, because we have to use branch
      instruction (br.ret, not rfi) to return SAL, due to OS_BOOT_RENDEZ to
      SAL return convention.
    
      I suppose this window will not be a real problem on cpu offline if we
      can educate people not to push INIT button during hotplug operation.
      However, only exception is a race in kdump and INIT.  Now kdump returns
      APs to SAL before processing dump, but the kernel might receive INIT at
      that point in time.  Such INIT might be asserted by kdump itself if an
      AP doesn't react IPI soon and kdump decided to use INIT to stop the AP.
      Or it might be asserted by operator or an external agent to start dump
      on the unstable system.
    
      Such panic+INIT or INIT+INIT cases should be rare, but it will be happy
      if we can retrieve crashdump even in such cases.
    
    How to reproduce:
    
      panic+INIT or INIT+INIT, with kdump configured
    
    Expected results:
    
      crashdump is retrieved anyway
    
    Actual results:
    
      panic, hang etc. (unexpected)
    
    Proposed fix
    
      To avoid the window on the way to SAL, this patch stops returning APs
      to SAL in case of kdump.  In other words, this patch makes APs spin
      in OS instead of spinning in SAL.
    
      (* Note: What impact would be there?  If a cpu is spinning in SAL,
       the cpu is in BOOT_RENDEZ loop, as same as offlined cpu.
       In theory if an INIT is asserted there, cpus in the BOOT_RENDEZ loop
       should not invoke OS_INIT on it.  So in either way, no matter where
       the cpu is spinning actually in, once cpu starts spin and act as
       "frozen," INIT on the cpu have no effects.
       From another point of view, all debug information on the cpu should
       have stored to memory before the cpu start to be frozen.  So no more
       action on the cpu is required.)
    
      I confirmed that the kdump sometime hangs by concurrent INITs (another
      INIT after an INIT), and it doesn't hang after applying this patch.
    Signed-off-by: default avatarHidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
    Cc: Vivek Goyal <vgoyal@redhat.com>
    Cc: Haren Myneni <hbabu@us.ibm.com>
    Cc: kexec@lists.infradead.org
    Acked-by: default avatarFenghua Yu <fenghua.yu@intel.com>
    Signed-off-by: default avatarTony Luck <tony.luck@intel.com>
    68cb14c7
crash.c 5.75 KB