Home
last modified time | relevance | path

Searched refs:host_start (Results 1 – 7 of 7) sorted by relevance

/openbmc/qemu/bsd-user/
H A Dmmap.c66 abi_ulong end, host_start, host_end, addr; in target_mprotect() local
85 host_start = start & qemu_host_page_mask; in target_mprotect()
87 if (start > host_start) { in target_mprotect()
90 for (addr = host_start; addr < start; addr += TARGET_PAGE_SIZE) { in target_mprotect()
93 if (host_end == host_start + qemu_host_page_size) { in target_mprotect()
99 ret = mprotect(g2h_untagged(host_start), in target_mprotect()
103 host_start += qemu_host_page_size; in target_mprotect()
118 if (host_start < host_end) { in target_mprotect()
119 ret = mprotect(g2h_untagged(host_start), host_end - host_start, prot); in target_mprotect()
191 void *host_start; in mmap_frag() local
[all …]
/openbmc/qemu/linux-user/
H A Dmmap.c173 abi_ulong host_start, host_last, last; in target_mprotect() local
194 host_start = start & -host_page_size; in target_mprotect()
200 if (host_last - host_start < host_page_size) { in target_mprotect()
203 for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) { in target_mprotect()
209 starts[nranges] = host_start; in target_mprotect()
214 if (host_start < start) { in target_mprotect()
217 for (abi_ulong a = host_start; a < start; a += TARGET_PAGE_SIZE) { in target_mprotect()
222 starts[nranges] = host_start; in target_mprotect()
226 host_start += host_page_size; in target_mprotect()
247 if (host_start < host_last) { in target_mprotect()
[all …]
H A Dsyscall.c8129 uintptr_t host_start = (uintptr_t)g2h_untagged(guest_start); in open_self_maps_2() local
8146 interval_tree_iter_first(d->host_maps, host_start, host_start); in open_self_maps_2()
8156 host_start = this_hlast + 1; in open_self_maps_2()
8157 guest_start = h2g(host_start); in open_self_maps_2()
/openbmc/linux/drivers/usb/chipidea/
H A Dhost.c119 static int host_start(struct ci_hdrc *ci) in host_start() function
478 rdrv->start = host_start; in ci_hdrc_host_init()
/openbmc/linux/drivers/net/ethernet/sfc/siena/
H A Dptp.c202 u32 host_start; member
897 timeset->host_start = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_HOSTSTART); in efx_ptp_read_timeset()
904 start_ns = timeset->host_start & MC_NANOSECOND_MASK; in efx_ptp_read_timeset()
994 start_sec = ptp->timeset[last_good].host_start >> MC_NANOSECOND_BITS; in efx_ptp_process_times()
1005 (ptp->timeset[last_good].host_start & MC_NANOSECOND_MASK); in efx_ptp_process_times()
/openbmc/linux/drivers/net/ethernet/sfc/
H A Dptp.c193 u32 host_start; member
878 timeset->host_start = MCDI_DWORD(data, PTP_OUT_SYNCHRONIZE_HOSTSTART); in efx_ptp_read_timeset()
885 start_ns = timeset->host_start & MC_NANOSECOND_MASK; in efx_ptp_read_timeset()
975 start_sec = ptp->timeset[last_good].host_start >> MC_NANOSECOND_BITS; in efx_ptp_process_times()
986 (ptp->timeset[last_good].host_start & MC_NANOSECOND_MASK); in efx_ptp_process_times()
/openbmc/linux/drivers/accel/habanalabs/common/
H A Ddebugfs.c803 u64 host_start = hdev->asic_prop.host_base_address; in hl_access_mem() local
831 if (addr >= host_start && addr <= host_end - acc_size) { in hl_access_mem()