Skip to content

Commit

Permalink
don't report harmless fingerprint-service.goodix crash
Browse files Browse the repository at this point in the history
  • Loading branch information
muhomorr authored and thestinger committed Nov 15, 2024
1 parent f338706 commit 9b8d306
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions services/core/java/com/android/server/ext/TombstoneHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,20 @@ private static boolean shouldIgnore(TombstoneProtos.Tombstone t, TombstoneProtos
);
}

if ("/apex/com.google.android.hardware.biometrics.fingerprint/bin/hw/android.hardware.biometrics.fingerprint-service.goodix".equals(cmdline[0])) {
// rare harmless crash, fingerprint service restarts and continues to work
return checkBacktraceFunctionNames(backtrace, 0
, "android::VectorImpl::editArrayImpl"
, "goodix::EventCenter::hasUpEvt"
, "goodix::DelmarSensor::checkFingerUp"
, "goodix::DelmarSensor::readImage"
, "goodix::CustomizedSensor::readImage"
, "goodix::DelmarFingerprintCore::onAfterAuthCapture"
, "goodix::CustomizedFingerprintCore::onAfterAuthCapture"
, "goodix::FingerprintCore::onAuthDownEvt"
);
}

return false;
}

Expand Down

0 comments on commit 9b8d306

Please sign in to comment.