dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] sync framework de-staging: part 2 - de-stage
@ 2016-01-26 18:30 Gustavo Padovan
  2016-01-26 18:30 ` [PATCH 01/11] dma-buf/sync_file: de-stage sync_file Gustavo Padovan
                   ` (10 more replies)
  0 siblings, 11 replies; 13+ messages in thread
From: Gustavo Padovan @ 2016-01-26 18:30 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: devel, Daniel Stone, Daniel Vetter, Riley Andrews, dri-devel,
	linux-kernel, Arve Hjønnevåg, Gustavo Padovan,
	John Harrison

From: Gustavo Padovan <gustavo.padovan@collabora.co.uk>

This patch series de-stage the sync framework and it a follow up on the         
clean up series I've sent last week:                                            

http://thread.gmane.org/gmane.comp.video.dri.devel/145509                       

Now in part 2 we finish the de-stage of the sync framework. It start with the   
move of sync_file from staging to drivers/dma-buf, followed by a bunch of clean 
ups on sync_timeline and sw_sync. Finally we de-stage the later two plus the    
debug routines.

Gustavo Padovan (11):
  dma-buf/sync_file: de-stage sync_file
  staging/android: store last signaled value on sync timeline
  staging/android: remove .fill_driver_data() timeline ops
  staging/android: remove .{fence,timeline}_value_str() from
    timeline_ops
  staging/android: remove struct sync_timeline_ops
  staging/android: remove sw_sync_timeline and sw_sync_pt
  staging/android: remove sw_sync.[ch] files
  staging/android: rename android_fence to timeline_fence
  dma-buf/sync_timeline: de-stage sync_timeline
  dma-buf/sync_file: bring debug back to sync file
  dma-buf/sync_file: bring sync_dump() back

 drivers/Kconfig                        |   2 +
 drivers/dma-buf/Kconfig                |  21 ++
 drivers/dma-buf/Makefile               |   2 +
 drivers/dma-buf/sw_sync.h              |  32 ++
 drivers/dma-buf/sync_debug.c           | 374 +++++++++++++++++++
 drivers/dma-buf/sync_debug.h           |  35 ++
 drivers/dma-buf/sync_file.c            | 451 +++++++++++++++++++++++
 drivers/dma-buf/sync_timeline.c        | 222 +++++++++++
 drivers/staging/android/Kconfig        |  19 -
 drivers/staging/android/Makefile       |   1 -
 drivers/staging/android/sw_sync.c      | 103 ------
 drivers/staging/android/sw_sync.h      |  59 ---
 drivers/staging/android/sync.c         | 652 ---------------------------------
 drivers/staging/android/sync.h         | 261 -------------
 drivers/staging/android/sync_debug.c   | 372 -------------------
 drivers/staging/android/trace/sync.h   |  82 -----
 drivers/staging/android/uapi/sw_sync.h |  32 --
 drivers/staging/android/uapi/sync.h    |  97 -----
 include/linux/sync_file.h              | 123 +++++++
 include/linux/sync_timeline.h          | 114 ++++++
 include/trace/events/sync_file.h       |  57 +++
 include/trace/events/sync_timeline.h   |  31 ++
 include/uapi/linux/sync.h              |  97 +++++
 23 files changed, 1561 insertions(+), 1678 deletions(-)
 create mode 100644 drivers/dma-buf/Kconfig
 create mode 100644 drivers/dma-buf/sw_sync.h
 create mode 100644 drivers/dma-buf/sync_debug.c
 create mode 100644 drivers/dma-buf/sync_debug.h
 create mode 100644 drivers/dma-buf/sync_file.c
 create mode 100644 drivers/dma-buf/sync_timeline.c
 delete mode 100644 drivers/staging/android/sw_sync.c
 delete mode 100644 drivers/staging/android/sw_sync.h
 delete mode 100644 drivers/staging/android/sync.c
 delete mode 100644 drivers/staging/android/sync.h
 delete mode 100644 drivers/staging/android/sync_debug.c
 delete mode 100644 drivers/staging/android/trace/sync.h
 delete mode 100644 drivers/staging/android/uapi/sw_sync.h
 delete mode 100644 drivers/staging/android/uapi/sync.h
 create mode 100644 include/linux/sync_file.h
 create mode 100644 include/linux/sync_timeline.h
 create mode 100644 include/trace/events/sync_file.h
 create mode 100644 include/trace/events/sync_timeline.h
 create mode 100644 include/uapi/linux/sync.h

-- 
2.5.0

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2016-01-26 20:07 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-26 18:30 [PATCH 00/11] sync framework de-staging: part 2 - de-stage Gustavo Padovan
2016-01-26 18:30 ` [PATCH 01/11] dma-buf/sync_file: de-stage sync_file Gustavo Padovan
2016-01-26 18:30 ` [PATCH 02/11] staging/android: store last signaled value on sync timeline Gustavo Padovan
2016-01-26 18:30 ` [PATCH 03/11] staging/android: remove .fill_driver_data() timeline ops Gustavo Padovan
2016-01-26 18:30 ` [PATCH 04/11] staging/android: remove .{fence, timeline}_value_str() from timeline_ops Gustavo Padovan
2016-01-26 18:30 ` [PATCH 05/11] staging/android: remove struct sync_timeline_ops Gustavo Padovan
2016-01-26 18:30 ` [PATCH 06/11] staging/android: remove sw_sync_timeline and sw_sync_pt Gustavo Padovan
2016-01-26 18:30 ` [PATCH 07/11] staging/android: remove sw_sync.[ch] files Gustavo Padovan
2016-01-26 18:30 ` [PATCH 08/11] staging/android: rename android_fence to timeline_fence Gustavo Padovan
2016-01-26 18:30 ` [PATCH 09/11] dma-buf/sync_timeline: de-stage sync_timeline Gustavo Padovan
2016-01-26 20:07   ` Gustavo Padovan
2016-01-26 18:30 ` [PATCH 10/11] dma-buf/sync_file: bring debug back to sync file Gustavo Padovan
2016-01-26 18:30 ` [PATCH 11/11] dma-buf/sync_file: bring sync_dump() back Gustavo Padovan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).