From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-178.mta1.migadu.com (out-178.mta1.migadu.com [95.215.58.178]) (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 8F6A93BB9E0 for ; Mon, 30 Mar 2026 10:35:41 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=95.215.58.178 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774866944; cv=none; b=fea/PaDMJwQoz9Q0AKaIzzCnLY7YvAnX7qn5nBKJqwSsvL1dAnoEwGQic7qdMYtqRC2XawHh33/okvaaY5Y0+VHmHlMwLUAnBh+S5zdC/kgz02Ji/Qo10UnagQAkSs/3p8Yrm0sYdYkr2a1Ib/1Y1IfP0uds3HaRs+1L3ghtMYc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774866944; c=relaxed/simple; bh=kvLi/kSD0fId3zDk3U8cYaDP8yKJbUfhGWMEhpWw1ZA=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=d4K08GT1x0GUvVAh52viNHCl34OZ/tx8l1hrghgrYO3OSyvizrLJ7D4Nmy6uE2M5NspsP+VLI0NN2QGoSkHgO52NxCP8MrclTRwi1r7OQZqivo+MSoYQWAuwxSJBt6qh9A5+ECWsvMGnT266BpR3hqtw2AI+roij20sCtsrP0dU= 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.178 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: linux-kernel@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 *