Re: IA64 7.2-RC2 in HP Integrity Virtual Machine

2009-05-06 Thread Zahemszky Gábor
 I believe there's a problem with mpt(4) that relates to
 its error recovery, or lack thereof.
 
 Can you send a backtrace so that we can confirm or de-
 bunk that statement?

Hi!

here it is. (sorry for the ESC-sequences, it is the virtual machine's
EFI boot loader)

Attached.

Gábor  Gabor at Zahemszky dot HU 

-- 
#!/bin/ksh
Z='21N16I25C25E30, 40M30E33E25T15U!';
IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ ';
set -- $Z;for i;{ [[ $i = ? ]]print $ibreak;
[[ $i = ??? ]]j=$ii=${i%?};
typeset -i40 i=8#$i;print -n ${i#???};
[[ $j = ??? ]]print -n ${j#??} j=;typeset +i i;};
IFS=' 0123456789 ';set -- $Z;for i;{ [[ $i = , ]]i=2;
[[ $i = ?? ]]||typeset -l i;j=$j $i;typeset +l i;};print $j


typescript
Description: Binary data
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to freebsd-stable-unsubscr...@freebsd.org

PATA support is broken on Intel DG9655S ?

2007-06-30 Thread Zahemszky Gábor
Hi!

I'd like to know, is it possible to use FreeBSD on on Intel DG9655SS
motherboard with PATA devices. It has 1 PATA and 2 SATA ports,
but the 6-stable kernel doesn't see any devices on PATA. It
doesn't see neither my disk, nor my DVD-writer. I tried with normal
mode, with legacy mode, doesn't matter. The kernel boots, and after it
don't now any disks.
Is that controller works in Current? Will it work in 6-stable in the
near future?

Soren?

Bye, Gábor  Gabor at Zahemszky dot HU 

-- 
#!/bin/ksh
Z='21N16I25C25E30, 40M30E33E25T15U!';IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ
';set -- $Z;for i;{ [[ $i = ? ]]print $ibreak;[[ $i
= ??? ]]j=$ii=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ $j
= ??? ]]print -n ${j#??} j=;typeset +i i;};IFS=' 0123456789 ';set
-- $Z;for i;{ [[ $i = , ]]i=2;[[ $i = ?? ]]||typeset -l i;j=$j
$i;typeset +l i;};print $j
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: error in /etc/rc.d/mdconfig{,2}

2006-11-08 Thread Zahemszky Gábor
Hi!

Two weeks later, this small typo-correction doesn't reach the RELENG_6
branch. Will it, before src-freeze?

Zahy  Gabor at Zahemszky dot HU 

 On Thu, 2006-10-26 at 01:30 +0400, Ruslan Ermilov wrote:
 On Wed, Oct 25, 2006 at 10:44:34PM +0200, Zahemszky G?bor wrote:
 Hi!

 I've just found, that both /etc/rc.d/mdconfig, and /etc/rc.d/mdconfig2
 file in my 6.2.prerelease (cvsupped yesterday), has an incorrect kldload
 line:

  kldstat -q -m g_md || kldload geom_md || err 1 geom_md failed to load.

 (mdconfig line 97, and mdconfig2 line 104)

 The module name is g_md, and not geom_md.

 # $FreeBSD: src/etc/rc.d/mdconfig,v 1.3.2.1 2006/08/21 15:06:38 flz Exp $
 # $FreeBSD: src/etc/rc.d/mdconfig2,v 1.3.2.1 2006/08/21 15:06:38 flz Exp $

 True.  In RELENG_6 the module is named g_md.ko, while in HEAD it was
 renamed to geom_md.ko.
 
 Indeed, forgot to change the name, geom_uzip doesn't need to be changed.
 Is there a reason why the rename hasn't been MFC'ed? g_md seems to be
 the only one not to be named geom_something.
 
 Anyway, here's the patch for RELENG_6, is it ok to commit?
 
 Index: mdconfig
 ===
 RCS file: /home/ncvs/src/etc/rc.d/mdconfig,v
 retrieving revision 1.3.2.1
 diff -u -r1.3.2.1 mdconfig
 --- mdconfig21 Aug 2006 15:06:38 -  1.3.2.1
 +++ mdconfig25 Oct 2006 21:42:22 -
 @@ -108,7 +108,7 @@
 return
 fi
  
 -   kldstat -q -m g_md || kldload geom_md || err 1 geom_md failed
 to load.
 +   kldstat -q -m g_md || kldload g_md || err 1 g_md failed to
 load.
  
 for _md in ${_mdconfig_list}; do
 init_variables ${_md}
 Index: mdconfig2
 ===
 RCS file: /home/ncvs/src/etc/rc.d/mdconfig2,v
 retrieving revision 1.3.2.1
 diff -u -r1.3.2.1 mdconfig2
 --- mdconfig2   21 Aug 2006 15:06:38 -  1.3.2.1
 +++ mdconfig2   25 Oct 2006 21:42:22 -
 @@ -116,7 +116,7 @@
 return
 fi
  
 -   kldstat -q -m g_md || kldload geom_md || err 1 geom_md failed
 to load.
 +   kldstat -q -m g_md || kldload g_md || err 1 g_md failed to
 load.
  
 for _md in ${_mdconfig2_list}; do
 init_variables ${_md}
 


-- 
#!/bin/ksh
Z='21N16I25C25E30, 40M30E33E25T15U!';IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ
';set -- $Z;for i;{ [[ $i = ? ]]print $ibreak;[[ $i = ???
]]j=$ii=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ $j = ???
]]print -n ${j#??} j=;typeset +i i;};IFS=' 0123456789 ';set --
$Z;for i;{ [[ $i = , ]]i=2;[[ $i = ?? ]]||typeset -l i;j=$j
$i;typeset +l i;};print $j
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


error in /etc/rc.d/mdconfig{,2}

2006-10-25 Thread Zahemszky Gábor
Hi!

I've just found, that both /etc/rc.d/mdconfig, and /etc/rc.d/mdconfig2
file in my 6.2.prerelease (cvsupped yesterday), has an incorrect kldload
line:

 kldstat -q -m g_md || kldload geom_md || err 1 geom_md failed to load.

(mdconfig line 97, and mdconfig2 line 104)

The module name is g_md, and not geom_md.

# $FreeBSD: src/etc/rc.d/mdconfig,v 1.3.2.1 2006/08/21 15:06:38 flz Exp $
# $FreeBSD: src/etc/rc.d/mdconfig2,v 1.3.2.1 2006/08/21 15:06:38 flz Exp $

Bye,
Zahy  Gabor at Zahemszky dot HU 

-- 
#!/bin/ksh
Z='21N16I25C25E30, 40M30E33E25T15U!';IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ
';set -- $Z;for i;{ [[ $i = ? ]]print $ibreak;[[ $i = ???
]]j=$ii=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ $j = ???
]]print -n ${j#??} j=;typeset +i i;};IFS=' 0123456789 ';set --
$Z;for i;{ [[ $i = , ]]i=2;[[ $i = ?? ]]||typeset -l i;j=$j
$i;typeset +l i;};print $j
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]


