-
Notifications
You must be signed in to change notification settings - Fork 19
Merge tag 'rolling-lts/hcl-main/6.12.52.4' into project/hcl-dev/6.12 #112
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
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
5469764
mshv_vtl/tdx: Add member to tdx vp context for TDX timer service
yamahata c79ca81
mshv_vtl/tdx: Factor out tdg_vp_wr() wrapper
yamahata 1bf0706
mshv_vtl/tdx: Set TSC deadline if userspace requests
yamahata 5992af2
mshv_vtl/tdx: Skip duplicated TDG.VP.WR(TSC deadline)
yamahata fc1601f
mshv_vtl/tdx: Arm per-cpu timer to wake up from L0 HLT emulation
yamahata 9b80430
mshv_vtl/tdx: Eliminate duplicate tdg.vp.wr(TSC deadline = disarm)
yamahata 3528fd7
drivers: hv: mshv_vtl: Advertise TDX timer service extension
yamahata 8bfc1c1
arch/x86: Unbreak df21bf37518b ("arch/x86: Provide the CPU number in …
yamahata f526808
Ohcl tdx timer service support
hargar19 e52cdcd
mshv_vtl/tdx: Fix arm64 build
yamahata 9519a2a
mshv_vtl/tdx: Fix compile error, parameter name omitted
yamahata 5da04eb
mshv_vtl/tdx: Move up one ifdef COFIG_INTEL_TDX_GUEST
yamahata 28e74f6
Add ifdef and define to fix arm64 build
hargar19 1047cf1
drivers: hv: mshv_vtl: 0 for MSHV_CAP_LOWER_VTL_TIMER_VIRT if unsuppo…
yamahata 97a9e14
drivers: hv: mshv_vtl: return 0 for MSHV_CAP_LOWER_VTL_TIMER_VIRT if …
hargar19 2672b70
Merge tag 'rolling-lts/hcl-main/6.12.52.4' into project/hcl-dev/6.12
hargar19 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,3 @@ | ||
| { | ||
| "branch": "product/underhill-dev/6.12" | ||
| "branch": "product/underhill-main/6.12" | ||
| } |
This file contains hidden or 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
This file contains hidden or 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
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -77,6 +77,21 @@ struct tdx_l2_enter_guest_state { | |||||
| u8 reserved[6]; | ||||||
| }; | ||||||
|
|
||||||
| #define MSHV_VTL_TDX_L2_DEADLINE_DISARMED (0ULL) | ||||||
|
|
||||||
| /* | ||||||
| * Userspace sets this bit for the kernel to issue TDG.VP.WR(TSC_DEADLINE) | ||||||
| * when it changed deadline. | ||||||
| * The kernel clears this bits on TDG.VP.WR(TSC_DEADLINE). | ||||||
|
||||||
| * The kernel clears this bits on TDG.VP.WR(TSC_DEADLINE). | |
| * The kernel clears this bit on TDG.VP.WR(TSC_DEADLINE). |
Oops, something went wrong.
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.
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.
The parameter
cpuis added to the function signature but is not used in the function body. If this parameter is required for API compatibility, consider adding a comment explaining why it's unused, or use the__maybe_unusedattribute to document the intentional non-use.