public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "J.A. Magallon" <jamagallon@able.es>
To: Lista Linux-Kernel <linux-kernel@vger.kernel.org>
Subject: BUG() triggered on SMP shutdown, cpu!=0
Date: Wed, 18 Sep 2002 12:20:29 +0200	[thread overview]
Message-ID: <20020918102029.GA1536@werewolf.able.es> (raw)

Hi all...

I am getting oopses on shutdown, 'cause this bug is popping:

static void apm_power_off(void)
{
    unsigned char   po_bios_call[] = {
        0xb8, 0x00, 0x10,   /* movw  $0x1000,ax  */
        0x8e, 0xd0,     /* movw  ax,ss       */
        0xbc, 0x00, 0xf0,   /* movw  $0xf000,sp  */
        0xb8, 0x07, 0x53,   /* movw  $0x5307,ax  */
        0xbb, 0x01, 0x00,   /* movw  $0x0001,bx  */
        0xb9, 0x03, 0x00,   /* movw  $0x0003,cx  */
        0xcd, 0x15      /* int   $0x15       */
    };

    /*
     * This may be called on an SMP machine.
     */
#ifdef CONFIG_SMP
    /* Some bioses don't like being called from CPU != 0 */
    if (cpu_number_map(smp_processor_id()) != 0) {
        current->cpus_allowed = 1;
        schedule();
        if (unlikely(cpu_number_map(smp_processor_id()) != 0))
            BUG();
    }
#endif
    if (apm_info.realmode_power_off)
        machine_real_restart(po_bios_call, sizeof(po_bios_call));
    else
        (void) set_system_power_state(APM_STATE_OFF);
}

Does this mean that after the schedule() kernel is still in CPU1 ???
Will add a couple ptintks....
This is 2.4.19-pre7+aa patches.

TIA

-- 
J.A. Magallon <jamagallon@able.es>      \                 Software is like sex:
werewolf.able.es                         \           It's better when it's free
Mandrake Linux release 9.0 (Cooker) for i586
Linux 2.4.20-pre7-jam0 (gcc 3.2 (Mandrake Linux 9.0 3.2-1mdk))

             reply	other threads:[~2002-09-18 10:15 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-18 10:20 J.A. Magallon [this message]
2002-09-18 10:41 ` BUG() triggered on SMP shutdown, cpu!=0 Alan Cox
2002-09-18 10:39   ` J.A. Magallon
2002-09-18 11:20   ` J.A. Magallon

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=20020918102029.GA1536@werewolf.able.es \
    --to=jamagallon@able.es \
    --cc=linux-kernel@vger.kernel.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