summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/common/mm/lockless_allocator.c')
-rw-r--r--drivers/gpu/nvgpu/common/mm/lockless_allocator.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
index 7a5f67e9..eec661bc 100644
--- a/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
+++ b/drivers/gpu/nvgpu/common/mm/lockless_allocator.c
@@ -159,7 +159,7 @@ static const struct nvgpu_allocator_ops pool_ops = {
159#endif 159#endif
160}; 160};
161 161
162int nvgpu_lockless_allocator_init(struct gk20a *g, struct nvgpu_allocator *__a, 162int nvgpu_lockless_allocator_init(struct gk20a *g, struct nvgpu_allocator *na,
163 const char *name, u64 base, u64 length, 163 const char *name, u64 base, u64 length,
164 u64 blk_size, u64 flags) 164 u64 blk_size, u64 flags)
165{ 165{
@@ -187,7 +187,7 @@ int nvgpu_lockless_allocator_init(struct gk20a *g, struct nvgpu_allocator *__a,
187 return -ENOMEM; 187 return -ENOMEM;
188 } 188 }
189 189
190 err = __nvgpu_alloc_common_init(__a, g, name, a, false, &pool_ops); 190 err = __nvgpu_alloc_common_init(na, g, name, a, false, &pool_ops);
191 if (err) { 191 if (err) {
192 goto fail; 192 goto fail;
193 } 193 }
@@ -216,13 +216,13 @@ int nvgpu_lockless_allocator_init(struct gk20a *g, struct nvgpu_allocator *__a,
216 a->inited = true; 216 a->inited = true;
217 217
218#ifdef CONFIG_DEBUG_FS 218#ifdef CONFIG_DEBUG_FS
219 nvgpu_init_alloc_debug(g, __a); 219 nvgpu_init_alloc_debug(g, na);
220#endif 220#endif
221 alloc_dbg(__a, "New allocator: type lockless"); 221 alloc_dbg(na, "New allocator: type lockless");
222 alloc_dbg(__a, " base 0x%llx", a->base); 222 alloc_dbg(na, " base 0x%llx", a->base);
223 alloc_dbg(__a, " nodes %d", a->nr_nodes); 223 alloc_dbg(na, " nodes %d", a->nr_nodes);
224 alloc_dbg(__a, " blk_size 0x%llx", a->blk_size); 224 alloc_dbg(na, " blk_size 0x%llx", a->blk_size);
225 alloc_dbg(__a, " flags 0x%llx", a->flags); 225 alloc_dbg(na, " flags 0x%llx", a->flags);
226 226
227 return 0; 227 return 0;
228 228