-
Notifications
You must be signed in to change notification settings - Fork 346
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
cache cpu info in a file at boot. #261
base: main
Are you sure you want to change the base?
Conversation
Hi, requesting concerned moderator to take a look at this proposal and review the patch. |
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.
Thank you for your contribution.
(1) tlb refactor should be in a different commit
(2) please add some tests for cpuid features
(3) update PR summary for performance data and rationale for Android vm-exit overhead reduction.
tlb variables are moved into a struct for clean and readable code. Signed-off-by: Balakrishnan Unnithan <[email protected]>
77c9122
to
f6c059f
Compare
separated tlb refactor codes and cpu info caching. |
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.
Hello, apologies for a delay, can you help me understand,
(1) why does it have to be __ANDROID__
specific. And Why can't a Linux user use cpuinfo-svc?
(1.1) Does it have to be x86 specific? We don't have to use it for other ISAs, I don't have a too strong preference here.
(2) why a user facing "app" is in the src/x86/linux/
vs cpuinfo/tools
?
Thank you @digantdesai for your review. Answer to (1) and (2): |
|
Instrumented cpuinfo to read the populated cpu info data from cpuid.info file during initialization. Consumers of the library or OEMs can trigger a oneshot service - cpuinfo-svc - during device boot to link libcpuinfo and dump all cpu info related to processor, model, arch and isa capabilities into cpuid.info file. This arrangement will limit cpuid() intrinsic calls (which causes VM-Exit events and performance overhead) to only once during init of libcpuinfo at boot by cpuinfo-svc. Signed-off-by: Balakrishnan Unnithan <[email protected]>
61d92c7
to
085a58d
Compare
Agreed! |
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.
I think we are getting pretty close. Left some minor comments. Thanks!
PR LGTM. Left a comment about validation after loading from the file. |
0001-Cache-cpu-info-in-a-file-at-boot.patch |
Instrumented cpuinfo to read the populated cpu info data from cpuid.info file during initialization.
Consumers of the library or OEMs can trigger a oneshot service - cpuinfo-svc - during device boot to link libcpuinfo and
dump all cpu info related to processor, model, arch and isa capabilities into cpuid.info file.
This arrangement will limit cpuid() intrinsic calls (which causes VMX events and performance overhead) to only once during init of libcpuinfo at boot by cpuinfo-svc.
Its little tricky to count the exact number of VM-Exits caused by CPUID calls.
For this effect, we have written a script to run an Android (dummy) service
that loads libcpuinfo - first in original version and next in modified version.
libcpuinfo makes around 4 __cpuid() calls on each initialization.
So, to amplify the effect, we have run the dummy service 1000 times and timed the total
execution (4000 __cpuid() calls and 8000 VMX events) in nano second precision.
This test shows that there is a reduction of approx. 0.6% in time to execute libcpuinfo.
Also, we attempted to record the KVM event statistics using perf tool.
Perf records the stats during the execution of same script.
The data shows that approx. 20,000 kvm_cpuid events reduced in modified libcpuinfo calls.
We cannot assume that all the CPUID calls are contributed by our script.
We are only making a safe assumption that the proportional reduction is affected
by the modification we did. We had made all efforts to keep the test conditions
similar in both cases.
Please find attached the excel sheet containing the test data.
libcpuinfo_enhancement_test_data.xlsx