mirror of
https://github.com/versity/scoutfs.git
synced 2026-04-28 00:46:57 +00:00
This is the initial commit of the repo that will track development against distro kernels. This is an import of a prototype branch in the upstream kernel that only had a few initial commits. It needed to move to the old readdir interface and use find_or_create_page() instead of pagecache_get_page() to build in older distro kernels.
11 lines
224 B
C
11 lines
224 B
C
#ifndef _SCOUTFS_DIR_H_
|
|
#define _SCOUTFS_DIR_H_
|
|
|
|
extern const struct file_operations scoutfs_dir_fops;
|
|
extern const struct inode_operations scoutfs_dir_iops;
|
|
|
|
int scoutfs_dir_init(void);
|
|
void scoutfs_dir_exit(void);
|
|
|
|
#endif
|