nlm: Ensure callback code also checks that the files match
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / ramfs.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX_RAMFS_H
2#define _LINUX_RAMFS_H
3
454abafe 4struct inode *ramfs_get_inode(struct super_block *sb, const struct inode *dir,
632861f0 5 umode_t mode, dev_t dev);
3c26ff6e
AV
6extern struct dentry *ramfs_mount(struct file_system_type *fs_type,
7 int flags, const char *dev_name, void *data);
1da177e4 8
250297ed
AM
9#ifdef CONFIG_MMU
10static inline int
11ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize)
12{
13 return 0;
14}
15#else
4b19de6d 16extern int ramfs_nommu_expand_for_mapping(struct inode *inode, size_t newsize);
642fb4d1
DH
17extern unsigned long ramfs_nommu_get_unmapped_area(struct file *file,
18 unsigned long addr,
19 unsigned long len,
20 unsigned long pgoff,
21 unsigned long flags);
22
23extern int ramfs_nommu_mmap(struct file *file, struct vm_area_struct *vma);
24#endif
25
4b6f5d20 26extern const struct file_operations ramfs_file_operations;
f0f37e2f 27extern const struct vm_operations_struct generic_file_vm_ops;
07f3f05c 28extern int __init init_rootfs(void);
1da177e4 29
da5e4ef7
PK
30int ramfs_fill_super(struct super_block *sb, void *data, int silent);
31
1da177e4 32#endif