diff options
Diffstat (limited to 'linux-core')
| -rw-r--r-- | linux-core/drm_fops.c | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/linux-core/drm_fops.c b/linux-core/drm_fops.c index b60ced34..60ea57a2 100644 --- a/linux-core/drm_fops.c +++ b/linux-core/drm_fops.c @@ -46,7 +46,7 @@ static int drm_setup(drm_device_t * dev)  	drm_local_map_t *map;  	int i;  	int ret; - +	int sareapage;  	if (dev->driver->firstopen) {  		ret = dev->driver->firstopen(dev); @@ -57,8 +57,8 @@ static int drm_setup(drm_device_t * dev)  	dev->magicfree.next = NULL;  	/* prebuild the SAREA */ - -	i = drm_addmap(dev, 0, SAREA_MAX, _DRM_SHM, _DRM_CONTAINS_LOCK, &map); +	sareapage = max(SAREA_MAX, PAGE_SIZE); +	i = drm_addmap(dev, 0, sareapage, _DRM_SHM, _DRM_CONTAINS_LOCK, &map);  	if (i != 0)  		return i;  | 
