-
Notifications
You must be signed in to change notification settings - Fork 101
deepin: KABI:drm: Add kabi reserve in drm_gpu_scheduler.h #1117
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:drm: Add kabi reserve in drm_gpu_scheduler.h #1117
Conversation
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H --------------------------- Reserve space for drm_sched_entity, drm_sched_rq, drm_sched_fence, drm_sched_job and drm_gpu_scheduler in drm_gpu_scheduler.h. Signed-off-by: Wang Wensheng <[email protected]> Signed-off-by: yunjianshijie <[email protected]>
[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 patch integrates Deepin KABI support into the DRM GPU scheduler by including the deepin_kabi header and inserting DEEPIN_KABI_RESERVE placeholders across key scheduler structures to reserve ABI space. Class diagram for updated DRM GPU scheduler structures with KABI reservesclassDiagram
class drm_sched_entity {
+rb_tree_node
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
+DEEPIN_KABI_RESERVE(3)
+DEEPIN_KABI_RESERVE(4)
}
class drm_sched_rq {
+entities
+current_entity
+rb_tree_root
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
class drm_sched_fence {
+owner
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
class drm_sched_job {
+submit_ts
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
class drm_gpu_scheduler {
+ready
+free_guilty
+dev
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
+DEEPIN_KABI_RESERVE(3)
+DEEPIN_KABI_RESERVE(4)
}
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: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H
Reserve space for drm_sched_entity, drm_sched_rq, drm_sched_fence, drm_sched_job and drm_gpu_scheduler in drm_gpu_scheduler.h.
Summary by Sourcery
Bug Fixes: