3 Commits

Author SHA1 Message Date
Tom Rix
bc7878a2c7 silence double free warning
clang static analysis reports this issue on RHEL
open-gpu-kernel-modules/kernel-open/nvidia/nv.c:1392:9: warning: Attempt to free released memory [unix.Malloc]
        NV_KFREE(nvl->irq_count, nvl->num_intr*sizeof(nv_irq_count_info_t));
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

This is a false positive, NV_FLAG_USES_MSIX and NV_FLAG_USES_MSI
are mutually exclusive.  Convert the NV_FLAG_USE_MSIX 'if' to an
'if else'

Signed-off-by: Tom Rix <trix@redhat.com>
2022-05-15 09:43:15 -04:00
Filip Fedoryszyn
eb960e2f2a Fixed some typos 2022-05-12 22:16:20 -07:00
Andy Ritger
1739a20efc
515.43.04 2022-05-09 13:18:59 -07:00