diff options
| author | Gustavo A. R. Silva <[email protected]> | 2021-09-28 22:25:13 +0000 |
|---|---|---|
| committer | Gustavo A. R. Silva <[email protected]> | 2021-10-28 17:41:09 +0000 |
| commit | 71e4bbca070e84b85ee2f1748caf92f97e091c7b (patch) | |
| tree | 5d063beedafccccb2723e161fba3c366c19c8a45 | |
| parent | firmware/psci: fix application of sizeof to pointer (diff) | |
| download | kernel-71e4bbca070e84b85ee2f1748caf92f97e091c7b.tar.gz kernel-71e4bbca070e84b85ee2f1748caf92f97e091c7b.zip | |
nouveau/svm: Use kvcalloc() instead of kvzalloc()
Use 2-factor argument form kvcalloc() instead of kvzalloc().
Link: https://github.com/KSPP/linux/issues/162
Signed-off-by: Gustavo A. R. Silva <[email protected]>
Reviewed-by: Kees Cook <[email protected]>
| -rw-r--r-- | drivers/gpu/drm/nouveau/nouveau_svm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_svm.c b/drivers/gpu/drm/nouveau/nouveau_svm.c index b0c3422cb01f..1a896a24288a 100644 --- a/drivers/gpu/drm/nouveau/nouveau_svm.c +++ b/drivers/gpu/drm/nouveau/nouveau_svm.c @@ -992,7 +992,7 @@ nouveau_svm_fault_buffer_ctor(struct nouveau_svm *svm, s32 oclass, int id) if (ret) return ret; - buffer->fault = kvzalloc(sizeof(*buffer->fault) * buffer->entries, GFP_KERNEL); + buffer->fault = kvcalloc(sizeof(*buffer->fault), buffer->entries, GFP_KERNEL); if (!buffer->fault) return -ENOMEM; |
