[BACK]Return to smb_rq.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / netsmb

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

Diff for /src/sys/netsmb/Attic/smb_rq.c between version 1.27 and 1.28

version 1.27, 2005/12/11 12:25:16 version 1.28, 2007/03/12 18:18:36
Line 59  MODULE_DEPEND(netsmb, libmchain, 1, 1, 1
Line 59  MODULE_DEPEND(netsmb, libmchain, 1, 1, 1
   
 #ifdef __NetBSD__  #ifdef __NetBSD__
 POOL_INIT(smbrq_pool, sizeof(struct smb_rq), 0, 0, 0, "smbrqpl",  POOL_INIT(smbrq_pool, sizeof(struct smb_rq), 0, 0, 0, "smbrqpl",
     &pool_allocator_nointr);      &pool_allocator_nointr, IPL_NONE);
 POOL_INIT(smbt2rq_pool, sizeof(struct smb_t2rq), 0, 0, 0, "smbt2pl",  POOL_INIT(smbt2rq_pool, sizeof(struct smb_t2rq), 0, 0, 0, "smbt2pl",
     &pool_allocator_nointr);      &pool_allocator_nointr, IPL_NONE);
 #endif  #endif
   
 static int  smb_rq_init(struct smb_rq *, struct smb_connobj *, u_char,  static int  smb_rq_init(struct smb_rq *, struct smb_connobj *, u_char,
Line 78  int
Line 78  int
 smb_rqinit(void)  smb_rqinit(void)
 {  {
         pool_init(&smbrq_pool, sizeof(struct smb_rq), 0, 0, 0,          pool_init(&smbrq_pool, sizeof(struct smb_rq), 0, 0, 0,
                 "smbrqpl", &pool_allocator_nointr);                  "smbrqpl", &pool_allocator_nointr, IPL_NONE);
         pool_init(&smbt2rq_pool, sizeof(struct smb_t2rq), 0, 0, 0,          pool_init(&smbt2rq_pool, sizeof(struct smb_t2rq), 0, 0, 0,
                 "smbt2pl", &pool_allocator_nointr);                  "smbt2pl", &pool_allocator_nointr, IPL_NONE);
         return (0);          return (0);
 }  }
 #endif  #endif

Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

CVSweb <webmaster@jp.NetBSD.org>