openbsd-bugs mailing list

FromSubjectsort iconDate
Hendrickson, Kenneth
Re: Cannot Boot with Intel D201GLY Motherboard

This is a very disappointing result!!! :-(

I am trying to recover old data from a ccd device, on a
Promise hard drive controller card.

If I cannot use the Promise HDD controller card, then I
cannot recover my data.

If I must use another PCI video card, then I will not be
able to use the Promise HDD controller card, because my
motherboard has only 1 PCI slot.

So this will defeat the entire purpose!!!!!

If anybody else has any suggestions, please let me know!

Thanks,
Kenneth J. Hendrick...

Jul 4, 7:44 pm 2009
Hendrickson, Kenneth
Re: Cannot Boot with Intel D201GLY Motherboard

This will defeat the entire purpose.

I am trying to recover data from a ccd device on a very old OpenBSD
system. If I have to plug in a PCI video card, then the PCI slot
will not be available for the Promise PCI hard drive controller.
(There is only 1 PCI slot on this motherboard.)

The only way I can recover my data is with the Promise card.

So this is a very disappointing result. :-(

If anybody has any other suggestions, please let me know.

Thanks,
Kenneth J. Hendrickson

-----...

Jul 4, 7:40 pm 2009
Henry Precheur
Re: library/6182: Bad catclose declaration cause corruption ...

The following reply was made to PR library/6182; it has been noted by GNATS.

From: Henry Precheur <henry@precheur.org>
To: Mark Kettenis <mark.kettenis@xs4all.nl>
Cc: gnats@openbsd.org, bugs@cvs.openbsd.org
Subject: Re: library/6182: Bad catclose declaration cause corruption on amd64
Date: Sat, 4 Jul 2009 16:05:31 -0700

(Forgot to cc gnats@, & bugs@ sorry for the noise ...)

My bad, I completely missed the nl_types.h in _catclose.c.

But there's nontheless a problem:

...

Jul 4, 7:25 pm 2009
Hendrickson, Kenneth
FW: Cannot Boot with Intel D201GLY Motherboard

I should mention that booting from the CD install media
works, but booting after installing the OpenBSD 4.5 OS
fails.

Please help if you can.

Thank you,
Kenneth J. Hendrickson

PS I need to get this box up with OpenBSD in order to
recover some data from a ccd drive on a Pentium 266 MHz
which recently failed. It was my main file server. I
do not want to lose my data!!!!!

PPS If I cannot get this D201GLY motherboard up with
OpenBSD, I am willing to buy another motherboard, in
order to g...

Jul 4, 5:54 pm 2009
Hendrickson, Kenneth
Re: Cannot Boot with Intel D201GLY Motherboard

I should mention that booting from the CD install media
works, but booting after installing the OpenBSD 4.5 OS
fails.

Please help if you can.

Thank you,
Kenneth J. Hendrickson

PS I need to get this box up with OpenBSD in order to
recover some data from a ccd drive on a Pentium 266 MHz
which recently failed. It was my main file server. I
do not want to lose my data!!!!!

PPS If I cannot get this D201GLY motherboard up with
OpenBSD, I am willing to buy another motherboard, in
order to g...

Jul 4, 5:24 pm 2009
Hendrickson, Kenneth
Cannot Boot with Intel D201GLY Motherboard

Cannot Boot with Intel D201GLY Motherboard

Disk is 120GB PATA IDE

dmesg, fdisk output, and disklabel output are all attached
OpenBSD.PDR is also attached

I have Googled for problems/answers, and still run into a dead end.

There must be a requirement which is not stated in the documentation,
which I am not following. Please help.

(I am an experienced OpenBSD user, having used OpenBSD continuously
since 1998, and having built my own kernels/userland, and also have
built OpenBSD for embedde...

Jul 4, 5:00 pm 2009
Stuart Henderson
Re: Cannot Boot with Intel D201GLY Motherboard

some of the Atom boards seem to need APIC; if you want to stick with
4.5 then try the GENERIC.MP kernel (bsd.mp); otherwise try a -current
snapshot (where APIC is used in GENERIC as well as GENERIC.MP).

Jul 4, 6:29 pm 2009
Mark Kettenis
Re: library/6182: Bad catclose declaration cause corruption ...

The following reply was made to PR library/6182; it has been noted by GNATS.

From: Mark Kettenis <mark.kettenis@xs4all.nl>
To: henry@precheur.org
Cc: gnats@openbsd.org, bugs@cvs.openbsd.org
Subject: Re: library/6182: Bad catclose declaration cause corruption on amd64
Date: Sat, 4 Jul 2009 23:02:29 +0200 (CEST)

> Date: Sat, 4 Jul 2009 13:17:27 -0700
> From: Henry Precheur <henry@precheur.org>
> In src/lib/libc/nls/_catclose.c _catclose is declared this way:
>
> ...

Jul 4, 5:15 pm 2009
kettenis
Re: library/6182

Synopsis: Bad catclose declaration cause corruption on amd64

State-Changed-From-To: open->closed
State-Changed-By: kettenis
State-Changed-When: Sat Jul 4 15:02:52 MDT 2009
State-Changed-Why:
Reporter is confused by limitations of GCC/GDB.

Jul 4, 5:03 pm 2009
Henry Precheur
library/6182: Bad catclose declaration cause corruption on a...

System : OpenBSD 4.6
Details : OpenBSD 4.6 (GENERIC.MP) #67: Wed Jul 1 15:27:44 MDT 2009
deraadt@amd64.openbsd.org:/usr/src/sys/arch/amd64/compile/GENERIC.MP

Architecture: OpenBSD.amd64
In src/lib/libc/nls/_catclose.c _catclose is declared this way:

extern int _catclose(nl_catd);

nl_catd is a type, but since the type is not declared in _catclose.c,
the compiler assumes that nl_catd is an integer. In reality nl_catd is a
pointer type. Since pointers and integers have a differ...

Jul 4, 4:17 pm 2009
Mark Kettenis
Re: library/6182: Bad catclose declaration cause corruption ...

Eh, nl_catd is declared in <nl_types.h>, which is included right

You're fooled by the fact that GCC generates incomplete debug
information. GDB managed to stop inside the function prologue and at
that point the stack slot that is going to hold the local copy of the
catd argument isn't filled yet. If you step (2 times) to get out of
the prologue and into the body of the function, you'll see that the
catd value is the same after all.

Cheers,

Mark

Jul 4, 5:02 pm 2009
Henry Precheur
Re: library/6182: Bad catclose declaration cause corruption ...

(Forgot to cc gnats@, & bugs@ sorry for the noise ...)

My bad, I completely missed the nl_types.h in _catclose.c.

But there's nontheless a problem:

It looks like load_msgcat is leaking FD. It opens
/usr/share/nls/C/libc.cat and right after the mmap(2), the call to
close(2) fails. This doesn't happen all the time though.

(gdb) r bug.py
Starting program: /home/henry/py3k/python bug.py
before execv^C
Program received signal SIGINT, Interrupt.
0x0000000208445d7a in poll () from /usr/lib/li...

Jul 4, 7:05 pm 2009
AGLOBAL
GULER KAZMACI ILE YONETICILER ICIN GUZEL

18 TEMMUZ 2009
]STANBUL

G\LER KAZMACI ]LE,
YVNET]C]LER ]G]N;
G\ZEL KONU^MA VE ]LET]^]M BECER]LER]

