]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
drm/virtio: fix resource id creation race
authorJohn Bates <jbates@chromium.org>
Thu, 20 Feb 2020 22:53:19 +0000 (14:53 -0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Mar 2020 06:18:39 +0000 (07:18 +0100)
commitdc4d8133d292557dca462feda9828ca0f8bcefed
tree94c01737674210f590b781f53cfd1a5e4e4c6824
parentaa63cc16d7f59c3efa5ae69e66ed334c2161e318
drm/virtio: fix resource id creation race

commit fbb30168c7395b9cfeb9e6f7b0c0bca854a6552d upstream.

The previous code was not thread safe and caused
undefined behavior from spurious duplicate resource IDs.
In this patch, an atomic_t is used instead. We no longer
see any duplicate IDs in tests with this change.

Fixes: 16065fcdd19d ("drm/virtio: do NOT reuse resource ids")
Signed-off-by: John Bates <jbates@chromium.org>
Reviewed-by: Chia-I Wu <olvaffe@gmail.com>
Link: http://patchwork.freedesktop.org/patch/msgid/20200220225319.45621-1-jbates@chromium.org
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/virtio/virtgpu_object.c