mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Greg KH <greg@kroah.com>
To: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: Greg KH <gregkh@suse.de>, Michael Neuling <mikey@neuling.org>,
	Benjamin Herrenschmidt <benh@kernel.crashing.org>,
	linux-kernel@vger.kernel.org, stable@kernel.org,
	akpm@linux-foundation.org, torvalds@linux-foundation.org,
	stable-review@kernel.org, alan@lxorguk.ukuu.org.uk
Subject: Re: [stable] [05/35] powerpc/kdump: Fix race in kdump shutdown
Date: Mon, 11 Apr 2011 15:57:10 -0700	[thread overview]
Message-ID: <20110411225710.GB32589@kroah.com> (raw)
In-Reply-To: <AANLkTi=XPPxVYPB8fzr2Ent3QOsKF=JunhGL+ExEk_7f@mail.gmail.com>

On Wed, Mar 30, 2011 at 07:27:06PM -0400, Paul Gortmaker wrote:
> On Fri, Mar 25, 2011 at 8:03 PM, Greg KH <gregkh@suse.de> wrote:
> > 2.6.33-longterm review patch.  If anyone has any objections, please let us know.
> >
> > ------------------
> >
> > From: Michael Neuling <mikey@neuling.org>
> >
> > commit 60adec6226bbcf061d4c2d10944fced209d1847d upstream.
> 
> Hi Greg,
> 
> It looks like this introduces an issue for ppc32 unless we also take
> the upstream c2be05481f612525 commit.  There is an e500 kexec
> patch in between that modifies context; here is the one I've tentatively
> queued for 2.6.34 without a dependency on the e500 patch context.
> 
> http://git.kernel.org/?p=linux/kernel/git/longterm/longterm-queue-2.6.34.git;a=blob;f=next_round/powerpc-Fix-default_machine_crash_shutdown-ifdef-bot.patch

Yes, I now have updated patches from Kamalesh in the tree to resolve
this.

thanks,

greg k-h

