From: Johannes Berg Date: Wed, 17 Apr 2024 08:27:45 +0000 (+0200) Subject: um: time-travel: fix time-travel-start option X-Git-Tag: v6.11-rc1~48^2~34 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7d0a8a490aa3a2a82de8826aaf1dfa38575cb77a;p=thirdparty%2Flinux.git um: time-travel: fix time-travel-start option We need to have the = as part of the option so that the value can be parsed properly. Also document that it must be given in nanoseconds, not seconds. Fixes: 065038706f77 ("um: Support time travel mode") Link: https://patch.msgid.link/20240417102744.14b9a9d4eba0.Ib22e9136513126b2099d932650f55f193120cd97@changeid Signed-off-by: Johannes Berg --- diff --git a/arch/um/kernel/time.c b/arch/um/kernel/time.c index a8bfe8be15260..5b5fd8f68d9c1 100644 --- a/arch/um/kernel/time.c +++ b/arch/um/kernel/time.c @@ -875,9 +875,9 @@ static int setup_time_travel_start(char *str) return 1; } -__setup("time-travel-start", setup_time_travel_start); +__setup("time-travel-start=", setup_time_travel_start); __uml_help(setup_time_travel_start, -"time-travel-start=\n" +"time-travel-start=\n" "Configure the UML instance's wall clock to start at this value rather than\n" "the host's wall clock at the time of UML boot.\n"); #endif