All of lore.kernel.org
 help / color / mirror / Atom feed
From: Antonio Argenziano <antonio.argenziano@intel.com>
To: Katarzyna Dec <katarzyna.dec@intel.com>, igt-dev@lists.freedesktop.org
Subject: Re: [igt-dev] [PATCH i-g-t v3 3/5] lib: Adjust media_spin and gpu_fill to our code style
Date: Thu, 10 May 2018 10:11:51 -0700	[thread overview]
Message-ID: <354fa98d-7a15-c640-72c9-e113b1b51f5b@intel.com> (raw)
In-Reply-To: <20180510131336.GD10675@kdec5-desk.ger.corp.intel.com>



On 10/05/18 06:13, Katarzyna Dec wrote:
> On Fri, May 04, 2018 at 03:02:16PM +0200, Katarzyna Dec wrote:
>> Let's adjust code to our coding style during refactoring
>> media_spin code.
>>
>> v2: fixed minor typos
>> v3: few more style changes
>>
>> Signed-off-by: Katarzyna Dec <katarzyna.dec@intel.com>
>> Cc: Lukasz Kalamarz <lukasz.kalamarz@intel.com>
>> Cc: Antonio Argenziano <antonio.argenziano@intel.com>
> 
> Any thoughts on this patch version?
> I would like to have this series merged quite soon - another patches
> dependent on this series are waiting.

The change looks OK, although, in quite a few places, there is a change 
in indent to align the function parameters on the same column or an 
/s/unsigned/unsigned int which I could not find in 
'process/coding-style.rst'. So maybe we should change the commit message 
to say that this is a cosmetic change to improve readability or 
something along those lines.

Antonio

