> Date: Tue, 28 Dec 2021 11:34:43 +0900 > From: Ryo ONODERA <[email protected]> > > intel_gt_pm_fini() at netbsd:intel_gt_pm_fini+0x18 > intel_gt_init() at netbsd:intel_gt_init+0x6ad > i915_gem_init() at netbsd:i915_gem_init+0x14d > i915_driver_probe() at netbsd:i915_driver_probe+0x949 > i915drmkms_attach_real() at netbsd:i915drmkms_attach_real+0x4c > config_mountroot_thread() at netbsd:config_mountroot_thread+0x60
So intel_gt_init is failing on boot, and the driver has decided to give up -- and proximate cause of the crash is that one of the error branches is screwy, but while it would be nice to fix the error branches it's more important to find why we're reaching them in the first place. Can you get a line number for intel_gt_init+0x6ad, and can you also insert prints into every error branch of intel_gt_init to find out which one it is and how it fails? And maybe do that recursively in whichever branch does fail?
