-
Notifications
You must be signed in to change notification settings - Fork 105
[linux-6.18.y] symbols: Export symbols needed by Android Drivers #1402
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.18.y
Are you sure you want to change the base?
Conversation
symbols: Export symbols needed by Android Drivers Signed-off-by: gfdgd_xi <3025613752@qq.com>
Reviewer's guide (collapsed on small PRs)Reviewer's GuideExports a set of core kernel and security helper symbols as GPL-only to support out-of-tree Android drivers and emulator components, without changing their internal behavior. Sequence diagram for Android driver using binder security helpersequenceDiagram
actor AndroidDriver
participant Kernel as KernelModuleBinder
participant Security as LSMHooks
AndroidDriver->>Kernel: security_binder_transaction(from_cred, to_cred)
Kernel->>Security: binder_transaction(from_cred, to_cred)
Security-->>Kernel: decision (allow_or_deny)
Kernel-->>AndroidDriver: return decision
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
Hi @gfdgd-xi. 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. DetailsInstructions 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. |
|
[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. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
Export the currently un-exported symbols to support some Android emulator such as kmre and so on.
Summary by Sourcery
Export previously internal kernel symbols required by Android driver and emulator support.
Enhancements: