Răsfoiți Sursa

drm/radeon/kms: Don't try to process irq when we are unloading

If module is being unloaded we should not try to handle irq especialy
we should not call into drm helper or we could hard hang the computer
free_irq will call the irq handler to make sure we behave properly.

Signed-off-by: Jerome Glisse <jglisse@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Jerome Glisse 16 ani în urmă
părinte
comite
a513c184d9
1 a modificat fișierele cu 3 adăugiri și 0 ștergeri
  1. 3 0
      drivers/gpu/drm/radeon/r100.c

+ 3 - 0
drivers/gpu/drm/radeon/r100.c

@@ -319,6 +319,9 @@ int r100_irq_process(struct radeon_device *rdev)
 	if (!status) {
 	if (!status) {
 		return IRQ_NONE;
 		return IRQ_NONE;
 	}
 	}
+	if (rdev->shutdown) {
+		return IRQ_NONE;
+	}
 	while (status) {
 	while (status) {
 		/* SW interrupt */
 		/* SW interrupt */
 		if (status & RADEON_SW_INT_TEST) {
 		if (status & RADEON_SW_INT_TEST) {