2013-03-19 06:14:59 +00:00
|
|
|
#ifndef __SHMEM_FS_H
|
|
|
|
#define __SHMEM_FS_H
|
|
|
|
|
2014-12-27 15:42:08 +00:00
|
|
|
#include <linux/file.h>
|
|
|
|
|
2013-03-19 06:14:59 +00:00
|
|
|
|
|
|
|
struct file *shmem_file_setup(const char *name, loff_t size, unsigned long flags);
|
|
|
|
struct page *shmem_read_mapping_page_gfp(struct file *filep,
|
|
|
|
pgoff_t index, gfp_t gfp);
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|