-
Notifications
You must be signed in to change notification settings - Fork 101
deepin: KABI:kabi: reserve space for thread_info structure #1107
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
base: linux-6.6.y
Are you sure you want to change the base?
deepin: KABI:kabi: reserve space for thread_info structure #1107
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR updates the thread_info definitions for arm64 and x86 by importing the deepin_kabi header and inserting KABI reservation macros (on arm64) to allocate reserved space for the thread_info structure, ensuring ABI stability. Class diagram for updated thread_info structure (arm64)classDiagram
class thread_info {
+unsigned long flags
+unsigned long tp_value
+struct task_struct *task
+void *scs_sp
+u32 cpu
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
Class diagram for updated thread_info structure (x86)classDiagram
class thread_info {
// Existing fields (not shown in diff)
+// Reserved space via DEEPIN_KABI_RESERVE macros (imported header)
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Hi @yunjianshijie. Thanks for your PR. I'm waiting for a deepin-community member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
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.
hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I90MTG ------------------------------- Reserve space for arm64 and x86 thread_info structure Signed-off-by: Jialin Zhang <[email protected]> Signed-off-by: yunjianshijie <[email protected]>
a8c4102
to
d1b0694
Compare
hulk inclusion
category: feature
bugzilla: https://gitee.com/openeuler/kernel/issues/I90MTG
Reserve space for arm64 and x86 thread_info structure
Summary by Sourcery
Reserve space for the thread_info structure on arm64 by inserting KABI padding macros and include the deepin_kabi header in both arm64 and x86 to enable future thread_info ABI reservations
New Features: