drm: Split drm_map and drm_local_map
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Mon, 2 Feb 2009 05:55:46 +0000 (16:55 +1100)
committerDave Airlie <airlied@redhat.com>
Fri, 13 Mar 2009 04:23:56 +0000 (14:23 +1000)
commitf77d390c9779c496aa5b99ec832996fb76bb1d13
tree3e3cccc4ac9416457a944d13b31ef942432717f2
parentd883f7f1b75c8dcafa891f7b9e69c5a2f0ff6d66
drm: Split drm_map and drm_local_map

Once upon a time, the DRM made the distinction between the drm_map
data structure exchanged with user space and the drm_local_map used
in the kernel.

For some reasons, while the BSD port still has that "feature", the
linux part abused drm_map for kernel internal usage as the local
map only existed as a typedef of the struct drm_map.

This patch fixes it by declaring struct drm_local_map separately
(though its content is currently identical to the userspace variant),
and changing the kernel code to only use that, except when it's a
user<->kernel interface (ie. ioctl).

This allows subsequent changes to the in-kernel format

I've also replaced the use of drm_local_map_t with struct drm_local_map
in a couple of places. Mostly by accident but they are the same (the
former is a typedef of the later) and I have some remote plans and
half finished patch to completely kill the drm_local_map_t typedef
so I left those bits in.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Eric Anholt <eric@anholt.net>
Signed-off-by: Dave Airlie <airlied@linux.ie>
drivers/gpu/drm/drm_bufs.c
drivers/gpu/drm/drm_context.c
drivers/gpu/drm/drm_drv.c
drivers/gpu/drm/drm_gem.c
drivers/gpu/drm/drm_memory.c
drivers/gpu/drm/drm_proc.c
drivers/gpu/drm/drm_vm.c
drivers/gpu/drm/i810/i810_drv.h
drivers/gpu/drm/i830/i830_drv.h
drivers/gpu/drm/i915/i915_gem.c
include/drm/drmP.h