All of lore.kernel.org
 help / color / mirror / Atom feed
From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
To: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>,
	Petri Latvala <petri.latvala@intel.com>,
	Arkadiusz Hiler <arek@hiler.eu>
Cc: igt-dev@lists.freedesktop.org, Anson Jacob <Anson.Jacob@amd.com>,
	"Vudum, Lakshminarayana" <lakshminarayana.vudum@intel.com>,
	Victor Lu <victorchengchi.lu@amd.com>
Subject: Re: [igt-dev] [PATCH i-g-t V2] tests/kms_plane_multiple: Start continuous CRC capture after commit
Date: Tue, 6 Jul 2021 16:47:38 +0300	[thread overview]
Message-ID: <136ed2af-a0f1-ebb6-23a9-927a5985efaf@gmail.com> (raw)
In-Reply-To: <20210706124524.nr4t3qwoyu5kodfm@outlook.office365.com>

On 6.7.2021 15.45, Rodrigo Siqueira wrote:
> On 06/28, Anson Jacob wrote:
>> From: Victor Lu <victorchengchi.lu@amd.com>
>>
>> atomic-pipe-a-tiling-none fails on amdgpu(Raven) because it fails to read the
>> CRC when there is no CRC generated (zeroed framebuffer). Move
>> igt_pipe_crc_start to be called after the first nonzero FB commit.
>>
>> Signed-off-by: Victor Lu <victorchengchi.lu@amd.com>
>> Acked-by: Anson Jacob <Anson.Jacob@amd.com>
>> Cc: Petri Latvala <petri.latvala@intel.com>
>> Cc: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
>> Cc: Harry Wentland <harry.wentland@amd.com>
>> Cc: Mark Yacoub <markyacoub@chromium.org>
>> ---
>>   tests/kms_plane_multiple.c | 7 +++++--
>>   1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/tests/kms_plane_multiple.c b/tests/kms_plane_multiple.c
>> index 93c6ea7d269d..4424b864b2d6 100644
>> --- a/tests/kms_plane_multiple.c
>> +++ b/tests/kms_plane_multiple.c
>> @@ -288,6 +288,7 @@ test_plane_position_with_output(data_t *data, enum pipe pipe,
>>   	igt_plane_t *plane;
>>   	int i;
>>   	int err, c = 0;
>> +	int crc_enabled = 0;
>>   	int iterations = opt.iterations < 1 ? 1 : opt.iterations;
>>   	bool loop_forever;
>>   	char info[256];
>> @@ -327,14 +328,16 @@ test_plane_position_with_output(data_t *data, enum pipe pipe,
>>   		 igt_output_name(output), kmstest_pipe_name(pipe), c,
>>   		 info, opt.seed);
>>   
>> -	igt_pipe_crc_start(data->pipe_crc);
>> -
>>   	i = 0;
>>   	while (i < iterations || loop_forever) {
>>   		/* randomize planes and set up the holes */
>>   		prepare_planes(data, pipe, &blue, tiling, c, output);
>>   
>>   		igt_display_commit2(&data->display, COMMIT_ATOMIC);
>> +		if (!crc_enabled) {
>> +			igt_pipe_crc_start(data->pipe_crc);
>> +			crc_enabled = 1;
>> +		}
>>   
>>   		igt_pipe_crc_get_current(data->display.drm_fd, data->pipe_crc, &crc);
>>   
>> -- 
>> 2.25.1
>>
> 
> Hi Petri and Hiler,
> 
> I was looking at the failure log for this patch [1], and I did not find
> any reference to a failure related to kms_plane_multiple, which makes me
> think this is a false positive. In this case, is it worth resubmitting
> the patch for CI?
> 
> 1. https://patchwork.freedesktop.org/series/81857/
> 

Hi Rodrigo,

In cases like this where your change was not responsible for ci reported 
failure, ie. false positive, you can report it to Lakshminarayana Vudum 
(CC'd). After reporting to Lakshmi there's no need for rerun of the series.

/Juha-Pekka

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2021-07-06 13:47 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-28 13:14 [igt-dev] [PATCH i-g-t V2] tests/kms_plane_multiple: Start continuous CRC capture after commit Anson Jacob
2021-06-28 13:50 ` Harry Wentland
2021-06-28 15:46 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_plane_multiple: Start continuous CRC capture after commit (rev2) Patchwork
2021-06-28 19:20 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2021-07-06 12:45 ` [igt-dev] [PATCH i-g-t V2] tests/kms_plane_multiple: Start continuous CRC capture after commit Rodrigo Siqueira
2021-07-06 13:47   ` Juha-Pekka Heikkila [this message]
2021-07-06 16:21     ` Vudum, Lakshminarayana
2021-07-06 16:02 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_plane_multiple: Start continuous CRC capture after commit (rev2) 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=136ed2af-a0f1-ebb6-23a9-927a5985efaf@gmail.com \
    --to=juhapekka.heikkila@gmail.com \
    --cc=Anson.Jacob@amd.com \
    --cc=Rodrigo.Siqueira@amd.com \
    --cc=arek@hiler.eu \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=lakshminarayana.vudum@intel.com \
    --cc=petri.latvala@intel.com \
    --cc=victorchengchi.lu@amd.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.