hald and strange error messages

2006-10-18 Thread Zahemszky Gábor
Hi!

After updating my system, and enabling hald (no config, only the default
settings), I've got so many strange SCSI errors. With some limited
tests, I've found, that's because of hald. If I start  it, got SCSI (and
NTP?) errors. After stopping it, errors go away. Here is a snippet from
messages (I've generated Starting/stopping hald messages with logger):

===
Oct 18 09:44:41 Picasso root: Starting hald
Oct 18 09:45:06 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0x0
Oct 18 09:45:11 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 09:45:44 Picasso last message repeated 5 times
Oct 18 09:46:05 Picasso last message repeated 3 times
Oct 18 09:46:06 Picasso root: Stopping hald
Oct 18 09:46:12 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 09:46:47 Picasso ntpd[660]: kernel time sync disabled 2041
Oct 18 09:49:27 Picasso root: Starting hald
Oct 18 09:49:41 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 09:50:05 Picasso last message repeated 4 times
Oct 18 09:50:05 Picasso login: ROOT LOGIN (root) ON ttyv2
Oct 18 09:50:12 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 09:50:47 Picasso last message repeated 5 times
Oct 18 09:52:40 Picasso last message repeated 16 times
Oct 18 09:52:43 Picasso root: Stopped hald
Oct 18 09:52:47 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 09:55:22 Picasso ntpd[660]: kernel time sync enabled 2001
Oct 18 10:02:19 Picasso root: Starting hald
Oct 18 10:02:28 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4
Oct 18 10:02:59 Picasso last message repeated 5 times
Oct 18 10:04:10 Picasso last message repeated 10 times
Oct 18 10:04:15 Picasso root: Stopped hald
Oct 18 10:04:17 Picasso kernel: ahc0:A:2: Missed busfree. Lastphase =
0xe0, Curphase = 0xe4

Bye, Zahy  Gabor at Zahemszky dot HU 

-- 
#!/bin/ksh
Z='21N16I25C25E30, 40M30E33E25T15U!';IFS=' ABCDEFGHIJKLMNOPQRSTUVWXYZ
';set -- $Z;for i;{ [[ $i = ? ]]print $ibreak;[[ $i = ???
]]j=$ii=${i%?};typeset -i40 i=8#$i;print -n ${i#???};[[ $j = ???
]]print -n ${j#??} j=;typeset +i i;};IFS=' 0123456789 ';set --
$Z;for i;{ [[ $i = , ]]i=2;[[ $i = ?? ]]||typeset -l i;j=$j
$i;typeset +l i;};print $j
___
freebsd-stable@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-stable
To unsubscribe, send any mail to [EMAIL PROTECTED]