2013-03-19 07:14:59 +01:00
|
|
|
#ifndef __SHMEM_FS_H
|
|
|
|
#define __SHMEM_FS_H
|
|
|
|
|
2014-12-27 16:42:08 +01:00
|
|
|
#include <linux/file.h>
|
|
|
|
|
2013-03-19 07:14:59 +01: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
|