Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Apr 2019 16:38:40 +0000
From:      bugzilla-noreply@freebsd.org
To:        ppc@FreeBSD.org
Subject:   [Bug 233863] r345425 on PowerMac G5 may require kern.smp.disabled=1 and must set usefdt=1 which causes net interface reorder
Message-ID:  <bug-233863-21-8K0ODxAQLD@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-233863-21@https.bugs.freebsd.org/bugzilla/>
References:  <bug-233863-21@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D233863

--- Comment #28 from Mark Millard <marklmi26-fbsd@yahoo.com> ---
(In reply to Mark Millard from comment #26)

More iMag G3 (MPC750) notes . . .

In the non-debug kernel __mtx_lock_flags was inlined
and that code normally leads to __mtx_lock_sleep not
being called in the failures.

My machine check and data store interrupt notes were not
meant to imply debug always gets one or that non-debug
always gets the other.

The following seems to have eliminated the machine check
type of error, turning them all into data storage interrupts
so far:

Index: /usr/src/sys/powerpc/aim/trap_subr32.S
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- /usr/src/sys/powerpc/aim/trap_subr32.S      (revision 345758)
+++ /usr/src/sys/powerpc/aim/trap_subr32.S      (working copy)
@@ -68,7 +68,7 @@
        lwzu    sr,PM_SR(pmap); \
        RESTORE_SRS(pmap,sr) \
        /* Restore SR 12 */ \
-       lwz     sr,12*4(pmap);  mtsr    12,sr
+       lwz     sr,12*4(pmap);  mtsr    12,sr; isync

/*
 * Kernel SRs are loaded directly from kernel_pmap_
@@ -799,6 +799,7 @@
        mfmsr   %r3
        andi.   %r3,%r3,~PSL_EE@l
        mtmsr   %r3
+       isync
/* Test AST pending: */
        lwz     %r5,FRAME_SRR1+8(%r1)
        mtcr    %r5

But the general failures remain. The above (or something
like it) may be necessary but is not sufficient.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-233863-21-8K0ODxAQLD>