hc
2023-12-08 01573e231f18eb2d99162747186f59511f56b64d
kernel/fs/bad_inode.c
....@@ -15,6 +15,7 @@
1515 #include <linux/time.h>
1616 #include <linux/namei.h>
1717 #include <linux/poll.h>
18
+#include <linux/fiemap.h>
1819
1920 static int bad_file_open(struct inode *inode, struct file *filp)
2021 {
....@@ -206,7 +207,7 @@
206207 inode->i_opflags &= ~IOP_XATTR;
207208 inode->i_fop = &bad_file_ops;
208209 }
209
-EXPORT_SYMBOL(make_bad_inode);
210
+EXPORT_SYMBOL_NS(make_bad_inode, ANDROID_GKI_VFS_EXPORT_ONLY);
210211
211212 /*
212213 * This tests whether an inode has been flagged as bad. The test uses
....@@ -226,7 +227,7 @@
226227 return (inode->i_op == &bad_inode_ops);
227228 }
228229
229
-EXPORT_SYMBOL(is_bad_inode);
230
+EXPORT_SYMBOL_NS(is_bad_inode, ANDROID_GKI_VFS_EXPORT_ONLY);
230231
231232 /**
232233 * iget_failed - Mark an under-construction inode as dead and release it