+/*
+ * Each page entered on the inactive queue obtains a ticket from a
+ * particular ticket roll. Pages granted tickets from a particular
+ * roll generally flow through the queue as a group. In this way when a
+ * page with a ticket from a particular roll is pulled from the top of the
+ * queue it is extremely likely that the pages near the top will have tickets
+ * from the same or adjacent rolls. In this way the proximity to the top
+ * of the queue can be loosely ascertained by determining the identity of
+ * the roll the pages ticket came from.
+ */
+
+
+extern int vm_page_ticket_roll;
+extern int vm_page_ticket;
+
+#define VM_PAGE_TICKETS_IN_ROLL 512
+#define VM_PAGE_TICKET_ROLL_IDS 16
+