mbox series

[RESEND,0/1] rust: introduce declare_err! autogeneration

Message ID 20240920024920.215842-1-toolmanp@tlmp.cc (mailing list archive)
Headers show
Series rust: introduce declare_err! autogeneration | expand

Message

Yiyang Wu Sept. 20, 2024, 2:49 a.m. UTC
Currently, the error.rs's errno import is done manually by copying the
comments from include/linux/errno.h and uses the declare_err! to wrap
the constant errno.

However, this reduces the readability and increases difficulty of
maintaining the error.rs if the errno list is growing too long or
or if errno.h gets updated for new semantics.

This patchset solves this issues for good by introducing a rule
to generate errno_generated.rs by seding the errno.h and
including the generated file in the error.rs.

This patch is based on the rust-next branch.

Yiyang Wu (1):
  rust: error: auto-generate error declarations

 rust/.gitignore      |  1 +
 rust/Makefile        | 14 ++++++++++-
 rust/kernel/error.rs | 58 +++-----------------------------------------
 3 files changed, 18 insertions(+), 55 deletions(-)