diff options
author | Inseob Kim <inseob@google.com> | 2020-05-11 16:06:19 +0900 |
---|---|---|
committer | Inseob Kim <inseob@google.com> | 2020-05-11 22:19:38 +0900 |
commit | dfafe03cb45b249ecdab38cb8015156453820a3c (patch) | |
tree | fef9ffa929112e8aa92257f25e00fe176411e38e /core/proto | |
parent | c4a99abf3493b4b58e39a751ab35c78811c93eb6 (diff) |
Remove sys.vdso property
This is an experimental property on Q and doesn't need anymore.
Bug: 154885206
Test: N/A
Change-Id: Ibb09e17703fbc95fe41542d335311b68553502a0
Diffstat (limited to 'core/proto')
-rw-r--r-- | core/proto/android/providers/settings/global.proto | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/core/proto/android/providers/settings/global.proto b/core/proto/android/providers/settings/global.proto index 762895b6320f..7865c7060fdf 100644 --- a/core/proto/android/providers/settings/global.proto +++ b/core/proto/android/providers/settings/global.proto @@ -908,13 +908,8 @@ message GlobalSettingsProto { optional SettingProto storage_full_threshold_bytes = 4 [ (android.privacy).dest = DEST_AUTOMATIC ]; optional SettingProto storage_cache_percentage = 5 [ (android.privacy).dest = DEST_AUTOMATIC ]; optional SettingProto storage_cache_max_bytes = 6 [ (android.privacy).dest = DEST_AUTOMATIC ]; - // System VDSO global setting. This links to the "sys.vdso" system property. - // The following values are supported: - // false -> both 32 and 64 bit vdso disabled - // 32 -> 32 bit vdso enabled - // 64 -> 64 bit vdso enabled - // Any other value defaults to both 32 bit and 64 bit true. - optional SettingProto vdso = 7 [ (android.privacy).dest = DEST_AUTOMATIC ]; + // Used to be sys_vdso + reserved 7; // UidCpuPower global setting. This links the sys.uidcpupower system property. // The following values are supported: // 0 -> /proc/uid_cpupower/* are disabled |