aboutsummaryrefslogtreecommitdiff
path: root/drivers/misc
diff options
context:
space:
mode:
authorGravatar Tomer Tayar <ttayar@habana.ai> 2020-01-05 15:05:46 +0000
committerGravatar Oded Gabbay <oded.gabbay@gmail.com> 2020-03-24 10:54:16 +0200
commitf3a838c0c72ca09dd153ff29096410ea220660f6 (patch)
tree96798644f788e8ab082612e6df8c1c5508b8b5b0 /drivers/misc
parenthabanalabs: split the host MMU properties (diff)
downloadlinux-f3a838c0c72ca09dd153ff29096410ea220660f6.tar.gz
linux-f3a838c0c72ca09dd153ff29096410ea220660f6.tar.bz2
linux-f3a838c0c72ca09dd153ff29096410ea220660f6.zip
habanalabs: Modify CS jobs counter to u16
As HL_MAX_JOBS_PER_CS is 512, it is possible that more than 255 CS jobs will be submitted for a certain queue. Hence, modify the "jobs_in_queue_cnt" parameter of the "hl_cs" structure to be u16 instead of u8. Signed-off-by: Tomer Tayar <ttayar@habana.ai> Reviewed-by: Oded Gabbay <oded.gabbay@gmail.com> Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
Diffstat (limited to 'drivers/misc')
-rw-r--r--drivers/misc/habanalabs/habanalabs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/misc/habanalabs/habanalabs.h b/drivers/misc/habanalabs/habanalabs.h
index 5c751b9517c0..954906292c00 100644
--- a/drivers/misc/habanalabs/habanalabs.h
+++ b/drivers/misc/habanalabs/habanalabs.h
@@ -759,7 +759,7 @@ struct hl_userptr {
* @aborted: true if CS was aborted due to some device error.
*/
struct hl_cs {
- u8 jobs_in_queue_cnt[HL_MAX_QUEUES];
+ u16 jobs_in_queue_cnt[HL_MAX_QUEUES];
struct hl_ctx *ctx;
struct list_head job_list;
spinlock_t job_lock;