summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorMike Shaver <shaver@ingenia.com>1997-09-13 23:49:30 +0000
committerMike Shaver <shaver@ingenia.com>1997-09-13 23:49:30 +0000
commit6c124b01fef359d767b7872232eccfd55f69b05c (patch)
tree88e2cba9807dd8908809eca57ad0a3a9b6b899ff /arch
parent0c9824af05b775b18bff274f3a07d174c718bae1 (diff)
Make irix_*getdents* track the readdir signature changes.
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/sysirix.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/mips/kernel/sysirix.c b/arch/mips/kernel/sysirix.c
index f64dc91d0..011a4e5cc 100644
--- a/arch/mips/kernel/sysirix.c
+++ b/arch/mips/kernel/sysirix.c
@@ -1,4 +1,4 @@
-/* $Id: sysirix.c,v 1.5 1997/08/10 22:24:11 shaver Exp $
+/* $Id: sysirix.c,v 1.6 1997/08/11 22:24:56 shaver Exp $
* sysirix.c: IRIX system call emulation.
*
* Copyright (C) 1996 David S. Miller
@@ -2071,7 +2071,7 @@ asmlinkage int irix_ngetdents(unsigned int fd, void * dirent, unsigned int count
buf.count = count;
buf.error = 0;
- error = file->f_op->readdir(inode, file, &buf, irix_filldir32);
+ error = file->f_op->readdir(file, &buf, irix_filldir32);
if (error < 0)
goto out;
lastdirent = buf.previous;
@@ -2183,7 +2183,7 @@ asmlinkage int irix_getdents64(int fd, void *dirent, int cnt)
buf.previous = NULL;
buf.count = cnt;
buf.error = 0;
- error = file->f_op->readdir(inode, file, &buf, irix_filldir64);
+ error = file->f_op->readdir(file, &buf, irix_filldir64);
if (error < 0)
goto out;
lastdirent = buf.previous;
@@ -2246,7 +2246,7 @@ asmlinkage int irix_ngetdents64(int fd, void *dirent, int cnt, int *eob)
buf.previous = NULL;
buf.count = cnt;
buf.error = 0;
- error = file->f_op->readdir(inode, file, &buf, irix_filldir64);
+ error = file->f_op->readdir(file, &buf, irix_filldir64);
if (error < 0)
goto out;
lastdirent = buf.previous;