All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers
@ 2017-01-24 11:57 Chris Wilson
  2017-01-24 14:54 ` ✓ Fi.CI.BAT: success for " Patchwork
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Chris Wilson @ 2017-01-24 11:57 UTC (permalink / raw)
  To: dri-devel; +Cc: Daniel Vetter, intel-gfx, Sumit Semwal

Currently this tracepoint is solely used by dma_fence_enable_sw_signaling,
however I have a need to manually perform the hw enabling of the
signaling and would like to emit this tracepoint for completeness.

Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
---
 drivers/dma-buf/dma-fence.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/dma-buf/dma-fence.c b/drivers/dma-buf/dma-fence.c
index a1bfc098ea10..d1f1f456f5c4 100644
--- a/drivers/dma-buf/dma-fence.c
+++ b/drivers/dma-buf/dma-fence.c
@@ -28,6 +28,7 @@
 
 EXPORT_TRACEPOINT_SYMBOL(dma_fence_annotate_wait_on);
 EXPORT_TRACEPOINT_SYMBOL(dma_fence_emit);
+EXPORT_TRACEPOINT_SYMBOL(dma_fence_enable_signal);
 
 /*
  * fence context counter: each execution context should have its own
-- 
2.11.0

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* ✓ Fi.CI.BAT: success for dma/fence: Export enable-signaling tracepoint for emission by drivers
  2017-01-24 11:57 [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers Chris Wilson
@ 2017-01-24 14:54 ` Patchwork
  2017-01-27 14:48 ` [PATCH] " Chris Wilson
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2017-01-24 14:54 UTC (permalink / raw)
  To: Chris Wilson; +Cc: intel-gfx

== Series Details ==

Series: dma/fence: Export enable-signaling tracepoint for emission by drivers
URL   : https://patchwork.freedesktop.org/series/18481/
State : success

== Summary ==

Series 18481v1 dma/fence: Export enable-signaling tracepoint for emission by drivers
https://patchwork.freedesktop.org/api/1.0/series/18481/revisions/1/mbox/

Test gem_exec_store:
        Subgroup basic-blt:
                incomplete -> PASS       (fi-byt-j1900)

fi-bdw-5557u     total:247  pass:233  dwarn:0   dfail:0   fail:0   skip:14 
fi-bsw-n3050     total:247  pass:208  dwarn:0   dfail:0   fail:0   skip:39 
fi-bxt-j4205     total:247  pass:225  dwarn:0   dfail:0   fail:0   skip:22 
fi-bxt-t5700     total:79   pass:66   dwarn:0   dfail:0   fail:0   skip:12 
fi-byt-j1900     total:247  pass:220  dwarn:0   dfail:0   fail:0   skip:27 
fi-byt-n2820     total:247  pass:216  dwarn:0   dfail:0   fail:0   skip:31 
fi-hsw-4770      total:247  pass:228  dwarn:0   dfail:0   fail:0   skip:19 
fi-hsw-4770r     total:247  pass:228  dwarn:0   dfail:0   fail:0   skip:19 
fi-ivb-3520m     total:247  pass:226  dwarn:0   dfail:0   fail:0   skip:21 
fi-ivb-3770      total:247  pass:226  dwarn:0   dfail:0   fail:0   skip:21 
fi-kbl-7500u     total:247  pass:226  dwarn:0   dfail:0   fail:0   skip:21 
fi-skl-6260u     total:247  pass:234  dwarn:0   dfail:0   fail:0   skip:13 
fi-skl-6700hq    total:247  pass:227  dwarn:0   dfail:0   fail:0   skip:20 
fi-skl-6700k     total:247  pass:222  dwarn:4   dfail:0   fail:0   skip:21 
fi-skl-6770hq    total:247  pass:234  dwarn:0   dfail:0   fail:0   skip:13 
fi-snb-2520m     total:247  pass:216  dwarn:0   dfail:0   fail:0   skip:31 
fi-snb-2600      total:247  pass:215  dwarn:0   dfail:0   fail:0   skip:32 

d0150572848ac878b63afdd3d4fcd9456635024d drm-tip: 2017y-01m-24d-13h-35m-17s UTC integration manifest
f7e0393 dma/fence: Export enable-signaling tracepoint for emission by drivers

== Logs ==

For more details see: https://intel-gfx-ci.01.org/CI/Patchwork_3592/
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers
  2017-01-24 11:57 [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers Chris Wilson
  2017-01-24 14:54 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2017-01-27 14:48 ` Chris Wilson
  2017-01-27 14:55 ` Gustavo Padovan
  2017-01-27 17:37 ` Gustavo Padovan
  3 siblings, 0 replies; 6+ messages in thread
From: Chris Wilson @ 2017-01-27 14:48 UTC (permalink / raw)
  To: dri-devel; +Cc: Daniel Vetter, intel-gfx, Sumit Semwal

