From patchwork Mon Jul 29 13:47:00 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lukas Wunner X-Patchwork-Id: 815120 Received: from mailout1.hostsharing.net (mailout1.hostsharing.net [83.223.95.204]) (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 56517548F7; Mon, 29 Jul 2024 14:06:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=83.223.95.204 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722262021; cv=none; b=WXLzs2bXnLjCboSWwFDvAut4rU9n2jWO/n64FUljUd6K7uzDMnIJnuGnUjU7XS7YEY1n/RZVF2pC11lwUpa4BTXqCojTyiJzErfvmkBW7dzr0AHmOvz+cFq8ENsNrZL6U6blNYB3sNUskVpfY8nuicXQzi3ymOJfFJseKxjcbMc= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1722262021; c=relaxed/simple; bh=VYKoO5jCsoT/rtfMdAueqUF+CIUYafh1Q3PNMn+NI0I=; h=Message-ID:In-Reply-To:References:From:Date:Subject:To:Cc; b=WSwrcmK7j/fvk3JEwDDGrF4H0/v90a3yrBQmB2iw4TT0iedOpulRdCte7kdCrAalfAW8j59JNPk06BMvO3VotfD86xlPmaBC/34OffqUSc0FqVHSQkFRnuK+QyTdl2712Kpawlpgb45yXD5tlS5DhjR7uSLXNIL4fRVa74OuRW4= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=wunner.de; spf=pass smtp.mailfrom=wunner.de; arc=none smtp.client-ip=83.223.95.204 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=wunner.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=wunner.de Received: from h08.hostsharing.net (h08.hostsharing.net [IPv6:2a01:37:1000::53df:5f1c:0]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "*.hostsharing.net", Issuer "RapidSSL TLS RSA CA G1" (verified OK)) by mailout1.hostsharing.net (Postfix) with ESMTPS id 75E59101917AC; Mon, 29 Jul 2024 15:57:19 +0200 (CEST) Received: from localhost (unknown [89.246.108.87]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by h08.hostsharing.net (Postfix) with ESMTPSA id 42FDD62754AE; Mon, 29 Jul 2024 15:57:19 +0200 (CEST) X-Mailbox-Line: From a98ae07646e243fe0d9c1a25fcb3feb3e5987960 Mon Sep 17 00:00:00 2001 Message-ID: In-Reply-To: References: From: Lukas Wunner Date: Mon, 29 Jul 2024 15:47:00 +0200 Subject: [PATCH 1/5] ASN.1: Add missing include To: Herbert Xu , "David S. Miller" , Stefan Berger Cc: David Howells , Vitaly Chikunov , Tadeusz Struk , Andrew Zaborowski , Saulo Alessandre , Jonathan Cameron , linux-crypto@vger.kernel.org, keyrings@vger.kernel.org Precedence: bulk X-Mailing-List: linux-crypto@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: If is the first header included from a .c file (due to headers being sorted alphabetically), the compiler complains: include/linux/asn1_decoder.h:18:29: error: unknown type name 'size_t' Fix it. Signed-off-by: Lukas Wunner Reviewed-by: Stefan Berger Reviewed-by: Jonathan Cameron --- include/linux/asn1_decoder.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/linux/asn1_decoder.h b/include/linux/asn1_decoder.h index 83f9c6e1e5e9..b41bce82a191 100644 --- a/include/linux/asn1_decoder.h +++ b/include/linux/asn1_decoder.h @@ -9,6 +9,7 @@ #define _LINUX_ASN1_DECODER_H #include +#include struct asn1_decoder;