summaryrefslogtreecommitdiff
path: root/c_src/include/linux/dcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'c_src/include/linux/dcache.h')
-rw-r--r--c_src/include/linux/dcache.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/c_src/include/linux/dcache.h b/c_src/include/linux/dcache.h
new file mode 100644
index 00000000..7637854d
--- /dev/null
+++ b/c_src/include/linux/dcache.h
@@ -0,0 +1,12 @@
+#ifndef __LINUX_DCACHE_H
+#define __LINUX_DCACHE_H
+
+struct super_block;
+struct inode;
+
+struct dentry {
+ struct super_block *d_sb;
+ struct inode *d_inode;
+};
+
+#endif /* __LINUX_DCACHE_H */