> 
> Thanks :)
> Kasia
> 
>> ---
>>   lib/gpgpu_fill.c | 15 +++++------
>>   lib/gpu_fill.c   | 77 ++++++++++++++++++++++++++++++++++----------------------
>>   lib/gpu_fill.h   | 24 ++++++++++--------
>>   lib/media_spin.c |  6 +++--
>>   4 files changed, 71 insertions(+), 51 deletions(-)
>>
>> diff --git a/lib/gpgpu_fill.c b/lib/gpgpu_fill.c
>> index 010dde06..52925a5c 100644
>> --- a/lib/gpgpu_fill.c
>> +++ b/lib/gpgpu_fill.c
>> @@ -112,9 +112,8 @@ gen7_gpgpu_fillfunc(struct intel_batchbuffer *batch,
>>   	batch->ptr = &batch->buffer[BATCH_STATE_SPLIT];
>>   
>>   	/*
>> -	 * const buffer needs to fill for every thread, but as we have just 1 thread
>> -	 * per every group, so need only one curbe data.
>> -	 *
>> +	 * const buffer needs to fill for every thread, but as we have just 1
>> +	 * thread per every group, so need only one curbe data.
>>   	 * For each thread, just use thread group ID for buffer offset.
>>   	 */
>>   	curbe_buffer = gen7_fill_curbe_buffer_data(batch, color);
>> @@ -160,9 +159,8 @@ gen8_gpgpu_fillfunc(struct intel_batchbuffer *batch,
>>   	batch->ptr = &batch->buffer[BATCH_STATE_SPLIT];
>>   
>>   	/*
>> -	 * const buffer needs to fill for every thread, but as we have just 1 thread
>> -	 * per every group, so need only one curbe data.
>> -	 *
>> +	 * const buffer needs to fill for every thread, but as we have just 1
>> +	 * thread per every group, so need only one curbe data.
>>   	 * For each thread, just use thread group ID for buffer offset.
>>   	 */
>>   	curbe_buffer = gen7_fill_curbe_buffer_data(batch, color);
>> @@ -208,9 +206,8 @@ gen9_gpgpu_fillfunc(struct intel_batchbuffer *batch,
>>   	batch->ptr = &batch->buffer[BATCH_STATE_SPLIT];
>>   
>>   	/*
>> -	 * const buffer needs to fill for every thread, but as we have just 1 thread
>> -	 * per every group, so need only one curbe data.
>> -	 *
>> +	 * const buffer needs to fill for every thread, but as we have just 1
>> +	 * thread per every group, so need only one curbe data.
>>   	 * For each thread, just use thread group ID for buffer offset.
>>   	 */
>>   	curbe_buffer = gen7_fill_curbe_buffer_data(batch, color);
>> diff --git a/lib/gpu_fill.c b/lib/gpu_fill.c
>> index 8dab39df..24e03cf2 100644
>> --- a/lib/gpu_fill.c
>> +++ b/lib/gpu_fill.c
>> @@ -32,13 +32,13 @@ gen7_render_flush(struct intel_batchbuffer *batch, uint32_t batch_end)
>>   	ret = drm_intel_bo_subdata(batch->bo, 0, 4096, batch->buffer);
>>   	if (ret == 0)
>>   		ret = drm_intel_bo_mrb_exec(batch->bo, batch_end,
>> -					NULL, 0, 0, 0);
>> +					    NULL, 0, 0, 0);
>>   	igt_assert(ret == 0);
>>   }
>>   
>>   uint32_t
>>   gen7_fill_curbe_buffer_data(struct intel_batchbuffer *batch,
>> -			uint8_t color)
>> +			    uint8_t color)
>>   {
>>   	uint8_t *curbe_buffer;
>>   	uint32_t offset;
>> @@ -132,8 +132,9 @@ gen7_fill_kernel(struct intel_batchbuffer *batch,
>>   }
>>   
>>   uint32_t
>> -gen7_fill_interface_descriptor(struct intel_batchbuffer *batch, struct igt_buf *dst,
>> -			       const uint32_t kernel[][4], size_t size)
>> +gen7_fill_interface_descriptor(struct intel_batchbuffer *batch,
>> +			       struct igt_buf *dst, const uint32_t kernel[][4],
>> +			       size_t size)
>>   {
>>   	struct gen7_interface_descriptor_data *idd;
>>   	uint32_t offset;
>> @@ -171,16 +172,19 @@ gen7_emit_state_base_address(struct intel_batchbuffer *batch)
>>   	OUT_BATCH(0);
>>   
>>   	/* surface */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
>> +		  BASE_ADDRESS_MODIFY);
>>   
>>   	/* dynamic */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
>> +		  BASE_ADDRESS_MODIFY);
>>   
>>   	/* indirect */
>>   	OUT_BATCH(0);
>>   
>>   	/* instruction */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
>> +		  BASE_ADDRESS_MODIFY);
>>   
>>   	/* general/dynamic/indirect/instruction access Bound */
>>   	OUT_BATCH(0);
>> @@ -204,8 +208,8 @@ gen7_emit_vfe_state(struct intel_batchbuffer *batch)
>>   	OUT_BATCH(0);
>>   
>>   	/* urb entry size & curbe size */
>> -	OUT_BATCH(2 << 16 | 	/* in 256 bits unit */
>> -		2);		/* in 256 bits unit */
>> +	OUT_BATCH(2 << 16 |	/* in 256 bits unit */
>> +		  2);		/* in 256 bits unit */
>>   
>>   	/* scoreboard */
>>   	OUT_BATCH(0);
>> @@ -229,7 +233,7 @@ gen7_emit_vfe_state_gpgpu(struct intel_batchbuffer *batch)
>>   	OUT_BATCH(0);
>>   
>>   	/* urb entry size & curbe size */
>> -	OUT_BATCH(0 << 16 | 	/* URB entry size in 256 bits unit */
>> +	OUT_BATCH(0 << 16 |	/* URB entry size in 256 bits unit */
>>   		  1);		/* CURBE entry size in 256 bits unit */
>>   
>>   	/* scoreboard */
>> @@ -250,7 +254,8 @@ gen7_emit_curbe_load(struct intel_batchbuffer *batch, uint32_t curbe_buffer)
>>   }
>>   
>>   void
>> -gen7_emit_interface_descriptor_load(struct intel_batchbuffer *batch, uint32_t interface_descriptor)
>> +gen7_emit_interface_descriptor_load(struct intel_batchbuffer *batch,
>> +				    uint32_t interface_descriptor)
>>   {
>>   	OUT_BATCH(GEN7_MEDIA_INTERFACE_DESCRIPTOR_LOAD | (4 - 2));
>>   	OUT_BATCH(0);
>> @@ -259,14 +264,16 @@ gen7_emit_interface_descriptor_load(struct intel_batchbuffer *batch, uint32_t in
>>   		OUT_BATCH(sizeof(struct gen7_interface_descriptor_data));
>>   	else
>>   		OUT_BATCH(sizeof(struct gen8_interface_descriptor_data));
>> -	/* interface descriptor address, is relative to the dynamics base address */
>> +	/* interface descriptor address, is relative to the dynamics base
>> +	 * address
>> +	 */
>>   	OUT_BATCH(interface_descriptor);
>>   }
>>   
>>   void
>>   gen7_emit_media_objects(struct intel_batchbuffer *batch,
>> -			unsigned x, unsigned y,
>> -			unsigned width, unsigned height)
>> +			unsigned int x, unsigned int y,
>> +			unsigned int width, unsigned int height)
>>   {
>>   	int i, j;
>>   
>> @@ -288,7 +295,8 @@ gen7_emit_media_objects(struct intel_batchbuffer *batch,
>>   			/* inline data (xoffset, yoffset) */
>>   			OUT_BATCH(x + i * 16);
>>   			OUT_BATCH(y + j * 16);
>> -			if (AT_LEAST_GEN(batch->devid, 8) && !IS_CHERRYVIEW(batch->devid))
>> +			if (AT_LEAST_GEN(batch->devid, 8) &&
>> +			    !IS_CHERRYVIEW(batch->devid))
>>   				gen8_emit_media_state_flush(batch);
>>   		}
>>   	}
>> @@ -296,8 +304,8 @@ gen7_emit_media_objects(struct intel_batchbuffer *batch,
>>   
>>   void
>>   gen7_emit_gpgpu_walk(struct intel_batchbuffer *batch,
>> -		     unsigned x, unsigned y,
>> -		     unsigned width, unsigned height)
>> +		     unsigned int x, unsigned int y,
>> +		     unsigned int width, unsigned int height)
>>   {
>>   	uint32_t x_dim, y_dim, tmp, right_mask;
>>   
>> @@ -400,8 +408,7 @@ gen8_fill_surface_state(struct intel_batchbuffer *batch,
>>   
>>   	ret = drm_intel_bo_emit_reloc(batch->bo,
>>   				intel_batchbuffer_subdata_offset(batch, ss) + 8 * 4,
>> -				buf->bo, 0,
>> -				read_domain, write_domain);
>> +				buf->bo, 0, read_domain, write_domain);
>>   	igt_assert(ret == 0);
>>   
>>   	ss->ss2.height = igt_buf_height(buf) - 1;
>> @@ -417,7 +424,9 @@ gen8_fill_surface_state(struct intel_batchbuffer *batch,
>>   }
>>   
>>   uint32_t
>> -gen8_fill_interface_descriptor(struct intel_batchbuffer *batch, struct igt_buf *dst,  const uint32_t kernel[][4], size_t size)
>> +gen8_fill_interface_descriptor(struct intel_batchbuffer *batch,
>> +			       struct igt_buf *dst, const uint32_t kernel[][4],
>> +			       size_t size)
>>   {
>>   	struct gen8_interface_descriptor_data *idd;
>>   	uint32_t offset;
>> @@ -464,15 +473,17 @@ gen8_emit_state_base_address(struct intel_batchbuffer *batch)
>>   	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_SAMPLER, 0, BASE_ADDRESS_MODIFY);
>>   
>>   	/* dynamic */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION,
>> -		0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo,
>> +		  I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION,
>> +		  0, BASE_ADDRESS_MODIFY);
>>   
>>   	/* indirect */
>>   	OUT_BATCH(0);
>>   	OUT_BATCH(0);
>>   
>>   	/* instruction */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
>> +		  BASE_ADDRESS_MODIFY);
>>   
>>   	/* general state buffer size */
>>   	OUT_BATCH(0xfffff000 | 1);
>> @@ -480,7 +491,9 @@ gen8_emit_state_base_address(struct intel_batchbuffer *batch)
>>   	OUT_BATCH(1 << 12 | 1);
>>   	/* indirect object buffer size */
>>   	OUT_BATCH(0xfffff000 | 1);
>> -	/* intruction buffer size, must set modify enable bit, otherwise it may result in GPU hang */
>> +	/* instruction buffer size, must set modify enable bit, otherwise it may
>> +	 * result in GPU hang
>> +	 */
>>   	OUT_BATCH(1 << 12 | 1);
>>   }
>>   
>> @@ -565,8 +578,8 @@ gen8_emit_vfe_state_spin(struct intel_batchbuffer *batch)
>>   
>>   void
>>   gen8_emit_gpgpu_walk(struct intel_batchbuffer *batch,
>> -		     unsigned x, unsigned y,
>> -		     unsigned width, unsigned height)
>> +		     unsigned int x, unsigned int y,
>> +		     unsigned int width, unsigned int height)
>>   {
>>   	uint32_t x_dim, y_dim, tmp, right_mask;
>>   
>> @@ -662,15 +675,17 @@ gen9_emit_state_base_address(struct intel_batchbuffer *batch)
>>   	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_SAMPLER, 0, BASE_ADDRESS_MODIFY);
>>   
>>   	/* dynamic */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION,
>> -		0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo,
>> +		  I915_GEM_DOMAIN_RENDER | I915_GEM_DOMAIN_INSTRUCTION,
>> +		  0, BASE_ADDRESS_MODIFY);
>>   
>>   	/* indirect */
>>   	OUT_BATCH(0);
>>   	OUT_BATCH(0);
>>   
>>   	/* instruction */
>> -	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0, BASE_ADDRESS_MODIFY);
>> +	OUT_RELOC(batch->bo, I915_GEM_DOMAIN_INSTRUCTION, 0,
>> +		  BASE_ADDRESS_MODIFY);
>>   
>>   	/* general state buffer size */
>>   	OUT_BATCH(0xfffff000 | 1);
>> @@ -678,7 +693,9 @@ gen9_emit_state_base_address(struct intel_batchbuffer *batch)
>>   	OUT_BATCH(1 << 12 | 1);
>>   	/* indirect object buffer size */
>>   	OUT_BATCH(0xfffff000 | 1);
>> -	/* intruction buffer size, must set modify enable bit, otherwise it may result in GPU hang */
>> +	/* intruction buffer size, must set modify enable bit, otherwise it may
>> +	 * result in GPU hang
>> +	 */
>>   	OUT_BATCH(1 << 12 | 1);
>>   
>>   	/* Bindless surface state base address */
>> diff --git a/lib/gpu_fill.h b/lib/gpu_fill.h
>> index baa04807..1e4be4bb 100644
>> --- a/lib/gpu_fill.h
>> +++ b/lib/gpu_fill.h
>> @@ -60,8 +60,9 @@ gen7_fill_kernel(struct intel_batchbuffer *batch,
>>   		size_t size);
>>   
>>   uint32_t
>> -gen7_fill_interface_descriptor(struct intel_batchbuffer *batch, struct igt_buf *dst,
>> -			       const uint32_t kernel[][4], size_t size);
>> +gen7_fill_interface_descriptor(struct intel_batchbuffer *batch,
>> +			       struct igt_buf *dst, const uint32_t kernel[][4],
>> +			       size_t size);
>>   
>>   void
>>   gen7_emit_state_base_address(struct intel_batchbuffer *batch);
>> @@ -76,17 +77,18 @@ void
>>   gen7_emit_curbe_load(struct intel_batchbuffer *batch, uint32_t curbe_buffer);
>>   
>>   void
>> -gen7_emit_interface_descriptor_load(struct intel_batchbuffer *batch, uint32_t interface_descriptor);
>> +gen7_emit_interface_descriptor_load(struct intel_batchbuffer *batch,
>> +				    uint32_t interface_descriptor);
>>   
>>   void
>>   gen7_emit_media_objects(struct intel_batchbuffer *batch,
>> -			unsigned x, unsigned y,
>> -			unsigned width, unsigned height);
>> +			unsigned int x, unsigned int y,
>> +			unsigned int width, unsigned int height);
>>   
>>   void
>>   gen7_emit_gpgpu_walk(struct intel_batchbuffer *batch,
>> -		     unsigned x, unsigned y,
>> -		     unsigned width, unsigned height);
>> +		     unsigned int x, unsigned int y,
>> +		     unsigned int width, unsigned int height);
>>   
>>   uint32_t
>>   gen8_spin_curbe_buffer_data(struct intel_batchbuffer *batch,
>> @@ -99,7 +101,9 @@ gen8_fill_surface_state(struct intel_batchbuffer *batch,
>>   			int is_dst);
>>   
>>   uint32_t
>> -gen8_fill_interface_descriptor(struct intel_batchbuffer *batch, struct igt_buf *dst,  const uint32_t kernel[][4], size_t size);
>> +gen8_fill_interface_descriptor(struct intel_batchbuffer *batch,
>> +			       struct igt_buf *dst, const uint32_t kernel[][4],
>> +			       size_t size);
>>   
>>   void
>>   gen8_emit_state_base_address(struct intel_batchbuffer *batch);
>> @@ -118,8 +122,8 @@ gen8_emit_vfe_state_spin(struct intel_batchbuffer *batch);
>>   
>>   void
>>   gen8_emit_gpgpu_walk(struct intel_batchbuffer *batch,
>> -		     unsigned x, unsigned y,
>> -		     unsigned width, unsigned height);
>> +		     unsigned int x, unsigned int y,
>> +		     unsigned int width, unsigned int height);
>>   
>>   void
>>   gen8_emit_media_objects_spin(struct intel_batchbuffer *batch);
>> diff --git a/lib/media_spin.c b/lib/media_spin.c
>> index b4414bee..b323550a 100644
>> --- a/lib/media_spin.c
>> +++ b/lib/media_spin.c
>> @@ -81,7 +81,8 @@ gen8_media_spinfunc(struct intel_batchbuffer *batch,
>>   	batch->ptr = &batch->buffer[BATCH_STATE_SPLIT];
>>   
>>   	curbe_buffer = gen8_spin_curbe_buffer_data(batch, spins);
>> -	interface_descriptor = gen8_fill_interface_descriptor(batch, dst, spin_kernel, sizeof(spin_kernel));
>> +	interface_descriptor = gen8_fill_interface_descriptor(batch, dst,
>> +					      spin_kernel, sizeof(spin_kernel));
>>   	igt_assert(batch->ptr < &batch->buffer[4095]);
>>   
>>   	/* media pipeline */
>> @@ -119,7 +120,8 @@ gen9_media_spinfunc(struct intel_batchbuffer *batch,
>>   	batch->ptr = &batch->buffer[BATCH_STATE_SPLIT];
>>   
>>   	curbe_buffer = gen8_spin_curbe_buffer_data(batch, spins);
>> -	interface_descriptor = gen8_fill_interface_descriptor(batch, dst, spin_kernel, sizeof(spin_kernel));
>> +	interface_descriptor = gen8_fill_interface_descriptor(batch, dst,
>> +					      spin_kernel, sizeof(spin_kernel));
>>   	igt_assert(batch->ptr < &batch->buffer[4095]);
>>   
>>   	/* media pipeline */
>> -- 
>> 2.14.3
>>
>> _______________________________________________
>> igt-dev mailing list
>> igt-dev@lists.freedesktop.org
>> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

  reply	other threads:[~2018-05-10 17:11 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-04 13:02 [igt-dev] [PATCH i-g-t v3 1/5] lib/media_spin: Move helper functions to gpu_fill library Katarzyna Dec
2018-05-04 13:02 ` [igt-dev] [PATCH i-g-t v3 2/5] lib/media_spin: Remove gen8lp_media_spin function Katarzyna Dec
2018-05-04 13:02 ` [igt-dev] [PATCH i-g-t v3 3/5] lib: Adjust media_spin and gpu_fill to our code style Katarzyna Dec
2018-05-10 13:13   ` Katarzyna Dec
2018-05-10 17:11     ` Antonio Argenziano [this message]
2018-05-11 14:04       ` Katarzyna Dec
2018-05-11  6:47   ` [igt-dev] [PATCH i-g-t v5 " Katarzyna Dec
2018-05-11 12:45     ` Ewelina Musial
2018-05-04 13:02 ` [igt-dev] [PATCH i-g-t v3 4/5] lib/gpu_fill: Further code unification in gpu_fill Katarzyna Dec
2018-05-05  0:04   ` Daniele Ceraolo Spurio
2018-05-07 12:01     ` Katarzyna Dec
2018-05-07 12:25     ` Katarzyna Dec
2018-05-07 12:36   ` [igt-dev] [PATCH i-g-t v4 " Katarzyna Dec
2018-05-10 13:15     ` Katarzyna Dec
2018-05-10 15:41     ` Daniele Ceraolo Spurio
2018-05-11 13:52       ` Katarzyna Dec
2018-05-11  6:46     ` [igt-dev] [PATCH i-g-t v5 " Katarzyna Dec
2018-05-11 12:44       ` Ewelina Musial
2018-05-04 13:02 ` [igt-dev] [PATCH i-g-t v3 5/5] lib: Rename library from gpu_fill to gpu_cmds Katarzyna Dec
2018-05-10 13:17   ` Katarzyna Dec
2018-05-10 15:10     ` Daniele Ceraolo Spurio
2018-05-11 14:14       ` Katarzyna Dec
2018-05-04 13:33 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v3,1/5] lib/media_spin: Move helper functions to gpu_fill library Patchwork
2018-05-04 15:24 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2018-05-07 13:14 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v3,1/5] lib/media_spin: Move helper functions to gpu_fill library (rev2) Patchwork
2018-05-07 14:01 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2018-05-11  7:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,v3,1/5] lib/media_spin: Move helper functions to gpu_fill library (rev4) Patchwork
2018-05-11  8:03 ` [igt-dev] ✓ Fi.CI.IGT: " 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=354fa98d-7a15-c640-72c9-e113b1b51f5b@intel.com \
    --to=antonio.argenziano@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=katarzyna.dec@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 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.