On Tue, Jan 24, 2017 at 11:57:58AM +0000, Chris Wilson wrote:
> Currently this tracepoint is solely used by dma_fence_enable_sw_signaling,
> however I have a need to manually perform the hw enabling of the
> signaling and would like to emit this tracepoint for completeness.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>

Anybody for a quick ack and backmerge? :)

> ---
>  drivers/dma-buf/dma-fence.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/dma-buf/dma-fence.c b/drivers/dma-buf/dma-fence.c
> index a1bfc098ea10..d1f1f456f5c4 100644
> --- a/drivers/dma-buf/dma-fence.c
> +++ b/drivers/dma-buf/dma-fence.c
> @@ -28,6 +28,7 @@
>  
>  EXPORT_TRACEPOINT_SYMBOL(dma_fence_annotate_wait_on);
>  EXPORT_TRACEPOINT_SYMBOL(dma_fence_emit);
> +EXPORT_TRACEPOINT_SYMBOL(dma_fence_enable_signal);
>  
>  /*
>   * fence context counter: each execution context should have its own
> -- 
> 2.11.0
> 

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers
  2017-01-24 11:57 [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers Chris Wilson
  2017-01-24 14:54 ` ✓ Fi.CI.BAT: success for " Patchwork
  2017-01-27 14:48 ` [PATCH] " Chris Wilson
@ 2017-01-27 14:55 ` Gustavo Padovan
  2017-01-27 16:53   ` Sumit Semwal
  2017-01-27 17:37 ` Gustavo Padovan
  3 siblings, 1 reply; 6+ messages in thread
From: Gustavo Padovan @ 2017-01-27 14:55 UTC (permalink / raw)
  To: Chris Wilson; +Cc: Daniel Vetter, intel-gfx, dri-devel

Hi Chris,

2017-01-24 Chris Wilson <chris@chris-wilson.co.uk>:

> Currently this tracepoint is solely used by dma_fence_enable_sw_signaling,
> however I have a need to manually perform the hw enabling of the
> signaling and would like to emit this tracepoint for completeness.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>  drivers/dma-buf/dma-fence.c | 1 +
>  1 file changed, 1 insertion(+)

Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>

Gustavo

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers
  2017-01-27 14:55 ` Gustavo Padovan
@ 2017-01-27 16:53   ` Sumit Semwal
  0 siblings, 0 replies; 6+ messages in thread
From: Sumit Semwal @ 2017-01-27 16:53 UTC (permalink / raw)
  To: Gustavo Padovan, Chris Wilson, DRI mailing list, Daniel Vetter,
	Intel Graphics Development

fwiw,


On 27 January 2017 at 20:25, Gustavo Padovan <gustavo@padovan.org> wrote:
> Hi Chris,
>
> 2017-01-24 Chris Wilson <chris@chris-wilson.co.uk>:
>
>> Currently this tracepoint is solely used by dma_fence_enable_sw_signaling,
>> however I have a need to manually perform the hw enabling of the
>> signaling and would like to emit this tracepoint for completeness.
>>
>> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>> Cc: Sumit Semwal <sumit.semwal@linaro.org>
>> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
>> ---
>>  drivers/dma-buf/dma-fence.c | 1 +
>>  1 file changed, 1 insertion(+)
>
> Reviewed-by: Gustavo Padovan <gustavo.padovan@collabora.com>
>
Feel free to add my a-b :)
> Gustavo
>
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel



-- 
Thanks and regards,

Sumit Semwal
Linaro Mobile Group - Kernel Team Lead
Linaro.org │ Open source software for ARM SoCs
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers
  2017-01-24 11:57 [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers Chris Wilson
                   ` (2 preceding siblings ...)
  2017-01-27 14:55 ` Gustavo Padovan
@ 2017-01-27 17:37 ` Gustavo Padovan
  3 siblings, 0 replies; 6+ messages in thread
From: Gustavo Padovan @ 2017-01-27 17:37 UTC (permalink / raw)
  To: Chris Wilson; +Cc: Daniel Vetter, intel-gfx, dri-devel

Hi Chris,

2017-01-24 Chris Wilson <chris@chris-wilson.co.uk>:

> Currently this tracepoint is solely used by dma_fence_enable_sw_signaling,
> however I have a need to manually perform the hw enabling of the
> signaling and would like to emit this tracepoint for completeness.
> 
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>  drivers/dma-buf/dma-fence.c | 1 +
>  1 file changed, 1 insertion(+)

Applied to drm-misc-next Thanks! 

Gustavo

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2017-01-27 17:37 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-24 11:57 [PATCH] dma/fence: Export enable-signaling tracepoint for emission by drivers Chris Wilson
2017-01-24 14:54 ` ✓ Fi.CI.BAT: success for " Patchwork
2017-01-27 14:48 ` [PATCH] " Chris Wilson
2017-01-27 14:55 ` Gustavo Padovan
2017-01-27 16:53   ` Sumit Semwal
2017-01-27 17:37 ` Gustavo Padovan

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.