aboutsummaryrefslogtreecommitdiffstats
path: root/fs/readdir.c
diff options
context:
space:
mode:
authorHeiko Carstens <heiko.carstens@de.ibm.com>2009-01-14 08:14:23 -0500
committerHeiko Carstens <heiko.carstens@de.ibm.com>2009-01-14 08:15:26 -0500
commit20f37034fb966a1c35894f9fe529fda0b6440101 (patch)
tree5394f0a3e4046567fb9b271ee1834aaff09467eb /fs/readdir.c
parent3cdad42884bbd95d5aa01297e8236ea1bad70053 (diff)
[CVE-2009-0029] System call wrappers part 21
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Diffstat (limited to 'fs/readdir.c')
-rw-r--r--fs/readdir.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/readdir.c b/fs/readdir.c
index 8b4c2a0051a6..cf6a0e39819a 100644
--- a/fs/readdir.c
+++ b/fs/readdir.c
@@ -187,7 +187,8 @@ efault:
187 return -EFAULT; 187 return -EFAULT;
188} 188}
189 189
190asmlinkage long sys_getdents(unsigned int fd, struct linux_dirent __user * dirent, unsigned int count) 190SYSCALL_DEFINE3(getdents, unsigned int, fd,
191 struct linux_dirent __user *, dirent, unsigned int, count)
191{ 192{
192 struct file * file; 193 struct file * file;
193 struct linux_dirent __user * lastdirent; 194 struct linux_dirent __user * lastdirent;
@@ -268,7 +269,8 @@ efault:
268 return -EFAULT; 269 return -EFAULT;
269} 270}
270 271
271asmlinkage long sys_getdents64(unsigned int fd, struct linux_dirent64 __user * dirent, unsigned int count) 272SYSCALL_DEFINE3(getdents64, unsigned int, fd,
273 struct linux_dirent64 __user *, dirent, unsigned int, count)
272{ 274{
273 struct file * file; 275 struct file * file;
274 struct linux_dirent64 __user * lastdirent; 276 struct linux_dirent64 __user * lastdirent;