[BACK]Return to namei.h CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / sys

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/sys/sys/namei.h between version 1.22 and 1.23

version 1.22, 2001/09/24 06:01:13 version 1.23, 2001/10/17 23:33:29
Line 178  struct namecache {
Line 178  struct namecache {
 #include <sys/pool.h>  #include <sys/pool.h>
   
 extern struct pool pnbuf_pool;          /* pathname buffer pool */  extern struct pool pnbuf_pool;          /* pathname buffer pool */
   extern struct pool_cache pnbuf_cache;   /* pathname buffer cache */
   
 #define PNBUF_GET()     pool_get(&pnbuf_pool, PR_WAITOK)  #define PNBUF_GET()     pool_cache_get(&pnbuf_cache, PR_WAITOK)
 #define PNBUF_PUT(pnb)  pool_put(&pnbuf_pool, (pnb))  #define PNBUF_PUT(pnb)  pool_cache_put(&pnbuf_cache, (pnb))
   
 int     namei __P((struct nameidata *ndp));  int     namei __P((struct nameidata *ndp));
 int     lookup __P((struct nameidata *ndp));  int     lookup __P((struct nameidata *ndp));

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23

CVSweb <webmaster@jp.NetBSD.org>