diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-01 19:28:34 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-01 19:28:34 +0000 |
commit | 7c7934401f1765f15af8ae845f35703460e6631a (patch) | |
tree | 966e3a488a01968647240b2cfab924576fd66404 /tmpfs | |
parent | 6207b2de602778082d6b4cea87b0ab89908a85a9 (diff) |
finish reverting unintentional checkin
Diffstat (limited to 'tmpfs')
-rw-r--r-- | tmpfs/dir.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmpfs/dir.c b/tmpfs/dir.c index 8dea019a..411f43cc 100644 --- a/tmpfs/dir.c +++ b/tmpfs/dir.c @@ -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, dp, np); + return diskfs_cached_lookup ((ino_t) d->dn, np); else return 0; } |