diff options
| author | Eric Biggers <ebiggers@google.com> | 2018-01-05 10:44:53 -0800 |
|---|---|---|
| committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2018-04-08 02:07:59 -0700 |
| commit | dfe0b3b1b67f6489ea857ef75135e27eb16638d4 (patch) | |
| tree | ac467d8d8045376f539299372db4590eee954a34 /include/linux/fscrypt.h | |
| parent | 3a2c7917782292956a32d4e1df8dc3dbecc01b25 (diff) | |
fscrypt: move fscrypt_control_page() to supp/notsupp headers
fscrypt_control_page() is already split into two versions depending on
whether the filesystem is being built with encryption support or not.
Move them into the appropriate headers.
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'include/linux/fscrypt.h')
| -rw-r--r-- | include/linux/fscrypt.h | 18 |
1 files changed, 2 insertions, 16 deletions
diff --git a/include/linux/fscrypt.h b/include/linux/fscrypt.h index 1e2343b46262..0961315a5fff 100644 --- a/include/linux/fscrypt.h +++ b/include/linux/fscrypt.h @@ -119,24 +119,10 @@ static inline bool fscrypt_is_dot_dotdot(const struct qstr *str) } #if __FS_HAS_ENCRYPTION - -static inline struct page *fscrypt_control_page(struct page *page) -{ - return ((struct fscrypt_ctx *)page_private(page))->w.control_page; -} - #include <linux/fscrypt_supp.h> - -#else /* !__FS_HAS_ENCRYPTION */ - -static inline struct page *fscrypt_control_page(struct page *page) -{ - WARN_ON_ONCE(1); - return ERR_PTR(-EINVAL); -} - +#else #include <linux/fscrypt_notsupp.h> -#endif /* __FS_HAS_ENCRYPTION */ +#endif /** * fscrypt_require_key - require an inode's encryption key |
