diff options
author | 2016-11-05 14:14:20 +1000 | |
---|---|---|
committer | 2017-02-17 17:38:07 +1000 | |
commit | 86d7442baa6ec9f563343fd8515531201312de44 (patch) | |
tree | 7e2a0f4b5f5ab5e81fd37c268f4f7bbd640f5f95 | |
parent | drm/nouveau/drm/nouveau/led: prevent a possible use-after-free (diff) | |
download | linux-rng-86d7442baa6ec9f563343fd8515531201312de44.tar.xz linux-rng-86d7442baa6ec9f563343fd8515531201312de44.zip |
drm/nouveau/core: increase maximum number of notifies that a client can request
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/include/nvkm/core/client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/core/client.h b/drivers/gpu/drm/nouveau/include/nvkm/core/client.h index e41231925109..e876634da10a 100644 --- a/drivers/gpu/drm/nouveau/include/nvkm/core/client.h +++ b/drivers/gpu/drm/nouveau/include/nvkm/core/client.h @@ -9,7 +9,7 @@ struct nvkm_client { u64 device; u32 debug; - struct nvkm_client_notify *notify[16]; + struct nvkm_client_notify *notify[32]; struct rb_root objroot; bool super; |