diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-05-10 01:00:45 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-05-11 01:30:52 +0200 |
commit | c1d219c066a5fbf6a6a4c3139f64954dbf12fd02 (patch) | |
tree | c3f39389796b8fb7cb8e044716c2307bbef53487 /proc | |
parent | 50888737e48bab04a2c1290226249db927a60b4b (diff) | |
download | hurd-c1d219c066a5fbf6a6a4c3139f64954dbf12fd02.tar.gz hurd-c1d219c066a5fbf6a6a4c3139f64954dbf12fd02.tar.bz2 hurd-c1d219c066a5fbf6a6a4c3139f64954dbf12fd02.zip |
Only use host_get_kernel_version and default_pager_paging_storage_new in x86_64.
Also fixed the implementation of default_pager_paging_storage_new in proxy
def pager to call into default_pager_paging_storage_new.
We can fast track the simplification of the RPC ABI for x86_64 if we don't have
MACH_MSG_TYPE_STRING used in RPCs which forces msgt_size to use more than 8
bits.
Message-Id: <ZFsk/W+slpAZyTG1@jupiter.tail36e24.ts.net>
Diffstat (limited to 'proc')
-rw-r--r-- | proc/host.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/proc/host.c b/proc/host.c index e9f36f51..e2942f8e 100644 --- a/proc/host.c +++ b/proc/host.c @@ -364,11 +364,14 @@ initialize_version_info (void) server_versions_nalloc = 10; err = host_get_kernel_version (mach_host_self (), kv); +#ifndef __x86_64__ + /* We don't support host_kernel_version for x86_64. */ if (err == MIG_BAD_ID) { /* Delete after some time. */ err = host_kernel_version (mach_host_self (), kv); } +#endif assert_backtrace (! err); /* Make sure the result is null-terminated, as the kernel doesn't guarantee it. */ |