From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 796771C32F3; Thu, 10 Oct 2024 09:18:12 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728551892; cv=none; b=MXfsvEau8fXsyCx3/RbWedwkYgKtZn7zz+TYywa0BIcYG8ISUpu7L+E+Lyp/031jEhs0Vj13gAesZLvNcsaKIopX81/0B152sg2jSenQgveuXGxLQ92i8uBQ6qvBUqmdXZXxvSwZLAWrbiyzfaFNoSKmkf+J2Suvtk0f50Xe3mA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1728551892; c=relaxed/simple; bh=dG34C9+HlVxQrZbeI0Ryd90SxrGhRkvSwJrP139CH6I=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=fcZKdneLx3oPBbDelIxSNF9YNTdCmh7arSRSUTbWFvpHwLTy17mF3RuMeaBP5VmaaH/S8tOQbWo6GdZAAU45/YI1OQ61T51B1iJ6b8ABbcnt/RxhsTh2srMdiDUuXpWt6PL+UJ+P05JjDkmU4Rheq5epG10vERKMxhFsMlN6G0A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=NDkqk5j2; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="NDkqk5j2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 05863C4CECC; Thu, 10 Oct 2024 09:18:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1728551892; bh=dG34C9+HlVxQrZbeI0Ryd90SxrGhRkvSwJrP139CH6I=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=NDkqk5j2iBsHO/4SWy/84tis49/vnqc1x/Kfvd7r0t2Gy3EsNH0nRkJgd7PV2uMXi 3sb5snmmspd9IV3bakRlBSNj8a14jqzvFQxbV2G0zC5n9di8tcuNv1emd3rHiX6l7b 75UVsTWPDBTbvyJ0XC7ZzVc5WV3dxZTnRPMoirEuzz9EGhX+2rF9bAKANIkdtlYS66 +/8atADPcl8PScg0RXuuYpIs8QNzgcZP9fv8Neuq1QsLKLv7gHLCeJi0Uzv8ojhbRJ wN+kbsEchSjbT2+bqbG0p/eM3AeJn6Fes7wvQ77vveqwxpObTV858maRZo4/qJH6BO tz2n8KdAOHW3Q== From: Andreas Hindborg To: "Tamir Duberstein" Cc: , "Miguel Ojeda" , "Alex Gaynor" , "Boqun Feng" , "Gary Guo" , =?utf-8?Q?Bj?= =?utf-8?Q?=C3=B6rn?= Roy Baron , "Benno Lossin" , "Alice Ryhl" , "Trevor Gross" , "Dirk Behme" , "Fiona Behrens" , "Filipe Xavier" , Subject: Re: [PATCH v2] rust: remove unnecessary header includes In-Reply-To: <20241009162553.27845-2-tamird@gmail.com> (Tamir Duberstein's message of "Wed, 09 Oct 2024 12:25:30 -0400") References: <20241009162553.27845-2-tamird@gmail.com> Date: Thu, 10 Oct 2024 11:17:53 +0200 Message-ID: <87jzegmi4e.fsf@kernel.org> Precedence: bulk X-Mailing-List: rust-for-linux@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain "Tamir Duberstein" writes: > Commit e26fa546042a ("rust: kbuild: auto generate helper exports") > removed the need for these by automatically generating the exports; it > removed the explicit uses of `EXPORT_SYMBOL_GPL` but didn't remove the > `#include `s. > > Signed-off-by: Tamir Duberstein Reviewed-by: Andreas Hindborg