Subject: #define __SWAP_BROKEN
To: None <port-mips@netbsd.org>
From: Toru Nishimura <nisimura@itc.aist-nara.ac.jp>
List: port-mips
Date: 05/10/2000 11:16:52
Folks, I have Q.

arch/mips/include/types.h has a line of #define __SWAP_BROKEN.   Does
it still matter in NetBSD/mips?   I think it could be deleted, and
could have;

void
cpu_swapout(p)
        struct proc *p;
{

        if (p != fpcurproc)
                return;
        savefpregs(p);
}

Adjustments for pcb_upte[0,1] might be obsoluted, too.

Any thought?

Tohru Nishimura