summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrmacklem <rmacklem@FreeBSD.org>2015-06-06 20:54:41 +0000
committerrmacklem <rmacklem@FreeBSD.org>2015-06-06 20:54:41 +0000
commita7dc7c7729eed7bed02eea99125843731f9a77a4 (patch)
treee013161274a0f51c1d562e5a4d027a91acc7376e
parent51c06666a902e195ca88afc6b333748c1d7ad639 (diff)
downloadFreeBSD-src-a7dc7c7729eed7bed02eea99125843731f9a77a4.zip
FreeBSD-src-a7dc7c7729eed7bed02eea99125843731f9a77a4.tar.gz
MFC: r283330
The NFS client generated directory block(s) with d_fileno == 0 so that it would not return less data than requested. Since returning less directory data than requested is not a problem for FreeBSD and even UFS no longer returns directory structures with d_fileno == 0, this patch stops the client from doing this. Although entries with d_fileno == 0 should not be a problem, the man pages no longer document that these entries should be ignored, so there was a concern that these entries might be an issue in the future.
-rw-r--r--sys/fs/nfsclient/nfs_clrpcops.c38
1 files changed, 0 insertions, 38 deletions
diff --git a/sys/fs/nfsclient/nfs_clrpcops.c b/sys/fs/nfsclient/nfs_clrpcops.c
index 8a83802..f8b6775 100644
--- a/sys/fs/nfsclient/nfs_clrpcops.c
+++ b/sys/fs/nfsclient/nfs_clrpcops.c
@@ -3070,25 +3070,6 @@ nfsrpc_readdir(vnode_t vp, struct uio *uiop, nfsuint64 *cookiep,
*eofp = eof;
}
- /*
- * Add extra empty records to any remaining DIRBLKSIZ chunks.
- */
- while (uio_uio_resid(uiop) > 0 && ((size_t)(uio_uio_resid(uiop))) != tresid) {
- dp = (struct dirent *) CAST_DOWN(caddr_t, uio_iov_base(uiop));
- dp->d_type = DT_UNKNOWN;
- dp->d_fileno = 0;
- dp->d_namlen = 0;
- dp->d_name[0] = '\0';
- tl = (u_int32_t *)&dp->d_name[4];
- *tl++ = cookie.lval[0];
- *tl = cookie.lval[1];
- dp->d_reclen = DIRBLKSIZ;
- uio_iov_base_add(uiop, DIRBLKSIZ);
- uio_iov_len_add(uiop, -(DIRBLKSIZ));
- uio_uio_resid_add(uiop, -(DIRBLKSIZ));
- uiop->uio_offset += DIRBLKSIZ;
- }
-
nfsmout:
if (nd->nd_mrep != NULL)
mbuf_freem(nd->nd_mrep);
@@ -3563,25 +3544,6 @@ nfsrpc_readdirplus(vnode_t vp, struct uio *uiop, nfsuint64 *cookiep,
*eofp = eof;
}
- /*
- * Add extra empty records to any remaining DIRBLKSIZ chunks.
- */
- while (uio_uio_resid(uiop) > 0 && uio_uio_resid(uiop) != tresid) {
- dp = (struct dirent *)uio_iov_base(uiop);
- dp->d_type = DT_UNKNOWN;
- dp->d_fileno = 0;
- dp->d_namlen = 0;
- dp->d_name[0] = '\0';
- tl = (u_int32_t *)&dp->d_name[4];
- *tl++ = cookie.lval[0];
- *tl = cookie.lval[1];
- dp->d_reclen = DIRBLKSIZ;
- uio_iov_base_add(uiop, DIRBLKSIZ);
- uio_iov_len_add(uiop, -(DIRBLKSIZ));
- uio_uio_resid_add(uiop, -(DIRBLKSIZ));
- uiop->uio_offset += DIRBLKSIZ;
- }
-
nfsmout:
if (nd->nd_mrep != NULL)
mbuf_freem(nd->nd_mrep);
OpenPOWER on IntegriCloud