From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Kaplun <skaplun@tarantool.org>, Sergey Bronnikov <estetus@gmail.com> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit 3/3] sysprof: fix a message with stop without run Date: Fri, 7 Mar 2025 13:44:20 +0300 [thread overview] Message-ID: <9abf0268-66ed-43c4-8bf2-bb71534c3b7e@tarantool.org> (raw) In-Reply-To: <Z8qeiApzqTniyPpC@root> [-- Attachment #1: Type: text/plain, Size: 2037 bytes --] Hi, Sergey! both issues were fixed and force-pushed to the branch. Sergey On 07.03.2025 10:21, Sergey Kaplun via Tarantool-patches wrote: > Hi, Sergey! > Thanks for the fixes! > LGTM, with 2 minor comments below. > > On 06.03.25, Sergey Bronnikov wrote: >> When sysprof is not started the function `misc.sysprof.stop()` > Typo: s/started/started,/ Fixed. > >> reports that the profiler is already running: >> >> | $ ./src/luajit -e 'print(misc.sysprof.stop())' >> | nil profiler is running already 22 >> >> The patch fixes that: >> >> | $ ./src/luajit -e 'print(misc.sysprof.stop())' >> | nil profiler is not running 22 >> >> Follows up tarantool/tarantool#781 >> --- > <snipped> > >> + if (LJ_UNLIKELY(status == PROFILE_ERRRUN)) { >> + lua_pushnil(L); >> + lua_pushstring(L, err2msg(LJ_ERR_PROF_NOTRUNNING)); >> + lua_pushinteger(L, EINVAL); >> + return 3; >> + } >> if (LJ_UNLIKELY(status != PROFILE_SUCCESS)) > It looks like more natural now to use `else if` here now. Fixed, updated version: --- a/src/lib_misc.c +++ b/src/lib_misc.c @@ -336,8 +336,14 @@ LJLIB_CF(misc_sysprof_stop) return prof_error(L, PROFILE_ERRUSE, err_details); #else int status = luaM_sysprof_stop(L); - if (LJ_UNLIKELY(status != PROFILE_SUCCESS)) + if (LJ_UNLIKELY(status == PROFILE_ERRRUN)) { + lua_pushnil(L); + lua_pushstring(L, err2msg(LJ_ERR_PROF_NOTRUNNING)); + lua_pushinteger(L, EINVAL); + return 3; + } else if (LJ_UNLIKELY(status != PROFILE_SUCCESS)) { return prof_error(L, status, NULL); + } lua_pushboolean(L, 1); return 1; > >> return prof_error(L, status, NULL); >> >> diff --git a/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua b/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua >> index 91ea461b..f316c390 100644 >> --- a/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua >> +++ b/test/tarantool-tests/profilers/misclib-sysprof-lapi.test.lua > <snipped> > >> -- >> 2.43.0 >> [-- Attachment #2: Type: text/html, Size: 3600 bytes --]
next prev parent reply other threads:[~2025-03-07 10:44 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2025-03-06 16:18 [Tarantool-patches] [PATCH luajit 0/3] Fix sysprof error on stop not started sysprof Sergey Bronnikov via Tarantool-patches 2025-03-06 16:18 ` [Tarantool-patches] [PATCH luajit 1/3] sysprof: rename sysprof_error to prof_error Sergey Bronnikov via Tarantool-patches 2025-03-06 16:18 ` [Tarantool-patches] [PATCH luajit 2/3] misc: use prof_error for handling errors Sergey Bronnikov via Tarantool-patches 2025-03-07 7:18 ` Sergey Kaplun via Tarantool-patches 2025-03-06 16:19 ` [Tarantool-patches] [PATCH luajit 3/3] sysprof: fix a message with stop without run Sergey Bronnikov via Tarantool-patches 2025-03-07 7:21 ` Sergey Kaplun via Tarantool-patches 2025-03-07 10:44 ` Sergey Bronnikov via Tarantool-patches [this message] -- strict thread matches above, loose matches on Subject: below -- 2025-02-25 7:32 [Tarantool-patches] [PATCH luajit 0/3] Fix sysprof error on stop not started sysprof Sergey Bronnikov via Tarantool-patches 2025-02-25 7:32 ` [Tarantool-patches] [PATCH luajit 3/3] sysprof: fix a message with stop without run Sergey Bronnikov via Tarantool-patches 2025-03-05 14:52 ` Sergey Kaplun via Tarantool-patches 2025-03-06 15:18 ` 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=9abf0268-66ed-43c4-8bf2-bb71534c3b7e@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=estetus@gmail.com \ --cc=sergeyb@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit 3/3] 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