public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* smp_send_stop() and disable_local_APIC()
@ 2001-05-03 17:49 Matt D. Robinson
  2001-05-04 15:58 ` Eric W. Biederman
  0 siblings, 1 reply; 4+ messages in thread
From: Matt D. Robinson @ 2001-05-03 17:49 UTC (permalink / raw)
  To: linux-kernel

It looks like around 2.3.30 or so, someone added the call
disable_local_APIC() to smp_send_stop().  I'm not sure what the
intention was, but I'm getting some strange behavior as a result
based on some code I'm writing.

Basically, I'm doing the following ...

    panic()
    {
        /* do whatever you want, notifier list, etc. */
        smp_send_stop();
        write_system_memory();
        /* then do whatever */
    }

write_system_memory() does a write of all system memory pages to some
block device.  It uses kiobufs as the way to get the pages to disk,
doing brw_kiovec() on those pages (using either the IDE or SCSI
driver to write the data).

The wierd behavior I see is that sometimes, smp_send_stop()
being called causes the system to hang up (not every time).  If
we don't call smp_send_stop() on those systems, everything works fine.
This looks to be directly caused by the disabling of the APIC, which
we may need to dump pages to local disk.  This only applies to some
people's systems -- not everyone displays the same behavior.

I'm sure it's good to disable the APIC, but there's no clean way to
wait on disabling the APIC until after I'm done writing pages out.

My questions are:

1) Why was disable_local_APIC() added to stop_this_cpu()
   and smp_send_stop()?  Completeness?

2) Is there a better way around this to disable all the
   other CPUs without disabling the APIC?

Thanks for any feedback.

--Matt

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2001-05-05 14:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-05-03 17:49 smp_send_stop() and disable_local_APIC() Matt D. Robinson
2001-05-04 15:58 ` Eric W. Biederman
2001-05-04 17:29   ` Matt D. Robinson
2001-05-05  5:50     ` Eric W. Biederman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox