drm/i915/selftests: Fix return value check in live_breadcrumbs_smoketest()
authorZhihao Cheng <chengzhihao1@huawei.com>
Tue, 1 Jun 2021 09:19:35 +0000 (09:19 +0000)
committerJani Nikula <jani.nikula@intel.com>
Wed, 2 Jun 2021 12:06:10 +0000 (15:06 +0300)
commit10c1f0cbcea93beec5d3bdc02b1a3b577b4985e7
tree790752447276c0e4ecb78c462f5b2b1bb89c26c9
parent8124c8a6b35386f73523d27eacb71b5364a68c4c
drm/i915/selftests: Fix return value check in live_breadcrumbs_smoketest()

In case of error, the function live_context() returns ERR_PTR() and never
returns NULL. The NULL test in the return value check should be replaced
with IS_ERR().

Fixes: 52c0fdb25c7c ("drm/i915: Replace global breadcrumbs with per-context interrupt tracking")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Zhihao Cheng <chengzhihao1@huawei.com>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/33c46ef24cd547d0ad21dc106441491a@intel.com
[tursulin: Wrap commit text, fix Fixes: tag.]
Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
(cherry picked from commit 8f4caef8d5401b42c6367d46c23da5e0e8111516)
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
drivers/gpu/drm/i915/selftests/i915_request.c