/* ext2fs_lookup.c */
/*
* Vnode op for reading directories.
*
* Convert the on-disk entries to <sys/dirent.h> entries.
* the problem is that the conversion will blow up some entries by four bytes,
* so it can't be done in place. This is too bad. Right now the conversion is
* done entry by entry, the converted entry is sent via uiomove.
*
* XXX allocate a buffer, convert as many entries as possible, then send
* the whole buffer to uiomove
*/