Re: Linux ls fails on DEVFS /dev

2001-08-07 Thread Terry Lambert
Michael Reifenberger wrote: linux ls fails on DEVFS /dev because linux_getdents fails because linux_getdents uses VOP_READDIR( ..., ncookies, cookies ) instead of VOP_READDIR( ..., NULL, NULL ) because it seems to need the offsets for linux_dirent and sizeof(dirent) != sizeof(linux_dirent

Linux ls fails on DEVFS /dev

2001-08-05 Thread Michael Reifenberger
Hi, linux ls fails on DEVFS /dev because linux_getdents fails because linux_getdents uses VOP_READDIR( ..., ncookies, cookies ) instead of VOP_READDIR( ..., NULL, NULL ) because it seems to need the offsets for linux_dirent and sizeof(dirent) != sizeof(linux_dirent)... If I eliminate the usage

Re: Linux ls fails on DEVFS /dev

2001-08-05 Thread Poul-Henning Kamp
In message 20010805104350.A1188-10@nihil, Michael Reifenberger writes: Hi, linux ls fails on DEVFS /dev because linux_getdents fails because linux_getdents uses VOP_READDIR( ..., ncookies, cookies ) instead of VOP_READDIR( ..., NULL, NULL ) because it seems to need the offsets

Re: Linux ls fails on DEVFS /dev

2001-08-05 Thread Robert Watson
FreeBSD Core Team, TrustedBSD Project [EMAIL PROTECTED] NAI Labs, Safeport Network Services On Sun, 5 Aug 2001, Michael Reifenberger wrote: Hi, linux ls fails on DEVFS /dev because linux_getdents fails because linux_getdents uses VOP_READDIR( ..., ncookies, cookies ) instead