forked from project-oak/hafnium-verification
-
Notifications
You must be signed in to change notification settings - Fork 4
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
Oxidize Hafnium's initialization sequence (successor of #45) #52
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…afe wrapper functions instead.
…valuates condition expression in do-while loop)
…mber fields on MemIter.
jeehoonkang
reviewed
Sep 11, 2019
jeehoonkang
reviewed
Sep 11, 2019
jeehoonkang
reviewed
Sep 11, 2019
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
코멘트 한두개 빼고 다 정리된 것 같아요. 고생하셨습니다.
아래 두 개는 어떻게 할까요?
|
jeehoonkang
reviewed
Sep 11, 2019
INITED 타입 변경, stack_bottom 초기화는 일단 하지 맙시다. |
INITED 타입을 변경하고, issue들을 만들고, review를 모두 resolve 했습니다. 🚀🚀 |
jeehoonkang
pushed a commit
that referenced
this pull request
Sep 11, 2019
고생하셨습니다! 넉넉한 한가위 보내세요- |
새벽까지 신경써주셔서 감사합니다 ㅠㅠ 추석 잘 보내세요 :) |
efenniht
added a commit
to efenniht/hafnium-verification
that referenced
this pull request
Nov 13, 2019
efenniht
added a commit
that referenced
this pull request
Nov 26, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#45 가 너무 커져서 다시 만드는 PR입니다. #45의 리뷰를 딱 하나 남기고 다 resolve 했습니다. 남은 것은:
one_time_init
에서INITED
변수를 확인하고 업데이트합니다.INITED
변수는 사실 atomic할 필요는 없는데, 그래도AtomicBool
로 만들까요..? (다른 pCPU가 INITED를 읽을 때까지 INITED = true가 실행되지 않을 수 있을까요?)boot_cpu
의stack_bottom
을 어셈블리에서 초기화하려면 어셈블리 코드를 고쳐야 하는데, 아마 이전hypervisor_entry
를 수정하는 정도의 어셈블리 수정이 일어날 것 같습니다. 이것은 하지 않는 게 좋지 않을까요?Closes #32.