commit | 8da7a2b7432e8f043f04515895687f72cdb3e0a8 | [log] [tgz] |
---|---|---|
author | Wedson Almeida Filho <[email protected]> | Tue Apr 11 02:45:40 2023 -0300 |
committer | Miguel Ojeda <[email protected]> | Sat Apr 22 00:20:00 2023 +0200 |
tree | 8dd15c2ad5e49e92aba260bed3a9a49b7759ebc5 | |
parent | 313c4281bc9dfa98d76a71b16a684af1c52e7751 [diff] [blame] |
rust: introduce `current` This allows Rust code to get a reference to the current task without having to increment the refcount, but still guaranteeing memory safety. Cc: Ingo Molnar <[email protected]> Cc: Peter Zijlstra <[email protected]> Reviewed-by: Martin Rodriguez Reboredo <[email protected]> Signed-off-by: Wedson Almeida Filho <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Miguel Ojeda <[email protected]>
diff --git a/rust/helpers.c b/rust/helpers.c index 6e5b2c9..2cb7b82 100644 --- a/rust/helpers.c +++ b/rust/helpers.c
@@ -103,6 +103,12 @@ long rust_helper_PTR_ERR(__force const void *ptr) } EXPORT_SYMBOL_GPL(rust_helper_PTR_ERR); +struct task_struct *rust_helper_get_current(void) +{ + return current; +} +EXPORT_SYMBOL_GPL(rust_helper_get_current); + void rust_helper_get_task_struct(struct task_struct *t) { get_task_struct(t);