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

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

Diff for /src/sys/uvm/uvm_pdpolicy_clockpro.c between version 1.2.2.2 and 1.3

version 1.2.2.2, 2006/12/10 07:19:34 version 1.3, 2006/10/09 12:50:39
Line 51  __KERNEL_RCSID(0, "$NetBSD$");
Line 51  __KERNEL_RCSID(0, "$NetBSD$");
 #include <sys/proc.h>  #include <sys/proc.h>
 #include <sys/systm.h>  #include <sys/systm.h>
 #include <sys/kernel.h>  #include <sys/kernel.h>
   #include <sys/vnode.h>
 #include <sys/hash.h>  #include <sys/hash.h>
   
 #include <uvm/uvm.h>  #include <uvm/uvm.h>
Line 280  clockpro_insert_tail(struct clockpro_sta
Line 281  clockpro_insert_tail(struct clockpro_sta
         pageq_insert_tail(q, pg);          pageq_insert_tail(q, pg);
 }  }
   
 static void  static void __unused
 clockpro_insert_head(struct clockpro_state *s, int qidx, struct vm_page *pg)  clockpro_insert_head(struct clockpro_state *s, int qidx, struct vm_page *pg)
 {  {
         pageq_t *q = clockpro_queue(s, qidx);          pageq_t *q = clockpro_queue(s, qidx);
Line 1078  uvmpdpol_pagedequeue(struct vm_page *pg)
Line 1079  uvmpdpol_pagedequeue(struct vm_page *pg)
                 return;                  return;
         }          }
         clockpro_pagedequeue(pg);          clockpro_pagedequeue(pg);
         pg->pqflags &= ~(PQ_INITIALREF|PQ_SPECULATIVE);          pg->pqflags &= ~PQ_SPECULATIVE;
 }  }
   
 void  void

Legend:
Removed from v.1.2.2.2  
changed lines
  Added in v.1.3

CVSweb <webmaster@jp.NetBSD.org>