summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/compat/linux/linux_file.c')
-rw-r--r--sys/compat/linux/linux_file.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/sys/compat/linux/linux_file.c b/sys/compat/linux/linux_file.c
index 96af89c..64fdb01 100644
--- a/sys/compat/linux/linux_file.c
+++ b/sys/compat/linux/linux_file.c
@@ -255,7 +255,6 @@ getdents_common(struct thread *td, struct linux_getdents64_args *args,
struct file *fp;
struct uio auio;
struct iovec aiov;
- struct vattr va;
off_t off;
struct l_dirent linux_dirent;
struct l_dirent64 linux_dirent64;
@@ -277,11 +276,6 @@ getdents_common(struct thread *td, struct linux_getdents64_args *args,
return (EINVAL);
}
- if ((error = VOP_GETATTR(vp, &va, td->td_ucred, td))) {
- fdrop(fp, td);
- return (error);
- }
-
nbytes = args->count;
if (nbytes == 1) {
/* readdir(2) case. Always struct dirent. */
OpenPOWER on IntegriCloud