> 
> Paul.
> 
> >
> > When we are crashing, the crashing/primary CPU IPIs the secondaries to
> > turn off IRQs, go into real mode and wait in kexec_wait.  While this
> > is happening, the primary tears down all the MMU maps.  Unfortunately
> > the primary doesn't check to make sure the secondaries have entered
> > real mode before doing this.
> >
> > On PHYP machines, the secondaries can take a long time shutting down
> > the IRQ controller as RTAS calls are need.  These RTAS calls need to
> > be serialised which resilts in the secondaries contending in
> > lock_rtas() and hence taking a long time to shut down.
> >
> > We've hit this on large POWER7 machines, where some secondaries are
> > still waiting in lock_rtas(), when the primary tears down the HPTEs.
> >
> > This patch makes sure all secondaries are in real mode before the
> > primary tears down the MMU.  It uses the new kexec_state entry in the
> > paca.  It times out if the secondaries don't reach real mode after
> > 10sec.
> >
> > Signed-off-by: Michael Neuling <mikey@neuling.org>
> > Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
> > Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
> >
> > ---
> >  arch/powerpc/kernel/crash.c |   27 +++++++++++++++++++++++++++
> >  1 file changed, 27 insertions(+)
> >
> > --- a/arch/powerpc/kernel/crash.c
> > +++ b/arch/powerpc/kernel/crash.c
> > @@ -162,6 +162,32 @@ static void crash_kexec_prepare_cpus(int
> >        /* Leave the IPI callback set */
> >  }
> >
> > +/* wait for all the CPUs to hit real mode but timeout if they don't come in */
> > +static void crash_kexec_wait_realmode(int cpu)
> > +{
> > +       unsigned int msecs;
> > +       int i;
> > +
> > +       msecs = 10000;
> > +       for (i=0; i < NR_CPUS && msecs > 0; i++) {
> > +               if (i == cpu)
> > +                       continue;
> > +
> > +               while (paca[i].kexec_state < KEXEC_STATE_REAL_MODE) {
> > +                       barrier();
> > +                       if (!cpu_possible(i)) {
> > +                               break;
> > +                       }
> > +                       if (!cpu_online(i)) {
> > +                               break;
> > +                       }
> > +                       msecs--;
> > +                       mdelay(1);
> > +               }
> > +       }
> > +       mb();
> > +}
> > +
> >  /*
> >  * This function will be called by secondary cpus or by kexec cpu
> >  * if soft-reset is activated to stop some CPUs.
> > @@ -419,6 +445,7 @@ void default_machine_crash_shutdown(stru
> >        crash_kexec_prepare_cpus(crashing_cpu);
> >        cpu_set(crashing_cpu, cpus_in_crash);
> >        crash_kexec_stop_spus();
> > +       crash_kexec_wait_realmode(crashing_cpu);
> >        if (ppc_md.kexec_cpu_down)
> >                ppc_md.kexec_cpu_down(1, 0);
> >  }
> >
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > Please read the FAQ at  http://www.tux.org/lkml/
> >
> 
> _______________________________________________
> stable mailing list
> stable@linux.kernel.org
> http://linux.kernel.org/mailman/listinfo/stable

  reply	other threads:[~2011-04-11 23:13 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-03-26  0:05 [00/35] 2.6.33.9-longterm review Greg KH
2011-03-26  0:03 ` [01/35] smp_call_function_many: handle concurrent clearing of mask Greg KH
2011-03-26  0:03 ` [02/35] [PARISC] fix per-cpu flag problem in the cpu affinity checkers Greg KH
2011-03-26  0:03 ` [03/35] i2c: Fix typo in instantiating-devices document Greg KH
2011-03-26  0:03 ` [04/35] mmc: sdio: remember new card RCA when redetecting card Greg KH
2011-03-26  0:03 ` [05/35] powerpc/kdump: Fix race in kdump shutdown Greg KH
2011-03-30 23:27   ` Paul Gortmaker
2011-04-11 22:57     ` Greg KH [this message]
2011-03-26  0:03 ` [06/35] powerpc: rtas_flash needs to use rtas_data_buf Greg KH
2011-03-26  0:03 ` [07/35] x86, binutils, xen: Fix another wrong size directive Greg KH
2011-03-26  0:03 ` [08/35] hwmon: (sht15) Fix integer overflow in humidity calculation Greg KH
2011-03-26  0:03 ` [09/35] ALSA: hda - VIA: Fix stereo mixer recording no sound issue Greg KH
2011-03-26  0:03 ` [10/35] ALSA: hda - VIA: Add missing support for VT1718S in A-A path Greg KH
2011-03-26  0:03 ` [11/35] aio: wake all waiters when destroying ctx Greg KH
2011-03-26  0:03 ` [12/35] shmem: let shared anonymous be nonlinear again Greg KH
2011-03-26  0:03 ` [13/35] PCI hotplug: acpiphp: set current_state to D0 in register_slot Greg KH
2011-03-26  0:03 ` [14/35] xen: set max_pfn_mapped to the last pfn mapped Greg KH
2011-03-26  0:03 ` [15/35] PCI: return correct value when writing to the "reset" attribute Greg KH
2011-03-26  0:03 ` [16/35] [PATCH] Revert "intel_idle: PCI quirk to prevent Lenovo Ideapad s10-3 boot hang" Greg KH
2011-03-26  0:03 ` [17/35] Prevent rt_sigqueueinfo and rt_tgsigqueueinfo from spoofing the signal code Greg KH
2011-03-26  0:03 ` [18/35] ext3: skip orphan cleanup on rocompat fs Greg KH
2011-03-26  0:03 ` [19/35] procfs: fix /proc/<pid>/maps heap check Greg KH
2011-03-26  0:03 ` [20/35] proc: protect mm start_code/end_code in /proc/pid/stat Greg KH
2011-03-26  0:03 ` [21/35] fbcon: Bugfix soft cursor detection in Tile Blitting Greg KH
2011-03-26  0:03 ` [22/35] nfsd41: modify the members value of nfsd4_op_flags Greg KH
2011-03-26  0:03 ` [23/35] nfsd: wrong index used in inner loop Greg KH
2011-03-26  0:03 ` [24/35] [media] uvcvideo: Fix uvc_fixup_video_ctrl() format search Greg KH
2011-03-26  0:03 ` [25/35] [media] uvcvideo: Fix descriptor parsing for video output devices Greg KH
2011-03-26  0:03 ` [26/35] ehci-hcd: Bug fix: dont set a QHs Halt bit Greg KH
2011-03-26  0:03 ` [27/35] USB: uss720 fixup refcount position Greg KH
2011-03-26  0:04 ` [28/35] USB: cdc-acm: fix memory corruption / panic Greg KH
2011-03-26  0:04 ` [29/35] USB: cdc-acm: fix potential null-pointer dereference Greg KH
2011-03-26  0:04 ` [30/35] USB: cdc-acm: fix potential null-pointer dereference on disconnect Greg KH
2011-03-26  0:04 ` [31/35] Input: xen-kbdfront - advertise either absolute or relative coordinates Greg KH
2011-03-26  0:04 ` [32/35] x86: Cleanup highmap after brk is concluded Greg KH
2011-03-26  0:04 ` [33/35] SUNRPC: Never reuse the socket port after an xs_close() Greg KH
2011-03-26  0:04 ` [34/35] fs: call security_d_instantiate in d_obtain_alias V2 Greg KH
2011-03-26  0:24   ` Casey Schaufler
2011-03-26 16:11     ` Josef Bacik
2011-03-26  0:04 ` [35/35] dcdbas: force SMI to happen when expected Greg KH

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110411225710.GB32589@kroah.com \
    --to=greg@kroah.com \
    --cc=akpm@linux-foundation.org \
    --cc=alan@lxorguk.ukuu.org.uk \
    --cc=benh@kernel.crashing.org \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mikey@neuling.org \
    --cc=paul.gortmaker@windriver.com \
    --cc=stable-review@kernel.org \
    --cc=stable@kernel.org \
    --cc=torvalds@linux-foundation.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®