blob: 98bfb97071443cc7e0b23b3f2de66c677bd0e2d0 (
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 *master_page;
struct page *r_page;
unsigned long master_pfn;
unsigned long r_pfn;
struct list_head list;
};
extern struct list_head shared_lib_pages;
#endif
|