* [PATCH RESEND] ecryptfs: Remove redundant if checks in encrypt_and_encode_filename
@ 2026-03-09 22:48 Thorsten Blum
2026-03-26 4:59 ` Tyler Hicks
0 siblings, 1 reply; 2+ messages in thread
From: Thorsten Blum @ 2026-03-09 22:48 UTC (permalink / raw)
To: Tyler Hicks, Thorsten Blum, Eric Biggers, Christian Brauner,
Zipeng Zhang, Kees Cook, Amir Goldstein
Cc: Ard Biesheuvel, ecryptfs, linux-kernel
The outer if already checks if 'mount_crypt_stat' is true. Drop checking
'mount_crypt_stat' again. Use ecryptfs_printk() while we're at it.
Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev>
---
fs/ecryptfs/crypto.c | 21 ++++++++++-----------
1 file changed, 10 insertions(+), 11 deletions(-)
diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c
index 3b59346d68c5..bed7a251d8c6 100644
--- a/fs/ecryptfs/crypto.c
+++ b/fs/ecryptfs/crypto.c
@@ -1802,8 +1802,9 @@ int ecryptfs_encrypt_and_encode_filename(
filename->filename_size = name_size;
rc = ecryptfs_encrypt_filename(filename, mount_crypt_stat);
if (rc) {
- printk(KERN_ERR "%s: Error attempting to encrypt "
- "filename; rc = [%d]\n", __func__, rc);
+ ecryptfs_printk(KERN_ERR,
+ "Error attempting to encrypt filename; rc = [%d]\n",
+ rc);
kfree(filename);
goto out;
}
@@ -1811,9 +1812,8 @@ int ecryptfs_encrypt_and_encode_filename(
NULL, &encoded_name_no_prefix_size,
filename->encrypted_filename,
filename->encrypted_filename_size);
- if (mount_crypt_stat
- && (mount_crypt_stat->flags
- & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK))
+ if (mount_crypt_stat->flags
+ & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)
(*encoded_name_size) =
(ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE
+ encoded_name_no_prefix_size);
@@ -1828,9 +1828,8 @@ int ecryptfs_encrypt_and_encode_filename(
kfree(filename);
goto out;
}
- if (mount_crypt_stat
- && (mount_crypt_stat->flags
- & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK)) {
+ if (mount_crypt_stat->flags
+ & ECRYPTFS_GLOBAL_ENCFN_USE_MOUNT_FNEK) {
memcpy((*encoded_name),
ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX,
ECRYPTFS_FNEK_ENCRYPTED_FILENAME_PREFIX_SIZE);
@@ -1848,9 +1847,9 @@ int ecryptfs_encrypt_and_encode_filename(
rc = -EOPNOTSUPP;
}
if (rc) {
- printk(KERN_ERR "%s: Error attempting to encode "
- "encrypted filename; rc = [%d]\n", __func__,
- rc);
+ ecryptfs_printk(KERN_ERR,
+ "Error attempting to encode encrypted filename; rc = [%d]\n",
+ rc);
kfree((*encoded_name));
(*encoded_name) = NULL;
(*encoded_name_size) = 0;
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH RESEND] ecryptfs: Remove redundant if checks in encrypt_and_encode_filename
2026-03-09 22:48 [PATCH RESEND] ecryptfs: Remove redundant if checks in encrypt_and_encode_filename Thorsten Blum
@ 2026-03-26 4:59 ` Tyler Hicks
0 siblings, 0 replies; 2+ messages in thread
From: Tyler Hicks @ 2026-03-26 4:59 UTC (permalink / raw)
To: Thorsten Blum
Cc: Eric Biggers, Christian Brauner, Zipeng Zhang, Kees Cook,
Amir Goldstein, Ard Biesheuvel, ecryptfs, linux-kernel
On Mon, 09 Mar 2026 23:48:24 +0100, Thorsten Blum wrote:
> The outer if already checks if 'mount_crypt_stat' is true. Drop checking
> 'mount_crypt_stat' again. Use ecryptfs_printk() while we're at it.
Thank you! This has been applied to the next branch of the tyhicks/ecryptfs.git tree.
You can find a direct link below but please be aware that the commit hash is
unstable and, therefore, the URL may not be valid in the future.
[1/1] ecryptfs: Remove redundant if checks in encrypt_and_encode_filename
https://git.kernel.org/tyhicks/ecryptfs/c/fb1b02dc02da0ff63a5965056db0c9f77842bd19
Tyler
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-26 4:59 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-09 22:48 [PATCH RESEND] ecryptfs: Remove redundant if checks in encrypt_and_encode_filename Thorsten Blum
2026-03-26 4:59 ` Tyler Hicks
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox