[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.203 and 1.203.2.1

version 1.203, 2014/06/13 19:09:07 version 1.203.2.1, 2016/03/06 17:32:02
Line 2814  pool_sysctl(SYSCTLFN_ARGS)
Line 2814  pool_sysctl(SYSCTLFN_ARGS)
                                 cc = pc->pc_cpus[i];                                  cc = pc->pc_cpus[i];
                                 if (cc == NULL)                                  if (cc == NULL)
                                         continue;                                          continue;
                                 data.pr_cache_nmiss_pcpu = cc->cc_misses;                                  data.pr_cache_nmiss_pcpu += cc->cc_misses;
                                 data.pr_cache_nhit_pcpu = cc->cc_hits;                                  data.pr_cache_nhit_pcpu += cc->cc_hits;
                         }                          }
                 } else {                  } else {
                         data.pr_cache_meta_size = 0;                          data.pr_cache_meta_size = 0;

Legend:
Removed from v.1.203  
changed lines
  Added in v.1.203.2.1

CVSweb <webmaster@jp.NetBSD.org>