Skip to content

Commit 19815c8

Browse files
committed
Replace two references to samply load with samply import.
1 parent 0557aba commit 19815c8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

samply/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ samply record --save-only -o prof.json -- ./yourcommand args
1818
samply load prof.json
1919
2020
# You can also import Linux perf profiles:
21-
samply load perf.data
21+
samply import perf.data
2222
```
2323

2424
See [the repo](https://github.com/mstange/samply/) for more information.

samply/src/linux_shared/injected_jit_object.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pub fn jit_function_name<'data>(obj: &object::File<'data>) -> Option<&'data str>
3737
/// 4.19.215+, 5.4.215+, 5.10.145+, 5.15.71+, 5.19.12+, probably 6.0.16, and 6.1.2
3838
///
3939
/// The bug in the first commit means that, if you load the jit-ified perf.data file using
40-
/// `samply load` and use the `jitted-12345-12.so` files as-is, the opened profile will
40+
/// `samply import` and use the `jitted-12345-12.so` files as-is, the opened profile will
4141
/// contain no useful information about JIT functions.
4242
///
4343
/// The broken files have a PT_LOAD command with file offset 0 and address 0, and a

0 commit comments

Comments
 (0)