Re: 5.2-BETA: giving up on 4 buffers (ata)

2003-11-27 Thread Enache Adrian
On Thu, Nov 27, 2003 a.d., Bruce Evans wrote: This is a known problem for nearly three months now (See PR 56675). It happens to me every time I shut down the system if i don't unmount my (read-only) ext2 file systems manually. I'm not sure if the problem is known for the read-only case.

Re: [PATCH] libc_r bug: successful close(2) sets errno to ENOTTY

2003-11-25 Thread Enache Adrian
On Mon, Nov 24, 2003 a.d., Jacques A. Vidrine wrote: The application is broken. You must only check errno if you get an error indication from the library call. Sorry, but I don't see your point. I know when to check for errno. If you took the little illustrating program for a real life example

[PATCH] libc_r bug: successful close(2) sets errno to ENOTTY

2003-11-23 Thread Enache Adrian
$ cc close.c -o close ./close 0 0 $ cc close.c -lc_r -o close ./close 0 25 $ cat close.c #include errno.h main() { int fd = open(/dev/null, 1); printf(%d\n, errno); close(fd); printf(%d\n, errno); } This confuses rather badly applications which assume errno is

Re: HEADS UP: /bin and /sbin are now dynamically linked

2003-11-23 Thread Enache Adrian
On Sat, Nov 22, 2003 a.d., M. Warner Losh wrote: Grepping seems unsatisfying to find out which keys are used. Do you have a list? Believe it or not, vi only needs 'cm' :-) Regards, Adi ___ [EMAIL PROTECTED] mailing list

[PATCH] /bin/sh buglet

2003-09-06 Thread Enache Adrian
$ a=foo $ : $((a=15)) arithmetic expression: variable assignment error: a=15 $ echo $a 15 --- /usr/src/bin/sh/arith.y Thu Sep 4 23:31:14 2003 +++ ./arith.y Sun Sep 7 01:04:06 2003 @@ -155,7 +155,7 @@ } | ARITH_VAR ARITH_ASSIGN expr { -

Re: Regarding VMWare 3.0 Port and an odd bug that i've been gettingover and over again...

2003-07-12 Thread Enache Adrian
On Fri, Jul 11, 2003 at 09:15:48PM -0700, Scott M. Likens wrote: Jul 11 16:45:20: ide0:0|NOT_IMPLEMENTED F(831):712 Jul 11 16:45:20: ide0:0|AIO: ide0:0, Process 60017 panic. Jul 11 16:45:20: ide0:0|AIOSlave: Exit after panic. Jul 11 16:45:20: VMX|AIO: NOT_IMPLEMENTED F(831):712 Jul 11

Re: ReiserFS

2003-06-22 Thread Enache Adrian
On Sun, Jun 22, 2003 at 07:37:12PM +0200, Michael Nottebrock wrote: Content-Description: signed data On Sunday 22 June 2003 18:17, Simon Watson wrote: Maybe I should have clarified this, I'm only after readonly support - just enough to be able to successfully move my data over to UFS. If

Re: Linux emulation busted

2003-03-24 Thread Enache Adrian
On Mon, Mar 24, 2003 at 08:40:55AM -0700, M. Warner Losh wrote: I had a working Linux world on my laptop. I upgraded my kernel and acroread4 stopped working. Now all I get is: Is acroread4 multithreaded ? Because since about 2 months all multithreaded linux binaries have stopped working for

Re: Shell programming 101: Is this an expr(1) bug ?

2003-02-18 Thread Enache Adrian
On Tue, Feb 18, 2003 at 12:39:22PM +0100, Poul-Henning Kamp wrote: Running: #!/bin/sh set -ex for p in ad2 ad0 ad1 do a0=`expr $p : '^ad\([0-9]\)$'` done I get: syv# sh _ + expr ad2 : ^ad\([0-9]\)$ + a0=2 +

multithreaded binaries dump core in linux emulation

2003-02-18 Thread Enache Adrian
I'm using a very recent FreeBSD-current ( ~ 4 days ago ). Since I upgraded my linux installation to RH 8.0 ( ~ 2 months ), I'm not able to run multithreaded binaries under linux emulation any more. ( I hope you understand me - I don't want to install another set of native mozilla, ooffice and

Re: add ext2fs to the module list in modules/Makefile

2003-01-29 Thread Enache Adrian
On Tue, Jan 28, 2003 at 09:54:30PM -0800, David O'Brien wrote: On Mon, Jan 27, 2003 at 11:14:41PM +0200, Enache Adrian wrote: please add ext2fs to the modules list in src/sys/modules/Makefile. It is already there. :-) Just wrapped by WANT_EXT2FS_MODULE. So you need to add that to your

Re: VOP_STRATEGY on VCHR

2003-01-28 Thread Enache Adrian
On Tue, Jan 28, 2003 at 09:38:19AM +0100, [EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED], Enache Adrian writes: I get this when I try to access for the first time a file on an ext2fs filesystem. VOP_STRATEGY on VCHR Please try this patch and let me know if it helps ? Of course

add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Enache Adrian
please add ext2fs to the modules list in src/sys/modules/Makefile. my /usr/src tree resides on an ext2fs partition and the fact that ext2fs.ko isn't built causes me trouble when making installworld just after rebooting the new kernel. Thanks Regards Adi ---

VOP_STRATEGY on VCHR

2003-01-27 Thread Enache Adrian
I get this when I try to access for the first time a file on an ext2fs filesystem. VOP_STRATEGY on VCHR : 0xc1c23000: tag devfs, type VCHR, usecount 2, writecount 0, refcount 3, backtrace(c02fe7bd,c1c23000,0,c87eb938,c0166ed8) at backtrace+0x8

boot delay when testing for ata devices

2003-01-27 Thread Enache Adrian
FreeBSD used to have an irritating boot delay in 4.4. It was gone in ~4.6, never reappeared in -STABLE, but is there in -CURRENT. (I've seen it also mentioned in some vmware documentation). Applying this patch fixes it: --- /arc/freebsd/src/sys/dev/ata/ata-all.c Sun Jan 19 23:54:13 2003 +++