summaryrefslogtreecommitdiff
path: root/tmpfs/dir.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-05-28 23:57:10 +0000
committerRoland McGrath <roland@gnu.org>2002-05-28 23:57:10 +0000
commit375500381b9ebf2a44f3fe7a23c5b9aa8be7ec61 (patch)
tree5cd3132d401b0b4cc36e63081f03f51e766dcff9 /tmpfs/dir.c
parent6985c2c532aedd98cfe726091a4364998e17242b (diff)
2002-05-28 Roland McGrath <roland@frob.com>
* dir.c (diskfs_get_directs): u_int -> size_t * tmpfs.c (diskfs_append_args): unsigned -> size_t
Diffstat (limited to 'tmpfs/dir.c')
-rw-r--r--tmpfs/dir.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tmpfs/dir.c b/tmpfs/dir.c
index e8776e39..80b7a97c 100644
--- a/tmpfs/dir.c
+++ b/tmpfs/dir.c
@@ -1,5 +1,5 @@
/* Directories for tmpfs.
- Copyright (C) 2000, 2001 Free Software Foundation, Inc.
+ Copyright (C) 2000,01,02 Free Software Foundation, Inc.
This file is part of the GNU Hurd.
@@ -51,7 +51,7 @@ diskfs_dirempty (struct node *dp, struct protid *cred)
error_t
diskfs_get_directs (struct node *dp, int entry, int n,
- char **data, u_int *datacnt,
+ char **data, size_t *datacnt,
vm_size_t bufsiz, int *amt)
{
struct tmpfs_dirent *d;
@@ -198,7 +198,7 @@ diskfs_lookup_hard (struct node *dp,
else
{
mutex_unlock (&dp->lock);
- err = diskfs_cached_lookup ((int) dddn, np);
+ err = diskfs_cached_lookup ((int) dddn, dp, np);
if (type == (LOOKUP|SPEC_DOTDOT))
diskfs_nrele (dp);
@@ -220,7 +220,7 @@ diskfs_lookup_hard (struct node *dp,
ds->prevp = prevp;
if (np)
- return diskfs_cached_lookup ((ino_t) d->dn, np);
+ return diskfs_cached_lookup ((ino_t) d->dn, dp, np);
else
return 0;
}