[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.151.2.1 and 1.152

version 1.151.2.1, 2008/03/24 07:16:14 version 1.152, 2008/03/02 12:19:58
Line 995  pool_get(struct pool *pp, int flags)
Line 995  pool_get(struct pool *pp, int flags)
   
 #endif /* DIAGNOSTIC */  #endif /* DIAGNOSTIC */
 #ifdef LOCKDEBUG  #ifdef LOCKDEBUG
         if (flags & PR_WAITOK) {          if (flags & PR_WAITOK)
                 ASSERT_SLEEPABLE();                  ASSERT_SLEEPABLE(NULL, "pool_get(PR_WAITOK)");
         }  
 #endif  #endif
   
         mutex_enter(&pp->pr_lock);          mutex_enter(&pp->pr_lock);
Line 2522  pool_cache_get_paddr(pool_cache_t pc, in
Line 2521  pool_cache_get_paddr(pool_cache_t pc, in
         int s;          int s;
   
 #ifdef LOCKDEBUG  #ifdef LOCKDEBUG
         if (flags & PR_WAITOK) {          if (flags & PR_WAITOK)
                 ASSERT_SLEEPABLE();                  ASSERT_SLEEPABLE(NULL, "pool_cache_get(PR_WAITOK)");
         }  
 #endif  #endif
   
         cc = pool_cache_cpu_enter(pc, &s);          cc = pool_cache_cpu_enter(pc, &s);
Line 3064  found:
Line 3062  found:
                                         snprintf(cpucachestr,                                          snprintf(cpucachestr,
                                             sizeof(cpucachestr),                                              sizeof(cpucachestr),
                                             "cached by CPU %u",                                              "cached by CPU %u",
                                             ci->ci_index);                                              (u_int)ci->ci_cpuid);
                                         goto print;                                          goto print;
                                 }                                  }
                         }                          }

Legend:
Removed from v.1.151.2.1  
changed lines
  Added in v.1.152

CVSweb <webmaster@jp.NetBSD.org>