mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-04 17:44:14 +08:00
53e76d35f7
Move common guest options into include files. Use attribute substitution to customize an example, using "[verse]" to define the block instead of a "literal" block which does not permit substitution. Signed-off-by: Adrian Hunter <adrian.hunter@intel.com> Cc: Ian Rogers <irogers@google.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lore.kernel.org/r/20220811170411.84154-4-adrian.hunter@intel.com Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
12 lines
490 B
Plaintext
12 lines
490 B
Plaintext
--guestmount=<path>::
|
|
Guest OS root file system mount directory. Users mount guest OS
|
|
root directories under <path> by a specific filesystem access method,
|
|
typically, sshfs.
|
|
For example, start 2 guest OS, one's pid is 8888 and the other's is 9999:
|
|
[verse]
|
|
$ mkdir \~/guestmount
|
|
$ cd \~/guestmount
|
|
$ sshfs -o allow_other,direct_io -p 5551 localhost:/ 8888/
|
|
$ sshfs -o allow_other,direct_io -p 5552 localhost:/ 9999/
|
|
$ perf {GMEXAMPLECMD} --guestmount=~/guestmount {GMEXAMPLESUBCMD}
|