We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6266f4a commit a8045e4Copy full SHA for a8045e4
drivers/gpu/drm/i915/gem/i915_gem_mman.c
@@ -164,6 +164,9 @@ static unsigned int tile_row_pages(const struct drm_i915_gem_object *obj)
164
* 4 - Support multiple fault handlers per object depending on object's
165
* backing storage (a.k.a. MMAP_OFFSET).
166
*
167
+ * 5 - Support multiple partial mmaps(mmap part of BO + unmap a offset, multiple
168
+ * times with different size and offset).
169
+ *
170
* Restrictions:
171
172
* * snoopable objects cannot be accessed via the GTT. It can cause machine
@@ -191,7 +194,7 @@ static unsigned int tile_row_pages(const struct drm_i915_gem_object *obj)
191
194
*/
192
195
int i915_gem_mmap_gtt_version(void)
193
196
{
- return 4;
197
+ return 5;
198
}
199
200
static inline struct i915_gtt_view
0 commit comments