Message ID | 20250107035058.818539-11-alistair@alistair23.me (mailing list archive) |
---|---|
State | Handled Elsewhere |
Delegated to: | Bjorn Helgaas |
Headers | show |
Series | rust: bindings: Auto-generate inline static functions | expand |
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);