From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Bronnikov <estetus@gmail.com> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 4/4] sysprof: fix a message with stop without run Date: Mon, 10 Feb 2025 17:52:20 +0300 [thread overview] Message-ID: <Z6oSpEu4oHels0u5@root> (raw) In-Reply-To: <b49c5fac5d70e594b67b4ea2e8e8dc419324d4bc.1738663201.git.sergeyb@tarantool.org> Hi, Sergey! Thanks for the patch! Please consider my comments below. On 04.02.25, Sergey Bronnikov wrote: > The function `misc.sysprof.stop()` reports that profiler is > already running: > > | $ ./build/src/luajit -e 'print(misc.sysprof.stop())' Minor: You may omit a ./build here, but this is a matter of taste, so feel free to ignore. > | nil profiler is running already 22 > > The patch fixes that. Unfortunatelly not: | $ git --no-pager log --oneline -n1 --no-decorate && ./src/luajit -e 'print(misc.sysprof.stop())' | b49c5fac sysprof: fix a message with stop without run | nil profiler is running already 22 See my comments below. Please add the follow-up to the tarantool/tarantool#781. > --- > src/lj_sysprof.c | 2 +- > test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua | 5 +++-- > 2 files changed, 4 insertions(+), 3 deletions(-) > > diff --git a/src/lj_sysprof.c b/src/lj_sysprof.c > index 88c7a41b..b76f503c 100644 > --- a/src/lj_sysprof.c > +++ b/src/lj_sysprof.c > @@ -493,7 +493,7 @@ int lj_sysprof_stop(lua_State *L) > global_State *g = sp->g; > struct lj_wbuf *out = &sp->out; > > - if (SPS_IDLE == sp->state) > + if (SPS_PROFILE != sp->state) This check is correct. It checks that the profiler has no error or is not running (i.e., that it is stopped). With the new check, a case with an error during profiling will be masked. It looks like we should add this case in the `misc.sysprof.stop()` (it uses `sysprof_error()` which handles start cases). > return PROFILE_ERRRUN; > else if (G(L) != g) > return PROFILE_ERRUSE; > diff --git a/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua b/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua > index 68a4b72f..91f9ca5c 100644 > --- a/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua > +++ b/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua > @@ -10,7 +10,7 @@ local test = tap.test("misc-sysprof-lapi"):skipcond({ > ["Disabled due to #10803"] = os.getenv("LUAJIT_TEST_USE_VALGRIND"), > }) > > -test:plan(33) > +test:plan(34) > > jit.off() > -- XXX: Run JIT tuning functions in a safe frame to avoid errors > @@ -98,7 +98,8 @@ assert(res, err) > > -- Not running. > res, err, errno = misc.sysprof.stop() > -test:ok(res == nil and err, "res and error with not running") > +test:is(res, nil, "res with not running") > +test:ok(err:match("profiler is running already"), "error with not running") I suppose there is bad copy-pasting here. It should be: 'profiler is not running'. This is why the test passes. > test:ok(type(errno) == "number", "errno with not running") > > -- Bad path. > -- > 2.34.1 > -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2025-02-10 14:53 UTC|newest] Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-02-04 10:03 [Tarantool-patches] [PATCH luajit 0/4] Fix sysprof issues Sergey Bronnikov via Tarantool-patches 2025-02-04 10:03 ` [Tarantool-patches] [PATCH luajit 1/4] test: add descriptions to sysprof testcases Sergey Bronnikov via Tarantool-patches 2025-02-10 14:51 ` Sergey Kaplun via Tarantool-patches 2025-02-11 8:16 ` Sergey Bronnikov via Tarantool-patches 2025-02-04 10:03 ` [Tarantool-patches] [PATCH luajit 2/4] sysprof: fix typo in the comment Sergey Bronnikov via Tarantool-patches 2025-02-10 14:51 ` Sergey Kaplun via Tarantool-patches 2025-02-11 8:21 ` Sergey Bronnikov via Tarantool-patches 2025-02-04 10:03 ` [Tarantool-patches] [PATCH luajit 3/4] sysprof: introduce specific errors and default mode Sergey Bronnikov via Tarantool-patches 2025-02-10 14:51 ` Sergey Kaplun via Tarantool-patches 2025-02-13 11:14 ` Sergey Bronnikov via Tarantool-patches 2025-02-04 10:03 ` [Tarantool-patches] [PATCH luajit 4/4] sysprof: fix a message with stop without run Sergey Bronnikov via Tarantool-patches 2025-02-10 14:52 ` Sergey Kaplun via Tarantool-patches [this message] 2025-02-11 9:49 ` Sergey Bronnikov via Tarantool-patches
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=Z6oSpEu4oHels0u5@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=estetus@gmail.com \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 4/4] sysprof: fix a message with stop without run' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox