diff options
| author | Jon Smirl <jonsmirl@yahoo.com> | 2004-09-20 17:09:26 +0000 | 
|---|---|---|
| committer | Jon Smirl <jonsmirl@yahoo.com> | 2004-09-20 17:09:26 +0000 | 
| commit | 59cc1d8256fb3b6e2374e52eb24da12b046aea91 (patch) | |
| tree | 19083c996243afdd6cad3c05dacc1964555e7885 /linux/drm_bufs.h | |
| parent | 5654880eeed0646a53655b093f4d3bf5608ebcc7 (diff) | |
Felix's fix for map request smaller than permanent map size
Diffstat (limited to 'linux/drm_bufs.h')
| -rw-r--r-- | linux/drm_bufs.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/drm_bufs.h b/linux/drm_bufs.h index 46cff57d..84ca1f47 100644 --- a/linux/drm_bufs.h +++ b/linux/drm_bufs.h @@ -186,7 +186,7 @@ int DRM(addmap)( struct inode *inode, struct file *filp,  				drm_map_list_t *_entry = list_entry( _list, drm_map_list_t, head );  				if ( _entry->map && _entry->map->type == map->type &&  						_entry->map->offset == map->offset && -						_entry->map->size == map->size ) { +						_entry->map->size >= map->size ) {  					DRM(free)( map, sizeof(*map), DRM_MEM_MAPS );  					map = _entry->map;  					DRM_DEBUG( "Found existing: offset = 0x%08lx, size = 0x%08lx, type = %d\n",  | 
