diff options
| author | Tomer Tayar <ttayar@habana.ai> | 2021-02-19 14:05:33 +0200 |
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-03-30 14:35:22 +0200 |
| commit | f59604786a48c3bda3a4cda27a172b681c6da69f (patch) | |
| tree | 51e2a784692443c91a744d2e1dace417c8db467c /drivers/misc | |
| parent | 694761bfdd763261dce83a497b37b6c5bc7708df (diff) | |
| download | linux-f59604786a48c3bda3a4cda27a172b681c6da69f.tar.gz linux-f59604786a48c3bda3a4cda27a172b681c6da69f.tar.bz2 linux-f59604786a48c3bda3a4cda27a172b681c6da69f.zip | |
habanalabs: Call put_pid() when releasing control device
[ Upstream commit 27ac5aada024e0821c86540ad18f37edadd77d5e ]
The refcount of the "hl_fpriv" structure is not used for the control
device, and thus hl_hpriv_put() is not called when releasing this
device.
This results with no call to put_pid(), so add it explicitly in
hl_device_release_ctrl().
Signed-off-by: Tomer Tayar <ttayar@habana.ai>
Reviewed-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Oded Gabbay <ogabbay@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'drivers/misc')
| -rw-r--r-- | drivers/misc/habanalabs/device.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/misc/habanalabs/device.c b/drivers/misc/habanalabs/device.c index 3486bf33474d..e3d943c65419 100644 --- a/drivers/misc/habanalabs/device.c +++ b/drivers/misc/habanalabs/device.c @@ -108,6 +108,8 @@ static int hl_device_release_ctrl(struct inode *inode, struct file *filp) list_del(&hpriv->dev_node); mutex_unlock(&hdev->fpriv_list_lock); + put_pid(hpriv->taskpid); + kfree(hpriv); return 0; |
