don't open-code file_count()

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
Al Viro 2019-04-12 20:38:01 -04:00
parent 1caf7a70a9
commit 79ea35bc20
1 changed files with 1 additions and 1 deletions

View File

@ -4354,7 +4354,7 @@ static bool discard_backing_storage(struct drm_i915_gem_object *obj)
* acquiring such a reference whilst we are in the middle of * acquiring such a reference whilst we are in the middle of
* freeing the object. * freeing the object.
*/ */
return atomic_long_read(&obj->base.filp->f_count) == 1; return file_count(obj->base.filp) == 1;
} }
static void __i915_gem_free_objects(struct drm_i915_private *i915, static void __i915_gem_free_objects(struct drm_i915_private *i915,