aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/replicate_lib.h
blob: 480ce4631529452d66ce9b2c89c124da061baf2e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef LITMUS_REPLICATE_LIB_H
#define LITMUS_REPLICATE_LIB_H

#include <linux/list.h>
#include <linux/mm_types.h>
#include <linux/mm_inline.h>

struct shared_lib_page {
	struct page *p_page;
	struct page *r_page;
	unsigned long p_pfn;
	unsigned long r_pfn;
	struct list_head list;
};

extern struct list_head shared_lib_pages;

#endif