Re: [PATCH] virtio: fix off by one device id comparison

2021-02-25 Thread Tom Rini
On Sun, Feb 14, 2021 at 07:39:04PM +0100, Vincent Stehlé wrote: > VIRTIO_ID_MAX_NUM is the largest device ID plus 1. Therefore a device id > cannot be greater or equal to VIRTIO_ID_MAX_NUM. Fix the comparison > accordingly. > > Fixes: 8fb49b4c7a82 ("dm: Add a new uclass driver for VirtIO transpor

[PATCH] virtio: fix off by one device id comparison

2021-02-15 Thread Vincent Stehlé
VIRTIO_ID_MAX_NUM is the largest device ID plus 1. Therefore a device id cannot be greater or equal to VIRTIO_ID_MAX_NUM. Fix the comparison accordingly. Fixes: 8fb49b4c7a82 ("dm: Add a new uclass driver for VirtIO transport devices") Signed-off-by: Vincent Stehlé Cc: Simon Glass Cc: Bin Meng -

Re: [PATCH] virtio: fix off by one device id comparison

2021-02-15 Thread Bin Meng
On Mon, Feb 15, 2021 at 4:24 PM Vincent Stehlé wrote: > > VIRTIO_ID_MAX_NUM is the largest device ID plus 1. Therefore a device id > cannot be greater or equal to VIRTIO_ID_MAX_NUM. Fix the comparison > accordingly. > > Fixes: 8fb49b4c7a82 ("dm: Add a new uclass driver for VirtIO transport > devi