Sertifika Program}
Ref:DGK7]

AMAG
Konu~mak "iki yan} keskin b}gakt}r".
Eper dili d|zg|n kullan}yorsan}z, sesiniz epitimli olup kar~} taraf}n kulap}na
g|zel geliyorsa ve ileti~im kurallar}na uygun konu~uyorsan}z, i~inizde ve
ili~kilerinizde daha ba~ar}l} oluyorsunuz.
Ama eper dili, sesinizi ve ileti~im gereklerini yanl}~ kullan}yorsan}z,
i~inizde ve ili~kilerinizde ba~ar}s}zl}klar oldupu gibi,...

Jul 4, 1:10 pm 2009
Juha Erkkila
Re: user/6157: X crashes on startup (libpciaccess problem, m...

The following reply was made to PR user/6157; it has been noted by GNATS.

From: Juha Erkkila <je@turnipsi.no-ip.org>
To: Mark Kettenis <mark.kettenis@xs4all.nl>
Cc: gnats@openbsd.org
Subject: Re: user/6157: X crashes on startup (libpciaccess problem, mach64 driver)
Date: Sat, 4 Jul 2009 16:02:02 +0300

On Sat, Jul 04, 2009 at 12:26:15PM +0200, Mark Kettenis wrote:
> Can you send the pcidump -v and pcidump -xx output for that machine?

$ pcidump -v
Domain /dev/pci0:
0:0:0:...

Jul 4, 9:15 am 2009
Mark Kettenis
Re: user/6157: X crashes on startup (libpciaccess problem, m...

The following reply was made to PR user/6157; it has been noted by GNATS.

From: Mark Kettenis <mark.kettenis@xs4all.nl>
To: je@turnipsi.no-ip.org
Cc: gnats@openbsd.org
Subject: Re: user/6157: X crashes on startup (libpciaccess problem, mach64 driver)
Date: Sat, 4 Jul 2009 12:26:15 +0200 (CEST)

Can you send the pcidump -v and pcidump -xx output for that machine?

Jul 4, 6:45 am 2009
kettenis
Re: kernel/6166

Synopsis: System hung before completing large pkg_delete job

State-Changed-From-To: open->closed
State-Changed-By: kettenis
State-Changed-When: Sat Jul 4 04:30:01 MDT 2009
State-Changed-Why:
This kernel is from a period where some problematic changes wre in the tree.
These changes have since been reverted.
Please try a more recent snapshot.

Jul 4, 6:31 am 2009
Iain Morgan
Hang on boot w/ 4.5/amd64

SENDBUG: -*- sendbug -*-
SENDBUG: Lines starting with `SENDBUG' will be removed automatically.
SENDBUG:
SENDBUG: Choose from the following categories:
SENDBUG:
SENDBUG: system user library documentation kernel alpha amd64 arm hppa i386
m68k m88k mips64 powerpc sh sparc sparc64 vax
SENDBUG:
SENDBUG:
To: gnats@openbsd.org
Subject: 4.5/amd64 hang on boot
From: imorgan4246@gmail.com
Cc: imorgan4246@gmail.com
Reply-To: imorgan4246@gmail.com
System : OpenBSD 4.4
Details : OpenBSD 4.4 (GE...

Jul 4, 2:06 am 2009
Stuart Henderson Jul 4, 5:28 am 2009
previous daytodaynext day
July 3, 2009July 4, 2009July 5, 2009