From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-177.mta1.migadu.com (out-177.mta1.migadu.com [95.215.58.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B40B33BADBA for ; Mon, 30 Mar 2026 10:35:40 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.177 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774866943; cv=none; b=fhTicb3R66vhUo0AoXqRB/RL9sXsZZiBjv6kq9Gd6r3q6oJYErVriI0mHGRM5etIdXS/e+UZSM6tHJVXGFMzXmkQq8HjeJjkJHvzXJpupmsAcDpMSgCb31bMBhgm8MFWEvmwtAA7aIhVH0i0l/hfbKSlKAU4Zc3P/Y0UJnTmAWo= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774866943; c=relaxed/simple; bh=kvLi/kSD0fId3zDk3U8cYaDP8yKJbUfhGWMEhpWw1ZA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=SdpEXZ1Bw2nqTPI6Df8eTm0pyna8a+QzYW/5mIxNXUOiZ8+ahntWAvMEwv1/L99Lb/NUP0qApp7j+N5r9Yc4SFCeTYPF3jGaBTUFjjZFXVtiI2MLph+9l3C5GC+3y/dyaUJDL62Bn+5WSN0lG4Mia6B4Z7g7+k002X5zcSwWOYE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=qUKm9N0O; arc=none smtp.client-ip=95.215.58.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="qUKm9N0O" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1774866939; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=uiq7lYrJ56/ZU4crmRRn5AG/pG6F28e+zWcU32cvjx4=; b=qUKm9N0ONr2wg+++ELLSvvtnMqWNvNSUZZZB5X9378kQS1qpteFpFYhGxB3Z6/G6aa/d++ 0rLJBmVBc7wwnYyFhdQawT9k0EqdJQcBY72yERKuI8DtpV7vuWXpl9aF9SbCC5eempCnND HhsMTotUCMAqJyOEm/9uZFbP6cLSrwY= From: Thorsten Blum To: Tyler Hicks , Thorsten Blum , Christian Brauner , Eric Biggers , Ard Biesheuvel , Zipeng Zhang , Jeff Layton , Kees Cook Cc: Amir Goldstein , ecryptfs@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/2] ecryptfs: Fix typo in ecryptfs_derive_iv function comment Date: Mon, 30 Mar 2026 12:35:15 +0200 Message-ID: <20260330103515.389346-4-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: ecryptfs@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=665; i=thorsten.blum@linux.dev; h=from:subject; bh=kvLi/kSD0fId3zDk3U8cYaDP8yKJbUfhGWMEhpWw1ZA=; b=owGbwMvMwCUWt7pQ4caZUj3G02pJDJmnAh+77LNIPTD366+6S6dnsZ5oaGe5ILIhQkZ/al9T5 /aJdVJuHaUsDGJcDLJiiiwPZv2Y4VtaU7nJJGInzBxWJpAhDFycAjARtV6G/y5vp7rk/8675fjT +8HdFSu0Ukof7NxZKnLj4AQ5U6bzaT8Z/im0HtWK/dGWUnLsWkECb7ar8v5Luxc57/E7MfWbR4z rM24A X-Developer-Key: i=thorsten.blum@linux.dev; a=openpgp; fpr=1D60735E8AEF3BE473B69D84733678FD8DFEEAD4 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT s/vale/value/ Signed-off-by: Thorsten Blum --- fs/ecryptfs/crypto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/ecryptfs/crypto.c b/fs/ecryptfs/crypto.c index 3b59346d68c5..585bad6577ed 100644 --- a/fs/ecryptfs/crypto.c +++ b/fs/ecryptfs/crypto.c @@ -72,7 +72,7 @@ static int ecryptfs_crypto_api_algify_cipher_name(char **algified_name, /** * ecryptfs_derive_iv - * @iv: destination for the derived iv vale + * @iv: destination for the derived iv value * @crypt_stat: Pointer to crypt_stat struct for the current inode * @offset: Offset of the extent whose IV we are to derive *