summaryrefslogtreecommitdiff
path: root/libdrm/xf86drm.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-17 20:03:26 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-17 20:03:26 +0200
commitc34faf224b959bf61e4c3eb29c66a12edbd31841 (patch)
treeaefcfbfd8626c661b48f869267cc039c45492f59 /libdrm/xf86drm.c
parent89b944179856fadf8667587eff142129c2c6b826 (diff)
Remove max number of locked pages check and call, since
that is now handled by the memory accounting.
Diffstat (limited to 'libdrm/xf86drm.c')
-rw-r--r--libdrm/xf86drm.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/libdrm/xf86drm.c b/libdrm/xf86drm.c
index 253ba690..5c799b6d 100644
--- a/libdrm/xf86drm.c
+++ b/libdrm/xf86drm.c
@@ -3187,21 +3187,6 @@ int drmMMTakedown(int fd, unsigned memType)
return 0;
}
-int drmMMMaxLockedSize(int fd, unsigned long maxLockedSize)
-{
- drm_mm_init_arg_t arg;
-
-
- memset(&arg, 0, sizeof(arg));
- arg.req.op = mm_set_max_pages;
- arg.req.p_size = maxLockedSize / getpagesize();
-
- if (ioctl(fd, DRM_IOCTL_MM_INIT, &arg))
- return -errno;
-
- return 0;
-}
-
int drmMMLock(int fd, unsigned memType)
{
drm_mm_init_arg_t arg;