From: Alex Deucher <alexdeucher@gmail.com>
To: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
Cc: Maling list - DRI developers <dri-devel@lists.freedesktop.org>
Subject: Re: [PATCH 00/10] drm: drm_device house cleaning
Date: Mon, 7 Oct 2013 13:19:14 -0400 [thread overview]
Message-ID: <CADnq5_OS8O=2XcW5Ht=G-MmzQu86Apw8ZL-4dVmffb+inOk7rg@mail.gmail.com> (raw)
In-Reply-To: <1380887622-13464-1-git-send-email-ville.syrjala@linux.intel.com>
On Fri, Oct 4, 2013 at 7:53 AM, <ville.syrjala@linux.intel.com> wrote:
> This series does some house cleaning on struct drm_device.
>
> x86-64:
> pahole before the series:
> /* size: 1576, cachelines: 25, members: 67 */
> /* sum members: 1528, holes: 12, sum holes: 48 */
> /* paddings: 3, sum paddings: 11 */
> /* last cacheline: 40 bytes */
>
> pahole after the series:
> /* size: 1296, cachelines: 21, members: 52 */
> /* sum members: 1290, holes: 1, sum holes: 2 */
> /* padding: 4 */
> /* paddings: 3, sum paddings: 11 */
> /* last cacheline: 16 bytes */
>
> x86:
> pahole before the series:
> /* size: 956, cachelines: 15, members: 67 */
> /* sum members: 952, holes: 2, sum holes: 4 */
> /* paddings: 3, sum paddings: 7 */
> /* last cacheline: 60 bytes */
>
> pahole after the series:
> /* size: 764, cachelines: 12, members: 52 */
> /* sum members: 762, holes: 1, sum holes: 2 */
> /* paddings: 3, sum paddings: 7 */
> /* last cacheline: 60 bytes */
>
> Ville Syrjälä (10):
> drm: Make vblank_disable_allowed bool
> drm: Make vblank_inmodeset unsigned
> drm: Make vblank_enabled bool
> drm: Collect per-crtc vblank stuff to a struct
> drm: Make irq_enabled bool
> drm: Kill unused stuff from struct drm_device
> drm: Kill ctx_count from struct drm_device
> drm: Remove pci_vendor and pci_device from struct drm_device
> drm: Kill drm perf counter leftovers
> drm: Pack struct drm_device a bit better
>
For the series:
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
> drivers/gpu/drm/drm_context.c | 2 -
> drivers/gpu/drm/drm_drv.c | 6 --
> drivers/gpu/drm/drm_fops.c | 3 -
> drivers/gpu/drm/drm_info.c | 6 +-
> drivers/gpu/drm/drm_irq.c | 152 ++++++++++------------------
> drivers/gpu/drm/drm_lock.c | 3 -
> drivers/gpu/drm/drm_pci.c | 3 -
> drivers/gpu/drm/drm_stub.c | 9 --
> drivers/gpu/drm/exynos/exynos_drm_fimd.c | 8 +-
> drivers/gpu/drm/exynos/exynos_drm_vidi.c | 8 +-
> drivers/gpu/drm/gma500/psb_drv.c | 2 +-
> drivers/gpu/drm/gma500/psb_drv.h | 8 +-
> drivers/gpu/drm/gma500/psb_irq.c | 22 ++--
> drivers/gpu/drm/i810/i810_dma.c | 11 --
> drivers/gpu/drm/i915/i915_dma.c | 11 +-
> drivers/gpu/drm/i915/i915_drv.h | 36 +++----
> drivers/gpu/drm/i915/i915_gpu_error.c | 2 +-
> drivers/gpu/drm/i915/intel_pm.c | 2 +-
> drivers/gpu/drm/i915/intel_tv.c | 2 +-
> drivers/gpu/drm/mga/mga_dma.c | 5 -
> drivers/gpu/drm/mga/mga_irq.c | 2 +-
> drivers/gpu/drm/nouveau/dispnv04/arb.c | 8 +-
> drivers/gpu/drm/nouveau/dispnv04/dfp.c | 4 +-
> drivers/gpu/drm/nouveau/dispnv04/disp.h | 6 +-
> drivers/gpu/drm/nouveau/dispnv04/hw.c | 4 +-
> drivers/gpu/drm/nouveau/nouveau_abi16.c | 4 +-
> drivers/gpu/drm/nouveau/nouveau_bios.c | 4 +-
> drivers/gpu/drm/nouveau/nouveau_connector.c | 4 +-
> drivers/gpu/drm/omapdrm/omap_irq.c | 17 ++--
> drivers/gpu/drm/radeon/radeon_bios.c | 6 +-
> drivers/gpu/drm/radeon/radeon_kms.c | 2 +-
> drivers/gpu/drm/via/via_mm.c | 2 +-
> drivers/gpu/host1x/drm/drm.c | 2 +-
> drivers/staging/imx-drm/imx-drm-core.c | 8 +-
> include/drm/drmP.h | 62 ++++++------
> 35 files changed, 171 insertions(+), 265 deletions(-)
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2013-10-07 17:19 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-04 11:53 [PATCH 00/10] drm: drm_device house cleaning ville.syrjala
2013-10-04 11:53 ` [PATCH 01/10] drm: Make vblank_disable_allowed bool ville.syrjala
2013-10-04 11:53 ` [PATCH 02/10] drm: Make vblank_inmodeset unsigned ville.syrjala
2013-10-04 11:53 ` [PATCH 03/10] drm: Make vblank_enabled bool ville.syrjala
2013-10-04 11:53 ` [PATCH 04/10] drm: Collect per-crtc vblank stuff to a struct ville.syrjala
2013-10-04 11:53 ` [PATCH 05/10] drm: Make irq_enabled bool ville.syrjala
2013-10-04 11:53 ` [PATCH 06/10] drm: Kill unused stuff from struct drm_device ville.syrjala
2013-10-04 11:53 ` [PATCH 07/10] drm: Kill ctx_count " ville.syrjala
2013-10-04 11:53 ` [PATCH 08/10] drm: Remove pci_vendor and pci_device " ville.syrjala
2013-10-04 11:53 ` [PATCH 09/10] drm: Kill drm perf counter leftovers ville.syrjala
2013-10-04 15:22 ` Daniel Vetter
2013-10-04 11:53 ` [PATCH 10/10] drm: Pack struct drm_device a bit better ville.syrjala
2013-10-07 17:19 ` Alex Deucher [this message]
2013-10-09 5:35 ` [PATCH 00/10] drm: drm_device house cleaning Dave Airlie
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='CADnq5_OS8O=2XcW5Ht=G-MmzQu86Apw8ZL-4dVmffb+inOk7rg@mail.gmail.com' \
--to=alexdeucher@gmail.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=ville.syrjala@linux.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 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).