#ifndef LITMUS_REPLICATE_LIB_H #define LITMUS_REPLICATE_LIB_H #include #include #include /* Data structure for the "master" list */ struct shared_lib_page { struct page *master_page; struct page *r_page[NR_CPUS+1]; unsigned long int master_pfn; unsigned long int r_pfn[NR_CPUS+1]; struct list_head list; }; extern struct list_head shared_lib_pages; #endif