| .. | .. |
|---|
| 15 | 15 | #include <linux/time.h> |
|---|
| 16 | 16 | #include <linux/namei.h> |
|---|
| 17 | 17 | #include <linux/poll.h> |
|---|
| 18 | +#include <linux/fiemap.h> |
|---|
| 18 | 19 | |
|---|
| 19 | 20 | static int bad_file_open(struct inode *inode, struct file *filp) |
|---|
| 20 | 21 | { |
|---|
| .. | .. |
|---|
| 206 | 207 | inode->i_opflags &= ~IOP_XATTR; |
|---|
| 207 | 208 | inode->i_fop = &bad_file_ops; |
|---|
| 208 | 209 | } |
|---|
| 209 | | -EXPORT_SYMBOL(make_bad_inode); |
|---|
| 210 | +EXPORT_SYMBOL_NS(make_bad_inode, ANDROID_GKI_VFS_EXPORT_ONLY); |
|---|
| 210 | 211 | |
|---|
| 211 | 212 | /* |
|---|
| 212 | 213 | * This tests whether an inode has been flagged as bad. The test uses |
|---|
| .. | .. |
|---|
| 226 | 227 | return (inode->i_op == &bad_inode_ops); |
|---|
| 227 | 228 | } |
|---|
| 228 | 229 | |
|---|
| 229 | | -EXPORT_SYMBOL(is_bad_inode); |
|---|
| 230 | +EXPORT_SYMBOL_NS(is_bad_inode, ANDROID_GKI_VFS_EXPORT_ONLY); |
|---|
| 230 | 231 | |
|---|
| 231 | 232 | /** |
|---|
| 232 | 233 | * iget_failed - Mark an under-construction inode as dead and release it |
|---|