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 052964C71 for ; Fri, 2 Dec 2022 16:16:01 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C939EC43152; Fri, 2 Dec 2022 16:15:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1669997760; bh=Fu0cQySj6UrPLD5hDPAQuIBqC91+Uyo9Z9HV2mYAaok=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=RV0FORfM/sgu1IT0HI/gc8w6bR0fwFSxo5jG4QS2W+B3fltkS0gl5tZUSXr4MmGGE IDOVl0VTFvK3xbvQuIuhsBU7sWjwn5PW4QKicCEwbD5w9hHZu0p0tqbvlIHhCQulpr ynzBlpngUBX0n6FP2A7TNmAOLKiPRtDTYOhmTtsOoKQJkvOd+VzMhFYKSp8y3YQwwB 1fGmbGvvU0q0vWAmTK4EphZ9H+pKZuqBP+GJPAR6K8JU8ANdyzYHNXidCgJmg1fWwz pTzX65kWdJFhveTMW2GZk6zZobgt2z8MblGS2EmWx4eBVbDXKYa0/hjv93ZXxryUZw WXVDAmk7+p4WQ== From: ojeda@kernel.org To: Miguel Ojeda , Wedson Almeida Filho , Alex Gaynor , Boqun Feng , Gary Guo , =?UTF-8?q?Bj=C3=B6rn=20Roy=20Baron?= Cc: rust-for-linux@vger.kernel.org, linux-kernel@vger.kernel.org, patches@lists.linux.dev Subject: [PATCH v2 11/28] rust: prelude: add `error::code::*` constant items Date: Fri, 2 Dec 2022 17:14:42 +0100 Message-Id: <20221202161502.385525-12-ojeda@kernel.org> In-Reply-To: <20221202161502.385525-1-ojeda@kernel.org> References: <20221202161502.385525-1-ojeda@kernel.org> Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Wedson Almeida Filho It is convenient to have all the `Error` constant items (such as `EINVAL`) available as-is everywhere (i.e. for code using the kernel prelude such as kernel modules). Therefore, add all of them to the prelude. For instance, this allows to write `Err(EINVAL)` to create a kernel `Result`: fn f() -> Result<...> { ... Err(EINVAL) } Signed-off-by: Wedson Almeida Filho Reviewed-by: Gary Guo [Reworded, adapted for upstream and applied latest changes] Signed-off-by: Miguel Ojeda --- rust/kernel/prelude.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust/kernel/prelude.rs b/rust/kernel/prelude.rs index 7c4c35bf3c66..1e08b08e9420 100644 --- a/rust/kernel/prelude.rs +++ b/rust/kernel/prelude.rs @@ -19,6 +19,6 @@ pub use macros::{module, vtable}; pub use super::{pr_alert, pr_crit, pr_debug, pr_emerg, pr_err, pr_info, pr_notice, pr_warn}; -pub use super::error::{Error, Result}; +pub use super::error::{code::*, Error, Result}; pub use super::ThisModule; -- 2.38.1