From: Aishwarya Pant <aishpant@gmail.com>
To: Daniel Vetter <daniel.vetter@intel.com>,
Jani Nikula <jani.nikula@linux.intel.com>,
Sean Paul <seanpaul@chromium.org>,
David Airlie <airlied@linux.ie>,
dri-devel@lists.freedesktop.org
Cc: outreachy-kernel@googlegroups.com
Subject: [PATCH 0/2] drm/tilcdc: replace reference/unreference with get/put
Date: Fri, 22 Sep 2017 01:16:40 +0530 [thread overview]
Message-ID: <cover.1506023126.git.aishpant@gmail.com> (raw)
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);
)
Aishwarya Pant (2):
drm: introduce drm_dev_{get/put} functions
drm/tilcdc: replace reference/unreference() with get/put
drivers/gpu/drm/drm_drv.c | 64 +++++++++++++++++++++++++-----------
drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 6 ++--
drivers/gpu/drm/tilcdc/tilcdc_drv.c | 2 +-
include/drm/drm_drv.h | 4 ++-
4 files changed, 52 insertions(+), 24 deletions(-)
--
2.7.4
WARNING: multiple messages have this Message-ID (diff)
From: Aishwarya Pant <aishpant@gmail.com>
To: Daniel Vetter <daniel.vetter@intel.com>,
Jani Nikula <jani.nikula@linux.intel.com>,
Sean Paul <seanpaul@chromium.org>,
David Airlie <airlied@linux.ie>,
dri-devel@lists.freedesktop.org
Cc: outreachy-kernel@googlegroups.com
Subject: [PATCH 0/2] drm/tilcdc: replace reference/unreference with get/put
Date: Fri, 22 Sep 2017 01:16:40 +0530 [thread overview]
Message-ID: <cover.1506023126.git.aishpant@gmail.com> (raw)
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);
)
Aishwarya Pant (2):
drm: introduce drm_dev_{get/put} functions
drm/tilcdc: replace reference/unreference() with get/put
drivers/gpu/drm/drm_drv.c | 64 +++++++++++++++++++++++++-----------
drivers/gpu/drm/tilcdc/tilcdc_crtc.c | 6 ++--
drivers/gpu/drm/tilcdc/tilcdc_drv.c | 2 +-
include/drm/drm_drv.h | 4 ++-
4 files changed, 52 insertions(+), 24 deletions(-)
--
2.7.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next reply other threads:[~2017-09-21 19:46 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-21 19:46 Aishwarya Pant [this message]
2017-09-21 19:46 ` [PATCH 0/2] drm/tilcdc: replace reference/unreference with get/put Aishwarya Pant
2017-09-21 19:47 ` [PATCH 1/2] drm: introduce drm_dev_{get/put} functions Aishwarya Pant
2017-09-21 19:47 ` Aishwarya Pant
2017-09-26 5:22 ` [Outreachy kernel] " Daniel Vetter
2017-09-26 5:22 ` Daniel Vetter
2017-09-21 19:47 ` [PATCH 2/2] drm/tilcdc: replace reference/unreference() with get/put Aishwarya Pant
2017-09-21 19:47 ` Aishwarya Pant
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=cover.1506023126.git.aishpant@gmail.com \
--to=aishpant@gmail.com \
--cc=airlied@linux.ie \
--cc=daniel.vetter@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=jani.nikula@linux.intel.com \
--cc=outreachy-kernel@googlegroups.com \
--cc=seanpaul@chromium.org \
/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.