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

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

Diff for /src/sys/kern/subr_pool.c between version 1.101.2.7 and 1.139

version 1.101.2.7, 2007/12/07 17:33:07 version 1.139, 2007/12/11 19:07:27
Line 2081  pool_cache_bootstrap(pool_cache_t pc, si
Line 2081  pool_cache_bootstrap(pool_cache_t pc, si
         /* Allocate per-CPU caches. */          /* Allocate per-CPU caches. */
         memset(pc->pc_cpus, 0, sizeof(pc->pc_cpus));          memset(pc->pc_cpus, 0, sizeof(pc->pc_cpus));
         pc->pc_ncpu = 0;          pc->pc_ncpu = 0;
         if (ncpu == 0) {          if (ncpu < 2) {
                 /* XXX For sparc: boot CPU is not attached yet. */                  /* XXX For sparc: boot CPU is not attached yet. */
                 pool_cache_cpu_init1(curcpu(), pc);                  pool_cache_cpu_init1(curcpu(), pc);
         } else {          } else {

Legend:
Removed from v.1.101.2.7  
changed lines
  Added in v.1.139

CVSweb <webmaster@jp.NetBSD.org>