Date: Mon, 28 Jul 2003 09:40:10 +1000 (EST) From: Andy Farkas <andyf@speednet.com.au> To: Don Bowman <don@sandvine.com> Cc: aic7xxx@freebsd.org Subject: Re: AIC7902 w/ seagate U320 drive issue on releng-4 (and current) Message-ID: <20030728092953.L8406-100000@hewey.af.speednet.com.au> In-Reply-To: <FE045D4D9F7AED4CBFF1B3B813C8533702741FE7@mail.sandvine.com>
next in thread | previous in thread | raw e-mail | index | archive | help
On Sat, 26 Jul 2003, Don Bowman wrote: > Jul 26 19:27:20 /kernel: <<<<<<<<<<<<<<<< Dump Card State Ends > >>>>>>>>>>>>>>>>>> > > Message from syslogd@ at Sat Jul 26 19:27:20 2003 ... > /kernel: <<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>> ... > Jul 26 19:29:34 /kernel: <<<<<<<<<<<<<<<< Dump Card State Ends > >>>>>>>>>>>>>>>>>> > > Message from syslogd@ at Sat Jul 26 19:29:34 2003 ... > /kernel: <<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>> Dear scsi gurus, please fix the above messages. Even though the fix is trivial, this bug should be persued. Why would a newline at the begining of a message cause syslogd to think its an emergency and alert every user that is logged in! (spamming users' screens while they're reading email is not nice!) --- aic7xxx.c-orig Mon Jul 28 09:28:39 2003 +++ aic7xxx.c Mon Jul 28 09:29:08 2003 @@ -6886,7 +6886,7 @@ } ahc_platform_dump_card_state(ahc); - printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n"); + printf("<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n"); ahc_outb(ahc, SCBPTR, saved_scbptr); if (paused == 0) ahc_unpause(ahc); --- aic79xx.c-orig Mon Jul 28 09:33:09 2003 +++ aic79xx.c Mon Jul 28 09:33:26 2003 @@ -8735,7 +8735,7 @@ ahd_outb(ahd, STACK, ahd->saved_stack[i] & 0xFF); ahd_outb(ahd, STACK, (ahd->saved_stack[i] >> 8) & 0xFF); } - printf("\n<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n"); + printf("<<<<<<<<<<<<<<<<< Dump Card State Ends >>>>>>>>>>>>>>>>>>\n"); ahd_platform_dump_card_state(ahd); ahd_restore_modes(ahd, saved_modes); if (paused == 0) -- :{ andyf@speednet.com.au Andy Farkas System Administrator Speednet Communications http://www.speednet.com.au/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20030728092953.L8406-100000>