diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2013-12-10 16:54:28 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2014-01-25 03:13:02 -0500 |
commit | f7f4f4dd6948e3bca0e04e5217c825052ad88f5a (patch) | |
tree | e7e047f1ec986eb4f0795d98cda5801aa265221e /include | |
parent | 2309fb8ef40e82c4175100c37eb3d9db9e572ca5 (diff) |
cramfs: take headers to fs/cramfs
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/cramfs_fs.h | 10 | ||||
-rw-r--r-- | include/linux/cramfs_fs_sb.h | 20 |
2 files changed, 0 insertions, 30 deletions
diff --git a/include/linux/cramfs_fs.h b/include/linux/cramfs_fs.h deleted file mode 100644 index 133789609f23..000000000000 --- a/include/linux/cramfs_fs.h +++ /dev/null | |||
@@ -1,10 +0,0 @@ | |||
1 | #ifndef __CRAMFS_H | ||
2 | #define __CRAMFS_H | ||
3 | |||
4 | #include <uapi/linux/cramfs_fs.h> | ||
5 | |||
6 | /* Uncompression interfaces to the underlying zlib */ | ||
7 | int cramfs_uncompress_block(void *dst, int dstlen, void *src, int srclen); | ||
8 | int cramfs_uncompress_init(void); | ||
9 | void cramfs_uncompress_exit(void); | ||
10 | #endif | ||
diff --git a/include/linux/cramfs_fs_sb.h b/include/linux/cramfs_fs_sb.h deleted file mode 100644 index 8390693568fd..000000000000 --- a/include/linux/cramfs_fs_sb.h +++ /dev/null | |||
@@ -1,20 +0,0 @@ | |||
1 | #ifndef _CRAMFS_FS_SB | ||
2 | #define _CRAMFS_FS_SB | ||
3 | |||
4 | /* | ||
5 | * cramfs super-block data in memory | ||
6 | */ | ||
7 | struct cramfs_sb_info { | ||
8 | unsigned long magic; | ||
9 | unsigned long size; | ||
10 | unsigned long blocks; | ||
11 | unsigned long files; | ||
12 | unsigned long flags; | ||
13 | }; | ||
14 | |||
15 | static inline struct cramfs_sb_info *CRAMFS_SB(struct super_block *sb) | ||
16 | { | ||
17 | return sb->s_fs_info; | ||
18 | } | ||
19 | |||
20 | #endif | ||