Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding more checks and verbose error message: #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

ocochard
Copy link

  • Testing for TSLOG buffer overflow
  • Testing for too old loader usage
  • Renaming USAGE to README.md to be more github friendly

- Testing for TSLOG buffer overflow
- Testing for too old loader usage
echo "No loader timestamp detected, are you using up-to-date loader?" 1>&2
exit
fi
if [ ! -f tslog.thread.start_init ]; then
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A better check would be for tsc.end existing -- if we have 'ENTER start_init' but the tslog buffer is truncated before 'EXIT start_init' then we'll have tslog.thread.start_init but not tsc.end.

@@ -47,6 +49,14 @@ while read THREAD; do
echo "$TD $TSC STACK $STACK"
done > tslog.thread.$THREAD
done < threads
if [ ! -f tslog.thread.0x0 ]; then
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We could handle this case by processing what we have (i.e. kernel tslog). It wouldn't give us a complete picture of the boot process, but might still be better than nothing?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants