From nobody Sat Feb 7 18:15:50 2026 Received: from out-171.mta0.migadu.com (out-171.mta0.migadu.com [91.218.175.171]) (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 2F8BC1DE3DF for ; Sat, 25 Oct 2025 09:55:45 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761386149; cv=none; b=AElPryEQRbHIeB0moesKAGjP9jCWo5ujlwBEGiwIPFXRJVXqcpQgikL0dZGCwCkNuF5I8LMmjm/mkDxpsC60hu0DYRVEpiVljbTf8hczg1BZJZVombZo+p7IkKlPVajD8Q3ZOjxzEKfW2Obi09WeE/dH1dvskKr82QnrazMSNrE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1761386149; c=relaxed/simple; bh=LsIeYJ0IaSk91icRdNWcw+3GlqKmlaLIkttzeyXajMU=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=jy27VFmPV35VJV+zM7YdDOtGaYK/3iiKfeDr3y/f5OW0eQkNGM7+GHujz8k276Sbnbg1N4dfnyacPqe8QaaL8zBQ44Jv8P7BE8NkOmN6ZVODhG2ogAD1yJ2wcv5AKjB3bBnSxrCLpWVIdXObu3y5p42uhzpaUEwpPaETje9GTeg= 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=KUxXU7Tp; arc=none smtp.client-ip=91.218.175.171 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="KUxXU7Tp" 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=1761386144; 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=WoJJKjJi2LQjMP2jbXzS14o3BnF8YeuXsVCA+1r7Fa8=; b=KUxXU7Tpnc1YQ9PlBN0GgilTOQ/8mFEXioIMkzSo6F+vH8zD1NvERj7/anoq7DkRDAysM4 baowLPU14Hc+GFnCpYuSSZROw7fH/gcIm4csl9IyObSL+vfIh13dRJaaXdY/4boNgxjhpI ehbAW06i5B3YkTX8npqG3N/84keHN9o= From: Thorsten Blum To: David Howells , Jarkko Sakkinen Cc: Thorsten Blum , keyrings@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH v2] keys: Fix typos in 'struct key_type' function pointer comments Date: Sat, 25 Oct 2025 11:55:19 +0200 Message-ID: <20251025095519.84361-1-thorsten.blum@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" s/it/if/ and s/revokation/revocation/ and adjust the formatting to be consistent with the other comments. Signed-off-by: Thorsten Blum --- Changes in v2: - Adjust the trailing '*/' as suggested by Jarkko - Link to v1: https://lore.kernel.org/lkml/20251016123619.98728-2-thorsten.= blum@linux.dev/ --- include/linux/key-type.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/include/linux/key-type.h b/include/linux/key-type.h index 5caf3ce82373..5dfda728ff69 100644 --- a/include/linux/key-type.h +++ b/include/linux/key-type.h @@ -107,11 +107,12 @@ struct key_type { */ int (*match_preparse)(struct key_match_data *match_data); =20 - /* Free preparsed match data (optional). This should be supplied it - * ->match_preparse() is supplied. */ + /* Free preparsed match data (optional). This should be supplied if + * ->match_preparse() is supplied. + */ void (*match_free)(struct key_match_data *match_data); =20 - /* clear some of the data from a key on revokation (optional) + /* clear some of the data from a key on revocation (optional) * - the key's semaphore will be write-locked by the caller */ void (*revoke)(struct key *key); --=20 2.51.0