Merge pull request #779 from trapexit/nfs-readdir

temporary fix for short readdirs on NFS
This commit is contained in:
trapexit 2020-07-08 14:25:37 -04:00 committed by GitHub
commit b1f30b703f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3498,7 +3498,7 @@ fuse_lib_readdir(fuse_req_t req_,
pthread_mutex_lock(&dh->lock);
rv = 0;
if(off_ == 0)
if((off_ == 0) || (d->data_len == 0))
rv = readdir_fill(f,req_,d,&fi);
if(rv)
@ -3544,7 +3544,7 @@ fuse_lib_readdir_plus(fuse_req_t req_,
pthread_mutex_lock(&dh->lock);
rv = 0;
if(off_ == 0)
if((off_ == 0) || (d->data_len == 0))
rv = readdir_plus_fill(f,req_,d,&fi);
if(rv)