diff options
author | Xiongfeng Wang <wangxiongfeng2@huawei.com> | 2020-11-12 21:22:32 +0800 |
---|---|---|
committer | Zhenyu Wang <zhenyuw@linux.intel.com> | 2020-11-13 12:16:52 +0800 |
commit | 4ec2b69da5e1544dbadb30cddb49c8df60209b0c (patch) | |
tree | 8984af56b5f8740cc9d939e0b419ffb8badb91bf /drivers/gpu/drm/i915/gvt | |
parent | edb8d77a939c422f3ae57f557cd1d6899d9bafad (diff) | |
download | kernel_replicant_linux-4ec2b69da5e1544dbadb30cddb49c8df60209b0c.tar.gz kernel_replicant_linux-4ec2b69da5e1544dbadb30cddb49c8df60209b0c.tar.bz2 kernel_replicant_linux-4ec2b69da5e1544dbadb30cddb49c8df60209b0c.zip |
drm/i915/gvt: return error when failing to take the module reference
When we fail to take the module reference, we go to the 'undo*' branch and
return. But the returned variable 'ret' has been set as zero by the
above code. Change 'ret' to '-ENODEV' in this situation.
Fixes: 9bdb073464d6 ("drm/i915/gvt: Change KVMGT as self load module")
Reviewed-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: Xiongfeng Wang <wangxiongfeng2@huawei.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1605187352-51761-1-git-send-email-wangxiongfeng2@huawei.com
Diffstat (limited to 'drivers/gpu/drm/i915/gvt')
-rw-r--r-- | drivers/gpu/drm/i915/gvt/kvmgt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/gpu/drm/i915/gvt/kvmgt.c b/drivers/gpu/drm/i915/gvt/kvmgt.c index ad8a9df49f29..778eb8cab610 100644 --- a/drivers/gpu/drm/i915/gvt/kvmgt.c +++ b/drivers/gpu/drm/i915/gvt/kvmgt.c @@ -829,8 +829,10 @@ static int intel_vgpu_open(struct mdev_device *mdev) /* Take a module reference as mdev core doesn't take * a reference for vendor driver. */ - if (!try_module_get(THIS_MODULE)) + if (!try_module_get(THIS_MODULE)) { + ret = -ENODEV; goto undo_group; + } ret = kvmgt_guest_init(mdev); if (ret) |