dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Daniel Vetter <daniel.vetter@ffwll.ch>
To: DRI Development <dri-devel@lists.freedesktop.org>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>,
	Intel Graphics Development <intel-gfx@lists.freedesktop.org>
Subject: [PATCH 00/11] Mixed bag of ioctl and agp cleanups
Date: Tue,  8 Sep 2015 13:56:20 +0200	[thread overview]
Message-ID: <1441713391-24732-1-git-send-email-daniel.vetter@ffwll.ch> (raw)

Hi all,

Big thing for sure is deprecating DRM_UNLOCKED for DRIVER_MODESET (i.e. modern
drivers) since all of them have their own locking. Besides that a few random
things that kind where in the same area/files.

Of course kerneldoc is updated too.

Feedback highly welcome.

Cheers, Daniel

Daniel Vetter (11):
  drm: Remove __OS_HAS_AGP
  drm/i915: Kill cross-module option depencies
  drm/i915: Mark debug mod options as _unsafe
  drm/i915: Remove setparam ioctl
  drm/i915: Mark getparam ioctl as DRM_UNLOCKED
  drm: Define a drm_invalid_op ioctl implementation
  drm/drm_ioctl.c: kerneldoc
  drm: Enforce unlocked ioctl operation for kms driver ioctls
  drm/vmwgfx: Stop checking for DRM_UNLOCKED
  drm/<drivers>: Drop DRM_UNLOCKED from modeset drivers
  drm: Remove dummy agp ioctl wrappers

 Documentation/DocBook/drm.tmpl          |   5 +-
 drivers/gpu/drm/Makefile                |   3 +-
 drivers/gpu/drm/amd/amdgpu/amdgpu_kms.c |  24 +++----
 drivers/gpu/drm/armada/armada_drv.c     |   9 +--
 drivers/gpu/drm/drm_agpsupport.c        |   4 +-
 drivers/gpu/drm/drm_bufs.c              |   6 +-
 drivers/gpu/drm/drm_ioc32.c             |   6 +-
 drivers/gpu/drm/drm_ioctl.c             |  89 +++++++++++++++++------
 drivers/gpu/drm/drm_memory.c            |   6 +-
 drivers/gpu/drm/drm_vm.c                |   8 +--
 drivers/gpu/drm/exynos/exynos_drm_drv.c |  20 +++---
 drivers/gpu/drm/i915/i915_dma.c         | 101 ++++++++++----------------
 drivers/gpu/drm/i915/i915_gem_gtt.c     |   2 +-
 drivers/gpu/drm/i915/i915_params.c      |  30 ++++----
 drivers/gpu/drm/i915/intel_lrc.c        |   3 +-
 drivers/gpu/drm/mga/mga_dma.c           |   4 +-
 drivers/gpu/drm/msm/msm_drv.c           |  14 ++--
 drivers/gpu/drm/nouveau/nouveau_bo.c    |   8 +--
 drivers/gpu/drm/nouveau/nouveau_drm.c   |  24 +++----
 drivers/gpu/drm/omapdrm/omap_drv.c      |  12 ++--
 drivers/gpu/drm/qxl/qxl_ioctl.c         |  14 ++--
 drivers/gpu/drm/r128/r128_cce.c         |  12 ++--
 drivers/gpu/drm/radeon/r600_cp.c        |  14 ++--
 drivers/gpu/drm/radeon/radeon_agp.c     |   8 +--
 drivers/gpu/drm/radeon/radeon_cp.c      |  16 ++---
 drivers/gpu/drm/radeon/radeon_kms.c     | 124 +++++++++++---------------------
 drivers/gpu/drm/radeon/radeon_ttm.c     |  10 +--
 drivers/gpu/drm/tegra/drm.c             |  28 ++++----
 drivers/gpu/drm/vmwgfx/vmwgfx_drv.c     |  62 +++++++---------
 include/drm/drmP.h                      |   2 +
 include/drm/drm_agpsupport.h            |  54 +-------------
 31 files changed, 321 insertions(+), 401 deletions(-)

-- 
2.5.1

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

             reply	other threads:[~2015-09-08 11:56 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-08 11:56 Daniel Vetter [this message]
2015-09-08 11:56 ` [PATCH 01/11] drm: Remove __OS_HAS_AGP Daniel Vetter
2015-09-09 12:53   ` Ville Syrjälä
2015-09-09 14:45   ` [PATCH] " Daniel Vetter
2015-09-28 15:05     ` David Herrmann
2015-09-08 11:56 ` [PATCH 02/11] drm/i915: Kill cross-module option depencies Daniel Vetter
2015-09-08 11:56 ` [PATCH 03/11] drm/i915: Mark debug mod options as _unsafe Daniel Vetter
2015-09-22  9:34   ` Jani Nikula
2015-09-22  9:54     ` Daniel Vetter
2015-09-08 11:56 ` [PATCH 04/11] drm/i915: Remove setparam ioctl Daniel Vetter
2015-09-09 13:02   ` Ville Syrjälä
2015-09-09 14:46   ` [PATCH] drm/i915: Mark getparam ioctl as DRM_UNLOCKED Daniel Vetter
2015-09-30  8:46   ` [PATCH] drm/i915: Remove setparam ioctl Daniel Vetter
2015-09-30  8:50     ` Chris Wilson
2015-09-30 13:40     ` Ville Syrjälä
2015-09-08 11:56 ` [PATCH 05/11] drm/i915: Mark getparam ioctl as DRM_UNLOCKED Daniel Vetter
2015-10-09 10:00   ` Chris Wilson
2015-09-08 11:56 ` [PATCH 06/11] drm: Define a drm_invalid_op ioctl implementation Daniel Vetter
2015-09-09 12:28   ` David Herrmann
2015-09-08 11:56 ` [PATCH 07/11] drm/drm_ioctl.c: kerneldoc Daniel Vetter
2015-09-28 15:07   ` David Herrmann
2015-09-08 11:56 ` [PATCH 08/11] drm: Enforce unlocked ioctl operation for kms driver ioctls Daniel Vetter
2015-09-08 18:45   ` Gustavo Padovan
2015-09-28 15:21   ` David Herrmann
2015-09-28 19:42   ` [PATCH] " Daniel Vetter
2015-09-08 11:56 ` [PATCH 09/11] drm/vmwgfx: Stop checking for DRM_UNLOCKED Daniel Vetter
2015-09-28 15:22   ` David Herrmann
2015-09-08 11:56 ` [PATCH 10/11] drm/<drivers>: Drop DRM_UNLOCKED from modeset drivers Daniel Vetter
2015-09-08 18:46   ` [Intel-gfx] " Gustavo Padovan
2015-09-28 15:24   ` David Herrmann
2015-09-08 11:56 ` [PATCH 11/11] drm: Remove dummy agp ioctl wrappers Daniel Vetter
2015-09-28 15:25   ` David Herrmann
2015-09-08 12:58 ` [PATCH 00/11] Mixed bag of ioctl and agp cleanups Christian König
2015-10-08 17:01   ` Daniel Vetter

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=1441713391-24732-1-git-send-email-daniel.vetter@ffwll.ch \
    --to=daniel.vetter@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.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 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).