All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/2] drm/tilcdc: replace reference/unreference with get/put
@ 2017-09-26  8:16 ` Aishwarya Pant
  0 siblings, 0 replies; 10+ messages in thread
From: Aishwarya Pant @ 2017-09-26  8:16 UTC (permalink / raw)
  To: Jyri Sarha, Tomi Valkeinen, David Airlie, dri-devel,
	Daniel Vetter, Jani Nikula, Sean Paul
  Cc: outreachy-kernel

This patchset introduces drm_dev_get() and drm_dev_put() functions that are
intented to be replacements for drm_dev_{ref/unref}.

Then all usages of ref/reference and unref/unreference suffixes are replaced by
get/put reference count functions in tilcdc. The following cocci script was used
to make the tilcdc patch:

@@
expression ex;
@@

(
-drm_framebuffer_unreference(ex);
+drm_framebuffer_put(ex);
|
-drm_dev_unref(ex);
+drm_dev_put(ex);
|
-drm_framebuffer_reference(ex);
+drm_framebuffer_get(ex);
)

Changes in v2
- Drop drm_dev_ref after replacing all its usages
- Update the drm subsystem wide cocci script drm-get-put with the new helper for
  drm_dev_unref to drm_dev_get conversion

Aishwarya Pant (2):
  drm: introduce drm_dev_{get/put} functions
  drm/tilcdc: replace reference/unreference() with get/put

 drivers/gpu/drm/drm_drv.c                | 51 ++++++++++++++++++++------------
 drivers/gpu/drm/drm_prime.c              |  2 +-
 drivers/gpu/drm/tilcdc/tilcdc_crtc.c     |  6 ++--
 drivers/gpu/drm/tilcdc/tilcdc_drv.c      |  2 +-
 include/drm/drm_drv.h                    |  5 ++--
 scripts/coccinelle/api/drm-get-put.cocci |  5 ++++
 6 files changed, 45 insertions(+), 26 deletions(-)

-- 
2.7.4



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

end of thread, other threads:[~2017-09-26 11:13 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-09-26  8:16 [PATCH v2 0/2] drm/tilcdc: replace reference/unreference with get/put Aishwarya Pant
2017-09-26  8:16 ` Aishwarya Pant
2017-09-26  8:28 ` [PATCH v2 1/2] drm: introduce drm_dev_{get/put} functions Aishwarya Pant
2017-09-26  8:28   ` Aishwarya Pant
2017-09-26  8:30 ` [PATCH v2 2/2] drm/tilcdc: replace reference/unreference() with get/put Aishwarya Pant
2017-09-26  8:30   ` Aishwarya Pant
2017-09-26  9:18   ` Jyri Sarha
2017-09-26  9:18     ` Jyri Sarha
2017-09-26 11:13     ` Daniel Vetter
2017-09-26 11:13       ` Daniel Vetter

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.