From: Tvrtko Ursulin <tursulin@ursulin.net>
To: Lucas De Marchi <lucas.demarchi@intel.com>,
igt-dev@lists.freedesktop.org
Cc: Umesh Nerlige Ramappa <umesh.nerlige.ramappa@intel.com>
Subject: Re: [PATCH i-g-t 01/12] lib/igt_drm_fdinfo: Stop passing key twice
Date: Fri, 19 Apr 2024 08:42:50 +0100 [thread overview]
Message-ID: <434d02cf-c683-40e6-b2f6-3462516a104e@ursulin.net> (raw)
In-Reply-To: <20240405060056.59379-2-lucas.demarchi@intel.com>
On 05/04/2024 07:00, Lucas De Marchi wrote:
> Change strstartswith() so it also returns the length, which then can be
> used inside the branch when it matches. A good compiler shall optimize
> out the strlen call since the argument is a constant literal.
>
> With this, the find_kv() is not needed anymore and the difference with
> regard the other branches can be summarized with a new ignore_space()
> helper and the fact it matches the entire key by appending the ':'. The
> helper is added on top of the file so it can be reused later.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> lib/igt_drm_fdinfo.c | 87 +++++++++++++++++++++++---------------------
> 1 file changed, 45 insertions(+), 42 deletions(-)
>
> diff --git a/lib/igt_drm_fdinfo.c b/lib/igt_drm_fdinfo.c
> index 18dbb5d0b..bfc946f24 100644
> --- a/lib/igt_drm_fdinfo.c
> +++ b/lib/igt_drm_fdinfo.c
> @@ -53,6 +53,14 @@ static size_t read_fdinfo(char *buf, const size_t sz, int at, const char *name)
> return count > 0 ? count : 0;
> }
>
> +static const char *ignore_space(const char *s)
> +{
> + for (; *s && isspace(*s); s++)
> + ;
> +
> + return s;
> +}
> +
> static int parse_engine(char *line, struct drm_client_fdinfo *info,
> size_t prefix_len,
> const char **name_map, unsigned int map_entries,
> @@ -104,23 +112,6 @@ static int parse_engine(char *line, struct drm_client_fdinfo *info,
> return found;
> }
>
> -static const char *find_kv(const char *buf, const char *key, size_t keylen)
> -{
> - const char *p;
> -
> - if (strncmp(buf, key, keylen))
> - return NULL;
> -
> - p = buf + keylen;
> - if (*p != ':')
> - return NULL;
> -
> - for (p++; *p && isspace(*p); p++)
> - ;
> -
> - return *p ? p : NULL;
> -}
> -
> static int parse_region(char *line, struct drm_client_fdinfo *info,
> size_t prefix_len,
> const char **region_map, unsigned int region_entries,
> @@ -205,6 +196,11 @@ out:
> } \
> } while (0)
>
> +#define strstartswith(a, b, plen__) ({ \
> + *plen__ = strlen(b); \
> + strncmp(a, b, *plen__) == 0; \
> +})
Did it have to be a macro for optimization to work?
> +
> unsigned int
> __igt_parse_drm_fdinfo(int dir, const char *fd, struct drm_client_fdinfo *info,
> const char **name_map, unsigned int map_entries,
> @@ -222,31 +218,39 @@ __igt_parse_drm_fdinfo(int dir, const char *fd, struct drm_client_fdinfo *info,
>
> while ((l = strtok_r(_buf, "\n", &ctx))) {
> uint64_t val = 0;
> + size_t keylen;
> const char *v;
> int idx;
>
> _buf = NULL;
>
> - if ((v = find_kv(l, "drm-driver", strlen("drm-driver")))) {
> - strncpy(info->driver, v, sizeof(info->driver) - 1);
> - good++;
> - } else if ((v = find_kv(l, "drm-client-id",
> - strlen("drm-client-id")))) {
> - info->id = atol(v);
> - good++;
> - } else if ((v = find_kv(l, "drm-pdev", strlen("drm-pdev")))) {
> - /* optional */
> + if (strstartswith(l, "drm-driver:", &keylen)) {
> + v = l + keylen;
> + v = ignore_space(v);
> + if (*v) {
> + strncpy(info->driver, v, sizeof(info->driver) - 1);
> + good++;
> + }
> + } else if (strstartswith(l, "drm-client-id:", &keylen)) {
> + v = l + keylen;
> + v = ignore_space(v);
> + if (*v) {
> + info->id = atol(v);
> + good++;
> + }
> + } else if (strstartswith(l, "drm-pdev:", &keylen)) {
> + v = l + keylen;
> + v = ignore_space(v);
Removing find_kv looks like a slight negative, given how now all
branches have to repeat v = + keylen; v = ignore_space(v).
I wonder if it would work by extending find_kv to allow prefix matching
mode, something like this (only two branches show to illustrate the modes):
...
} else if ((v = find_kv(l, "drm-pdev", MATCH_FULL, &keylen))) {
/* optional */
strncpy(info->pdev, v, sizeof(info->pdev) - 1);
} else if (find_kv(l, "drm-engine-capacity-", MATCH_PREFIX)) {
idx = parse_engine(l, info, keylen,
name_map, map_entries, &val);
if (idx >= 0) {
info->capacity[idx] = val;
num_capacity++;
}
...
?
Regards,
Tvrtko
> strncpy(info->pdev, v, sizeof(info->pdev) - 1);
> - } else if (!strncmp(l, "drm-engine-capacity-", 20)) {
> - idx = parse_engine(l, info,
> - strlen("drm-engine-capacity-"),
> + } else if (strstartswith(l, "drm-engine-capacity-", &keylen)) {
> + idx = parse_engine(l, info, keylen,
> name_map, map_entries, &val);
> if (idx >= 0) {
> info->capacity[idx] = val;
> num_capacity++;
> }
> - } else if (!strncmp(l, "drm-engine-", 11)) {
> - idx = parse_engine(l, info, strlen("drm-engine-"),
> + } else if (strstartswith(l, "drm-engine-", &keylen)) {
> + idx = parse_engine(l, info, keylen,
> name_map, map_entries, &val);
> if (idx >= 0) {
> if (!info->capacity[idx])
> @@ -256,25 +260,24 @@ __igt_parse_drm_fdinfo(int dir, const char *fd, struct drm_client_fdinfo *info,
> if (idx > info->last_engine_index)
> info->last_engine_index = idx;
> }
> - } else if (!strncmp(l, "drm-total-", 10)) {
> - idx = parse_region(l, info, strlen("drm-total-"),
> + } else if (strstartswith(l, "drm-total-", &keylen)) {
> + idx = parse_region(l, info, keylen,
> region_map, region_entries, &val);
> UPDATE_REGION(idx, total, val);
> - } else if (!strncmp(l, "drm-shared-", 11)) {
> - idx = parse_region(l, info, strlen("drm-shared-"),
> + } else if (strstartswith(l, "drm-shared-", &keylen)) {
> + idx = parse_region(l, info, keylen,
> region_map, region_entries, &val);
> UPDATE_REGION(idx, shared, val);
> -
> - } else if (!strncmp(l, "drm-resident-", 13)) {
> - idx = parse_region(l, info, strlen("drm-resident-"),
> + } else if (strstartswith(l, "drm-resident-", &keylen)) {
> + idx = parse_region(l, info, keylen,
> region_map, region_entries, &val);
> UPDATE_REGION(idx, resident, val);
> - } else if (!strncmp(l, "drm-purgeable-", 14)) {
> - idx = parse_region(l, info, strlen("drm-purgeable-"),
> + } else if (strstartswith(l, "drm-purgeable-", &keylen)) {
> + idx = parse_region(l, info, keylen,
> region_map, region_entries, &val);
> UPDATE_REGION(idx, purgeable, val);
> - } else if (!strncmp(l, "drm-active-", 11)) {
> - idx = parse_region(l, info, strlen("drm-active-"),
> + } else if (strstartswith(l, "drm-active-", &keylen)) {
> + idx = parse_region(l, info, keylen,
> region_map, region_entries, &val);
> UPDATE_REGION(idx, active, val);
> }
next prev parent reply other threads:[~2024-04-19 7:42 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-05 6:00 [PATCH i-g-t 00/12] gputop: Add support for xe Lucas De Marchi
2024-04-05 6:00 ` [PATCH i-g-t 01/12] lib/igt_drm_fdinfo: Stop passing key twice Lucas De Marchi
2024-04-18 22:14 ` Umesh Nerlige Ramappa
2024-04-19 7:42 ` Tvrtko Ursulin [this message]
2024-04-19 16:35 ` Lucas De Marchi
2024-04-19 18:34 ` Tvrtko Ursulin
2024-04-05 6:00 ` [PATCH i-g-t 02/12] lib/igt_drm_fdinfo: Remove prefix arg from parse functions Lucas De Marchi
2024-04-05 6:00 ` [PATCH i-g-t 03/12] lib/igt_drm_fdinfo: Fix wrong name len assert Lucas De Marchi
2024-04-18 22:25 ` Umesh Nerlige Ramappa
2024-04-19 7:48 ` Tvrtko Ursulin
2024-04-19 7:49 ` Tvrtko Ursulin
2024-04-05 6:00 ` [PATCH i-g-t 04/12] lib/igt_drm_fdinfo: Assert pdev is not truncated Lucas De Marchi
2024-04-18 22:27 ` Umesh Nerlige Ramappa
2024-04-05 6:00 ` [PATCH i-g-t 05/12] lib/igt_drm_fdinfo: Detect invalid drm-client-id Lucas De Marchi
2024-04-18 22:31 ` Umesh Nerlige Ramappa
2024-04-05 6:00 ` [PATCH i-g-t 06/12] lib/igt_drm_fdinfo: Stop ignoring space where not needed Lucas De Marchi
2024-04-18 22:34 ` Umesh Nerlige Ramappa
2024-04-05 6:00 ` [PATCH i-g-t 07/12] lib/igt_drm_fdinfo: Parse unit for engine utilization Lucas De Marchi
2024-04-18 22:48 ` Umesh Nerlige Ramappa
2024-04-19 7:58 ` Tvrtko Ursulin
2024-04-19 16:21 ` Lucas De Marchi
2024-04-19 18:32 ` Tvrtko Ursulin
2024-04-05 6:00 ` [PATCH i-g-t 08/12] lib/igt_drm_fdinfo: Store 2 counters for "ticks" unit Lucas De Marchi
2024-04-05 6:00 ` [PATCH i-g-t 09/12] lib/igt_drm_clients: Store second data for ticks busyness Lucas De Marchi
2024-04-05 6:00 ` [PATCH i-g-t 10/12] gputop: Extract method to update console size Lucas De Marchi
2024-04-18 22:51 ` Umesh Nerlige Ramappa
2024-04-05 6:00 ` [PATCH i-g-t 11/12] gputop: Extract clrscr() Lucas De Marchi
2024-04-18 22:52 ` Umesh Nerlige Ramappa
2024-04-05 6:00 ` [PATCH i-g-t 12/12] RFC: gputop: Add support for ticks unit Lucas De Marchi
2024-04-05 8:04 ` ✗ GitLab.Pipeline: warning for gputop: Add support for xe Patchwork
2024-04-05 8:17 ` ✓ CI.xeBAT: success " Patchwork
2024-04-05 8:27 ` ✓ Fi.CI.BAT: " Patchwork
2024-04-05 16:22 ` ✗ Fi.CI.IGT: failure " Patchwork
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=434d02cf-c683-40e6-b2f6-3462516a104e@ursulin.net \
--to=tursulin@ursulin.net \
--cc=igt-dev@lists.freedesktop.org \
--cc=lucas.demarchi@intel.com \
--cc=umesh.nerlige.ramappa@intel.com \
/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
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox