diff options
| author | Will Deacon <will@kernel.org> | 2025-09-24 16:35:06 +0100 |
|---|---|---|
| committer | Will Deacon <will@kernel.org> | 2025-09-24 16:35:06 +0100 |
| commit | 4e4e36dce3e44b28b041aefedd5a0c1b150a8f43 (patch) | |
| tree | b915293d5c20cc4236baa2200458ba5d4d200185 /kernel | |
| parent | Merge branch 'for-next/sysregs' into for-next/core (diff) | |
| parent | arm64: probes: Fix incorrect bl/blr address and register usage (diff) | |
| download | linux-4e4e36dce3e44b28b041aefedd5a0c1b150a8f43.tar.gz linux-4e4e36dce3e44b28b041aefedd5a0c1b150a8f43.zip | |
Merge branch 'for-next/uprobes' into for-next/core
* for-next/uprobes:
arm64: probes: Fix incorrect bl/blr address and register usage
uprobes: uprobe_warn should use passed task
arm64: Kconfig: Remove GCS restrictions on UPROBES
arm64: uprobes: Add GCS support to uretprobes
arm64: probes: Add GCS support to bl/blr/ret
arm64: uaccess: Add additional userspace GCS accessors
arm64: uaccess: Move existing GCS accessors definitions to gcs.h
arm64: probes: Break ret out from bl/blr
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/events/uprobes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/events/uprobes.c b/kernel/events/uprobes.c index 7ca1940607bd..4b97d16f731c 100644 --- a/kernel/events/uprobes.c +++ b/kernel/events/uprobes.c @@ -121,7 +121,7 @@ struct xol_area { static void uprobe_warn(struct task_struct *t, const char *msg) { - pr_warn("uprobe: %s:%d failed to %s\n", current->comm, current->pid, msg); + pr_warn("uprobe: %s:%d failed to %s\n", t->comm, t->pid, msg); } /* |
