Now that we support wrap-static-fns we no longer need the custom helpers. Signed-off-by: Alistair Francis <alistair@xxxxxxxxxxxxx> Tested-by: Dirk Behme <dirk.behme@xxxxxxxxxxxx> --- rust/bindgen_static_functions | 3 +++ rust/helpers/task.c | 10 ---------- 2 files changed, 3 insertions(+), 10 deletions(-) diff --git a/rust/bindgen_static_functions b/rust/bindgen_static_functions index 9d6c44e277b5..8bc291a7a799 100644 --- a/rust/bindgen_static_functions +++ b/rust/bindgen_static_functions @@ -24,3 +24,6 @@ --allowlist-function spin_lock --allowlist-function spin_unlock --allowlist-function spin_trylock + +--allowlist-function get_task_struct +--allowlist-function put_task_struct diff --git a/rust/helpers/task.c b/rust/helpers/task.c index 31c33ea2dce6..38a7765d9915 100644 --- a/rust/helpers/task.c +++ b/rust/helpers/task.c @@ -7,16 +7,6 @@ struct task_struct *rust_helper_get_current(void) return current; } -void rust_helper_get_task_struct(struct task_struct *t) -{ - get_task_struct(t); -} - -void rust_helper_put_task_struct(struct task_struct *t) -{ - put_task_struct(t); -} - kuid_t rust_helper_task_uid(struct task_struct *task) { return task_uid(task); -- 2.47.1