aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/i915/i915_gem.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/drm/i915/i915_gem.c')
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index fa560ceba66..85f713746a1 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -1696,13 +1696,10 @@ i915_gem_object_truncate(struct drm_i915_gem_object *obj)
1696 /* Our goal here is to return as much of the memory as 1696 /* Our goal here is to return as much of the memory as
1697 * is possible back to the system as we are called from OOM. 1697 * is possible back to the system as we are called from OOM.
1698 * To do this we must instruct the shmfs to drop all of its 1698 * To do this we must instruct the shmfs to drop all of its
1699 * backing pages, *now*. Here we mirror the actions taken 1699 * backing pages, *now*.
1700 * when by shmem_delete_inode() to release the backing store.
1701 */ 1700 */
1702 inode = obj->base.filp->f_path.dentry->d_inode; 1701 inode = obj->base.filp->f_path.dentry->d_inode;
1703 truncate_inode_pages(inode->i_mapping, 0); 1702 shmem_truncate_range(inode, 0, (loff_t)-1);
1704 if (inode->i_op->truncate_range)
1705 inode->i_op->truncate_range(inode, 0, (loff_t)-1);
1706 1703
1707 obj->madv = __I915_MADV_PURGED; 1704 obj->madv = __I915_MADV_PURGED;
1708} 1705}