-
Notifications
You must be signed in to change notification settings - Fork 101
deepin: KABI:drm/ttm: Add kabi reserve in ttm_resource.h #1123
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/ttm: Add kabi reserve in ttm_resource.h #1123
Conversation
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThe patch updates ttm_resource.h by including the Deepin KABI header and inserting DEEPIN_KABI_RESERVE padding fields into key DRM TTM structures to preserve Deepin ABI compatibility. Class diagram for updated DRM TTM structures with Deepin KABI reservesclassDiagram
class ttm_resource_manager_func {
+void (*debug)(ttm_resource_manager*, drm_printer*)
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
+DEEPIN_KABI_RESERVE(3)
+DEEPIN_KABI_RESERVE(4)
}
class ttm_resource_manager {
+uint64_t usage
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
class ttm_bus_placement {
+phys_addr_t offset
+bool is_iomem
+ttm_caching caching
+DEEPIN_KABI_RESERVE(1)
+DEEPIN_KABI_RESERVE(2)
}
class ttm_resource {
+list_head lru
+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
|
[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 |
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. |
hulk inclusion category: bugfix bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H --------------------------- Reserve space for ttm_resource_manager_func, ttm_resource_manager, ttm_bus_placement and ttm_resource in ttm_resource.h Signed-off-by: Wang Wensheng <[email protected]> Signed-off-by: yunjianshijie <[email protected]>
cb36d1b
to
90dc53e
Compare
hulk inclusion
category: bugfix
bugzilla: https://gitee.com/openeuler/kernel/issues/I9244H
Reserve space for ttm_resource_manager_func, ttm_resource_manager, ttm_bus_placement and ttm_resource in ttm_resource.h
Summary by Sourcery
Add DEEPIN_KABI_RESERVE entries to ttm_resource.h to maintain Deepin kernel ABI compatibility for TTM resource management structs
Bug Fixes: