Skip to content

Commit

Permalink
drm/nouveau/nvkm: punt spurious irq messages to debug level
Browse files Browse the repository at this point in the history
This can be completely normal in some situations (ie. non-stall intrs
when nothing is waiting on them).

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Reviewed-by: Karol Herbst <kherbst@redhat.com>
Reviewed-by: Lyude Paul <lyude@redhat.com>
Signed-off-by: Karol Herbst <kherbst@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230525003106.3853741-2-skeggsb@gmail.com
  • Loading branch information
Ben Skeggs authored and Karol Herbst committed Jul 6, 2023
1 parent 83775e1 commit ba1efd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/gpu/drm/nouveau/nvkm/core/intr.c
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ nvkm_intr(int irq, void *arg)
list_for_each_entry(intr, &device->intr.intr, head) {
for (leaf = 0; leaf < intr->leaves; leaf++) {
if (intr->stat[leaf]) {
nvkm_warn(intr->subdev, "intr%d: %08x\n",
leaf, intr->stat[leaf]);
nvkm_debug(intr->subdev, "intr%d: %08x\n",
leaf, intr->stat[leaf]);
nvkm_intr_block_locked(intr, leaf, intr->stat[leaf]);
}
}
Expand Down

0 comments on commit ba1efd8

Please sign in to comment.