Seltsame Fehlermeldung beim Booten

J

juedan

Guest
Moooin,

seit ein paar Tagen bekomme ich während der Bootphase diese Meldung:
sym1: suspicious SCSI data while resetting the BUS.
sym1: dp1,d15-8,dp0,d7-0,rst,req,ack,bsy,sel,atn,msg,c/d,i/o = 0x200100, expecting 0x100

Was hat das zu bedeuten?
Ich möchte nur die Bedeutung wissen, damit ich es in meine "Problemdatenbank" aufnehmen kann. Eine Lösung suche ich mir dann schon und werde sie hier natürlich posten!

Grüße

Jürgen
 
http://www.mail-archive.com/freebsd-current@freebsd.org/msg50404.html
http://www.mail-archive.com/freebsd-current@freebsd.org/msg50398.html

Ansonsten noch der source von "sym" (/usr/src/sys/dev/sym/sym_hipd.c):
Code:
 /*
         *  Check for no terminators or SCSI bus shorts to ground.
         *  Read SCSI data bus, data parity bits and control signals.
         *  We are expecting RESET to be TRUE and other signals to be 
         *  FALSE.
         */
        term =  INB(nc_sstat0);
        term =  ((term & 2) << 7) + ((term & 1) << 17); /* rst sdp0 */
        term |= ((INB(nc_sstat2) & 0x01) << 26) |       /* sdp1     */
                ((INW(nc_sbdl) & 0xff)   << 9)  |       /* d7-0     */
                ((INW(nc_sbdl) & 0xff00) << 10) |       /* d15-8    */
                INB(nc_sbcl);   /* req ack bsy sel atn msg cd io    */

        if (!(np->features & FE_WIDE))
                term &= 0x3ffff;

        if (term != (2<<7)) {
                printf("%s: suspicious SCSI data while resetting the BUS.\n",
                        sym_name(np));
                printf("%s: %sdp0,d7-0,rst,req,ack,bsy,sel,atn,msg,c/d,i/o = "
                        "0x%lx, expecting 0x%lx\n",
                        sym_name(np),
                        (np->features & FE_WIDE) ? "dp1,d15-8," : "",
                        (u_long)term, (u_long)(2<<7));
                if (SYM_SETUP_SCSI_BUS_CHECK == 1)
                        retv = 1;
        }
 
Hallo asg,

mein Gott, da habe ich den Source-Code auf Platte und gucke nicht rein :rolleyes:
Da steht ja auch schon die Problemlösung drin.

Danke für den "Hirntritt" :D


Grüße

Jürgen

PS: Wie ich jetzt festgestellt habe, ist der Hostadapter gestorben :eek:
 
Zuletzt bearbeitet von einem Moderator:
Zurück
Oben