From: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
To: Petri Latvala <petri.latvala@intel.com>, igt-dev@lists.freedesktop.org
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Subject: Re: [igt-dev] [PATCH i-g-t] intel_reg: Use static iterator
Date: Thu, 23 Jan 2020 13:49:28 +0000 [thread overview]
Message-ID: <0e1e80fa-aee4-774d-0a3a-b9a434a01af2@linux.intel.com> (raw)
In-Reply-To: <20200123134813.21466-1-petri.latvala@intel.com>
On 23/01/2020 13:48, Petri Latvala wrote:
> Convert open-coded for loops to __for_each_static_engine. That takes
> care of the last direct user of intel_execution_engines2.
>
> More work is needed to make intel_reg support dynamically queried
> engines but this restores the old functionality.
>
> Signed-off-by: Petri Latvala <petri.latvala@intel.com>
> Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> ---
> tools/intel_reg.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/tools/intel_reg.c b/tools/intel_reg.c
> index 847fdbed..5f1beba4 100644
> --- a/tools/intel_reg.c
> +++ b/tools/intel_reg.c
> @@ -252,7 +252,7 @@ static const struct intel_execution_engine2 *find_engine(const char *name)
> if (name[0] == '-')
> name++;
>
> - for (e = intel_execution_engines2; e->name; e++) {
> + __for_each_static_engine(e) {
> if (!strcasecmp(e->name, name))
> return e;
> }
> @@ -783,7 +783,7 @@ static int intel_reg_help(struct config *config, int argc, char *argv[])
> printf("\n\n");
>
> printf("ENGINE is one of:\n");
> - for (e = intel_execution_engines2; e->name; e++)
> + __for_each_static_engine(e)
> printf("%s -%s ", e->name, e->name);
> printf("\n\n");
>
>
My bad for not grepping outside lib and tests with the previous patch.
Thanks for jumping in!
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Regards,
Tvrtko
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
next prev parent reply other threads:[~2020-01-23 13:49 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-23 13:48 [igt-dev] [PATCH i-g-t] intel_reg: Use static iterator Petri Latvala
2020-01-23 13:49 ` Tvrtko Ursulin [this message]
2020-01-23 15:33 ` [igt-dev] ✗ Fi.CI.BAT: failure for " 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=0e1e80fa-aee4-774d-0a3a-b9a434a01af2@linux.intel.com \
--to=tvrtko.ursulin@linux.intel.com \
--cc=igt-dev@lists.freedesktop.org \
--cc=petri.latvala@intel.com \
--cc=tvrtko.ursulin@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