diff options
author | Marc Koderer <marc@koderer.com> | 2020-12-28 07:04:15 +0100 |
---|---|---|
committer | Jonathan Corbet <corbet@lwn.net> | 2021-01-11 13:33:06 -0700 |
commit | ee037040f808848bf7355edd081d33bdb1cfd011 (patch) | |
tree | a2c6108020274edffe51ba77f5aa8ebacf1c4d64 /samples | |
parent | 7594bb08fb68ffe7e77c2e77ecc33c1e21631ead (diff) | |
download | linux-stable-ee037040f808848bf7355edd081d33bdb1cfd011.tar.gz linux-stable-ee037040f808848bf7355edd081d33bdb1cfd011.tar.bz2 linux-stable-ee037040f808848bf7355edd081d33bdb1cfd011.zip |
samples/kprobes: Remove misleading comment
The example file supports many architectures not only x86 and PPC.
Signed-off-by: Marc Koderer <marc@koderer.com>
Cc: trivial@kernel.org
Link: https://lore.kernel.org/r/20201228060415.2194-1-marc@koderer.com
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Diffstat (limited to 'samples')
-rw-r--r-- | samples/kprobes/kprobe_example.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/samples/kprobes/kprobe_example.c b/samples/kprobes/kprobe_example.c index 365905cb24b1..192aa68db0c0 100644 --- a/samples/kprobes/kprobe_example.c +++ b/samples/kprobes/kprobe_example.c @@ -1,6 +1,5 @@ // SPDX-License-Identifier: GPL-2.0-only /* - * NOTE: This example is works on x86 and powerpc. * Here's a sample kernel module showing the use of kprobes to dump a * stack trace and selected registers when kernel_clone() is called. * |