Comments

KERNEL – 6.19-rc Pre-release Tests – VMware OK, NVIDIA Fails — 1 Comment

  1. Greetings!

    Indeed: a lot seems to have changed for the upcoming 6.19 kernel.
    According to this commit: https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/commit/?id=70e0a80a1f3580ccf5bc1f34dbb433c67d9d8d00 “in_irq()” is an old alias for “in_hardirq()”.

    NVIDIA: There are 2 places where this is used in the files common/inc/nv-time.h and nvidia/os-interface.c

    In common/inc/nv-time.h:
    – if (in_irq() && (us > NV_MAX_ISR_DELAY_US))
    + if (in_hardirq() && (us > NV_MAX_ISR_DELAY_US))

    And in nvidia/os-interface.c:
    – return (in_irq());
    + return (in_hardirq());

    And like you I couldn’t resolve the other errors (yet?).
    And there might be more to come, unfortunately…

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.