qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request()
@ 2024-03-27 19:27 Kevin Wolf
  2024-03-28 10:35 ` Fiona Ebner
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Kevin Wolf @ 2024-03-27 19:27 UTC (permalink / raw)
  To: qemu-block; +Cc: kwolf, f.ebner, qemu-devel

Coverity complains that the check introduced in commit 3f934817 suggests
that qiov could be NULL and we dereference it before reaching the check.
In fact, all of the callers pass a non-NULL pointer, so just remove the
misleading check.

Resolves: Coverity CID 1542668
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
---
 block/io.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/io.c b/block/io.c
index 395bea3bac..7217cf811b 100644
--- a/block/io.c
+++ b/block/io.c
@@ -1730,7 +1730,7 @@ static int bdrv_pad_request(BlockDriverState *bs,
      * For prefetching in stream_populate(), no qiov is passed along, because
      * only copy-on-read matters.
      */
-    if (qiov && *qiov) {
+    if (*qiov) {
         sliced_iov = qemu_iovec_slice(*qiov, *qiov_offset, *bytes,
                                       &sliced_head, &sliced_tail,
                                       &sliced_niov);
-- 
2.44.0



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request()
  2024-03-27 19:27 [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request() Kevin Wolf
@ 2024-03-28 10:35 ` Fiona Ebner
  2024-03-28 11:24 ` Philippe Mathieu-Daudé
  2024-04-02 10:53 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 5+ messages in thread
From: Fiona Ebner @ 2024-03-28 10:35 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: qemu-devel

Am 27.03.24 um 20:27 schrieb Kevin Wolf:
> Coverity complains that the check introduced in commit 3f934817 suggests
> that qiov could be NULL and we dereference it before reaching the check.
> In fact, all of the callers pass a non-NULL pointer, so just remove the
> misleading check.
> 
> Resolves: Coverity CID 1542668
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>

Reviewed-by: Fiona Ebner <f.ebner@proxmox.com>

Thank you for the fix,
Fiona



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request()
  2024-03-27 19:27 [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request() Kevin Wolf
  2024-03-28 10:35 ` Fiona Ebner
@ 2024-03-28 11:24 ` Philippe Mathieu-Daudé
  2024-04-02 10:53 ` Philippe Mathieu-Daudé
  2 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-03-28 11:24 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: f.ebner, qemu-devel

On 27/3/24 20:27, Kevin Wolf wrote:
> Coverity complains that the check introduced in commit 3f934817 suggests
> that qiov could be NULL and we dereference it before reaching the check.
> In fact, all of the callers pass a non-NULL pointer, so just remove the
> misleading check.
> 
> Resolves: Coverity CID 1542668
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>   block/io.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request()
  2024-03-27 19:27 [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request() Kevin Wolf
  2024-03-28 10:35 ` Fiona Ebner
  2024-03-28 11:24 ` Philippe Mathieu-Daudé
@ 2024-04-02 10:53 ` Philippe Mathieu-Daudé
  2024-04-02 12:38   ` Kevin Wolf
  2 siblings, 1 reply; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2024-04-02 10:53 UTC (permalink / raw)
  To: Kevin Wolf, qemu-block; +Cc: f.ebner, qemu-devel

On 27/3/24 20:27, Kevin Wolf wrote:
> Coverity complains that the check introduced in commit 3f934817 suggests
> that qiov could be NULL and we dereference it before reaching the check.
> In fact, all of the callers pass a non-NULL pointer, so just remove the
> misleading check.
> 
> Resolves: Coverity CID 1542668
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
>   block/io.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)

Since I'm not seeing other block related patch for 9.0 and
I'm preparing a pull request, I'm queuing this one.

Regards,

Phil.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request()
  2024-04-02 10:53 ` Philippe Mathieu-Daudé
@ 2024-04-02 12:38   ` Kevin Wolf
  0 siblings, 0 replies; 5+ messages in thread
From: Kevin Wolf @ 2024-04-02 12:38 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé; +Cc: qemu-block, f.ebner, qemu-devel

Am 02.04.2024 um 12:53 hat Philippe Mathieu-Daudé geschrieben:
> On 27/3/24 20:27, Kevin Wolf wrote:
> > Coverity complains that the check introduced in commit 3f934817 suggests
> > that qiov could be NULL and we dereference it before reaching the check.
> > In fact, all of the callers pass a non-NULL pointer, so just remove the
> > misleading check.
> > 
> > Resolves: Coverity CID 1542668
> > Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> > ---
> >   block/io.c | 2 +-
> >   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Since I'm not seeing other block related patch for 9.0 and
> I'm preparing a pull request, I'm queuing this one.

Thanks, Phil. I didn't send a pull request because I didn't have
anything else and silencing a Coverity false positive didn't seem urgent
for 9.0, but it certainly doesn't hurt either.

Kevin



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-04-02 12:39 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-27 19:27 [PATCH] block: Remove unnecessary NULL check in bdrv_pad_request() Kevin Wolf
2024-03-28 10:35 ` Fiona Ebner
2024-03-28 11:24 ` Philippe Mathieu-Daudé
2024-04-02 10:53 ` Philippe Mathieu-Daudé
2024-04-02 12:38   ` Kevin Wolf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).