summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common')
-rw-r--r--drivers/gpu/nvgpu/common/mm/lockless_allocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
index 0df1ae9d..a7772b6b 100644
--- a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
+++ b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
@@ -168,7 +168,7 @@ int nvgpu_lockless_allocator_init(struct gk20a *g, struct nvgpu_allocator *__a,
168 * Ensure we have space for at least one node & there's no overflow. 168 * Ensure we have space for at least one node & there's no overflow.
169 * In order to control memory footprint, we require count < INT_MAX 169 * In order to control memory footprint, we require count < INT_MAX
170 */ 170 */
171 count = length; 171 count = length / blk_size;
172 if (!base || !count || count > INT_MAX) 172 if (!base || !count || count > INT_MAX)
173 return -EINVAL; 173 return -EINVAL;
174 174