diff options
author | Eric Biggers <ebiggers@google.com> | 2020-01-20 10:17:36 +0300 |
---|---|---|
committer | Eric Biggers <ebiggers@google.com> | 2020-01-23 01:45:10 +0300 |
commit | 1b3b827ee5230a73c8ed1b2cd8d53b4bd001268b (patch) | |
tree | a98c3efdce8cb0eb6f58ada4ada88d7efd9ae407 /fs/crypto/hooks.c | |
parent | 13a10da94615d81087e718517794f2868a8b3fab (diff) | |
download | linux-1b3b827ee5230a73c8ed1b2cd8d53b4bd001268b.tar.xz |
fscrypt: add "fscrypt_" prefix to fname_encrypt()
fname_encrypt() is a global function, due to being used in both fname.c
and hooks.c. So it should be prefixed with "fscrypt_", like all the
other global functions in fs/crypto/.
Link: https://lore.kernel.org/r/20200120071736.45915-1-ebiggers@kernel.org
Signed-off-by: Eric Biggers <ebiggers@google.com>
Diffstat (limited to 'fs/crypto/hooks.c')
-rw-r--r-- | fs/crypto/hooks.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/crypto/hooks.c b/fs/crypto/hooks.c index bb3b7fcfdd48..4081aae4bc35 100644 --- a/fs/crypto/hooks.c +++ b/fs/crypto/hooks.c @@ -188,7 +188,8 @@ int __fscrypt_encrypt_symlink(struct inode *inode, const char *target, ciphertext_len = disk_link->len - sizeof(*sd); sd->len = cpu_to_le16(ciphertext_len); - err = fname_encrypt(inode, &iname, sd->encrypted_path, ciphertext_len); + err = fscrypt_fname_encrypt(inode, &iname, sd->encrypted_path, + ciphertext_len); if (err) goto err_free_sd; |