On a couple of 64 bit (mostly ia64 and ppc64) NFS client machines, the contents of remotely mountd directories would either disappear or not be seen at all. Other clients mounting the same filesystem to the same server are able to see everything... After doing some experiments there appears to be some issues with readdirplus caching. Here is what I found: If the blind client explicitly does an /bin/ls on a file in the empty directory, the file is found. If the blind client create a file in the 'empty' directory, all of the other file reappear... which make sense because the first thing nfs_create does is a nfs_zap_caches(dir); But when the "blind" client /bin/touch the directory (i.e. updates the atime) the files don't comeback but the mtime on the directory is updated... So basically it looks like there are two problems: 1) some type of race condition puts the client in this condition 2) the readdirplus cache is not being flush at the appropriate time.... I've attached a patch that I think will take care of the second issue. Unfortunately these are production machine so I have not been able to test this patch (yet). I noticed in __nfs_refresh_inode() that the invalid flag was being turned off when the WCC attrs matched up with the current cache values. Now I'm not sure if this makes sense wrt to the readdir cache because if (NFS_CACHE_ISIZE(inode) != new_size) is true AND/OR (NFS_CACHE_MTIME(inode) != new_mtime) is true we really need to flush the cache... right? So the patch does *not* turn off the invalid flag the WCC attrs match and its a directory inode... SteveD.