aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2022-02-18 00:15:12 +0100
committerRobert Swiecki <robert@swiecki.net>2022-02-18 00:15:12 +0100
commitcdf8e8f14cca8626a84ccb80cc905306d5e81791 (patch)
treec4ce9359ccc875c6748b8c9305768659c6a907dd
parent328ae491a7f55985cc6dc5524cda6672dabd6df2 (diff)
downloadnsjail-cdf8e8f14cca8626a84ccb80cc905306d5e81791.tar.gz
config: info about prctl(PR_SET_TSC, PR_TSC_ENABLE) being intel-only
-rw-r--r--cmdline.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline.cc b/cmdline.cc
index e348caf..bbefaef 100644
--- a/cmdline.cc
+++ b/cmdline.cc
@@ -166,7 +166,7 @@ struct custom_option custom_opts[] = {
{ { "macvlan_vs_gw", required_argument, NULL, 0x703 }, "Default GW for the 'vs' interface (e.g. \"192.168.0.1\")" },
{ { "macvlan_vs_ma", required_argument, NULL, 0x705 }, "MAC-address of the 'vs' interface (e.g. \"ba:ad:ba:be:45:00\")" },
{ { "macvlan_vs_mo", required_argument, NULL, 0x706 }, "Mode of the 'vs' interface. Can be either 'private', 'vepa', 'bridge' or 'passthru' (default: 'private')" },
- { { "disable_tsc", no_argument, NULL, 0x707 }, "Disable rdtsc and rdtscp instructions. WARNING: To make it effective, you also need to forbid `prctl(PR_SET_TSC, PR_TSC_ENABLE, ...)` in seccomp rules!" },
+ { { "disable_tsc", no_argument, NULL, 0x707 }, "Disable rdtsc and rdtscp instructions. WARNING: To make it effective, you also need to forbid `prctl(PR_SET_TSC, PR_TSC_ENABLE, ...)` in seccomp rules! (x86 and x86_64 only)" },
};
// clang-format on