diff options
author | Jeff Layton <jlayton@kernel.org> | 2020-08-10 10:21:39 -0400 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2020-09-07 15:27:42 -0700 |
commit | 8b10fe68985278de4926daa56ad6af701839e40a (patch) | |
tree | 06431d851fe27d4d4bbd432be53c71804f9daac7 /include | |
parent | f4d51dffc6c01a9e94650d95ce0104964f8ae822 (diff) |
fscrypt: drop unused inode argument from fscrypt_fname_alloc_buffer
Signed-off-by: Jeff Layton <jlayton@kernel.org>
Link: https://lore.kernel.org/r/20200810142139.487631-1-jlayton@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fscrypt.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/linux/fscrypt.h b/include/linux/fscrypt.h index 991ff8575d0e..eaf16eb55788 100644 --- a/include/linux/fscrypt.h +++ b/include/linux/fscrypt.h @@ -197,7 +197,7 @@ static inline void fscrypt_free_filename(struct fscrypt_name *fname) kfree(fname->crypto_buf.name); } -int fscrypt_fname_alloc_buffer(const struct inode *inode, u32 max_encrypted_len, +int fscrypt_fname_alloc_buffer(u32 max_encrypted_len, struct fscrypt_str *crypto_str); void fscrypt_fname_free_buffer(struct fscrypt_str *crypto_str); int fscrypt_fname_disk_to_usr(const struct inode *inode, @@ -428,8 +428,7 @@ static inline void fscrypt_free_filename(struct fscrypt_name *fname) return; } -static inline int fscrypt_fname_alloc_buffer(const struct inode *inode, - u32 max_encrypted_len, +static inline int fscrypt_fname_alloc_buffer(u32 max_encrypted_len, struct fscrypt_str *crypto_str) { return -EOPNOTSUPP; |