* Roland McGrath writes:
> CVSROOT:      /cvsroot/hurd
> Module name:  hurd
> Changes by:   Roland McGrath <[EMAIL PROTECTED]> 02/05/28 19:57:10

> Modified files:
>       tmpfs          : dir.c tmpfs.c 

> Log message:
>       2002-05-28  Roland McGrath  <[EMAIL PROTECTED]>
        
>       * dir.c (diskfs_get_directs): u_int -> size_t
>       * tmpfs.c (diskfs_append_args): unsigned -> size_t

Since when does diskfs_cached_lookup accept three parameters? From
libdiskfs/diskfs.h.
error_t diskfs_cached_lookup (int cache_id, struct node **npp);

Snipet from the dir.c patch:
@@ -198,7 +198,7 @@
       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);

-- 
Alfred M. Szmidt

_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to