summary refs log tree commit diff stats
path: root/linux-user/mmap.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* linux-user: Fix shmat(NULL) for h != gIlya Leoshkevich2024-03-261-1/+1
* linux-user: Rewrite target_shmatRichard Henderson2024-03-011-33/+133
* linux-user: Split out mmap_h_gt_gRichard Henderson2024-02-291-149/+139
* linux-user: Split out mmap_h_lt_gRichard Henderson2024-02-291-31/+153
* linux-user: Split out mmap_h_eq_gRichard Henderson2024-02-291-13/+55
* linux-user: Use do_munmap for target_mmap failureRichard Henderson2024-02-291-3/+3
* linux-user: Split out do_munmapRichard Henderson2024-02-291-7/+16
* linux-user: Do early mmap placement only for reserved_vaRichard Henderson2024-02-291-5/+7
* linux-user: Split out mmap_endRichard Henderson2024-02-291-30/+41
* linux-user: Fix sub-host-page mmapRichard Henderson2024-02-291-3/+2
* linux-user: Move some mmap checks outside the lockRichard Henderson2024-02-291-54/+53
* linux-user: Split out target_mmap__lockedRichard Henderson2024-02-291-27/+35
* linux-user: Remove HOST_PAGE_ALIGN from mmap.cRichard Henderson2024-02-291-7/+6
* linux-user: Remove REAL_HOST_PAGE_ALIGN from mmap.cRichard Henderson2024-02-291-1/+1
* linux-user: Remove qemu_host_page_{size, mask} from mmap.cRichard Henderson2024-02-291-33/+33
* target/arm: Move feature test functions to their own headerPeter Maydell2023-10-271-0/+4
* linux-user: Propagate failure in mmap_reserve_or_unmap back to target_munmapRichard Henderson2023-10-181-13/+17
* linux-user/mmap.c: clean up local variable shadowingLaurent Vivier2023-10-061-3/+3
* linux-user: Track shm regions with an interval treeRichard Henderson2023-09-011-28/+53
* linux-user: Fix shmdtRichard Henderson2023-09-011-3/+14
* linux-user: Use WITH_MMAP_LOCK_GUARD in target_{shmat,shmdt}Richard Henderson2023-09-011-52/+46
* linux-user: Move shmat and shmdt implementations to mmap.cRichard Henderson2023-09-011-0/+138
* linux-user: Define ELF_ET_DYN_BASE in $guest/target_mman.hRichard Henderson2023-08-081-0/+1
* linux-user: Adjust task_unmapped_base for reserved_vaRichard Henderson2023-08-081-15/+3
* linux-user: Remove last_brkRichard Henderson2023-08-061-2/+0
* linux-user: Fix MAP_FIXED_NOREPLACE on old kernelsAkihiko Odaki2023-08-061-5/+17
* linux-user: Unset MAP_FIXED_NOREPLACE for hostAkihiko Odaki2023-08-061-5/+20
* include/exec: Add WITH_MMAP_LOCK_GUARDRichard Henderson2023-07-231-0/+1
* linux-user: Simplify target_madviseRichard Henderson2023-07-151-15/+4
* linux-user: Remove can_passthrough_madviseRichard Henderson2023-07-151-21/+3
* linux-user: Simplify target_munmapRichard Henderson2023-07-151-43/+4
* linux-user: Rename mmap_reserve to mmap_reserve_or_unmapRichard Henderson2023-07-151-13/+16
* linux-user: Rewrite mmap_reserveRichard Henderson2023-07-151-26/+42
* linux-user: Use 'last' instead of 'end' in target_mmapRichard Henderson2023-07-151-22/+23
* linux-user: Use page_find_range_empty for mmap_find_vma_reservedRichard Henderson2023-07-151-46/+6
* linux-user: Rewrite mmap_fragRichard Henderson2023-07-151-59/+60
* linux-user: Rewrite target_mprotectRichard Henderson2023-07-151-38/+66
* linux-user: Widen target_mmap offset argument to off_tRichard Henderson2023-07-151-6/+8
* linux-user: Split out target_to_host_protRichard Henderson2023-07-151-34/+44
* linux-user: Implement MAP_FIXED_NOREPLACERichard Henderson2023-07-151-3/+11
* linux-user: Fix formatting of mmap.cRichard Henderson2023-07-151-77/+122
* linux-user: Avoid mmap of the last byte of the reserved_vaRichard Henderson2023-07-011-4/+10
* include/exec: Change reserved_va semantics to last byteRichard Henderson2023-03-281-2/+2
* accel/tcg: Pass last not end to page_reset_target_dataRichard Henderson2023-03-281-1/+1
* accel/tcg: Pass last not end to page_set_flagsRichard Henderson2023-03-281-8/+8
* linux-user: Add emulation for MADV_WIPEONFORK and MADV_KEEPONFORK in madvise()Helge Deller2023-02-031-13/+43
* accel/tcg: Call tb_invalidate_phys_page for PAGE_RESETRichard Henderson2022-10-261-4/+0
* linux-user/hppa: Allow PROT_GROWSUP and PROT_GROWSDOWN in mprotect()Helge Deller2022-09-271-0/+2
* linux-user: Passthrough MADV_DONTNEED for certain file mappingsIlya Leoshkevich2022-09-271-5/+22
* linux-user: Fix madvise(MADV_DONTNEED) on alphaIlya Leoshkevich2022-09-271-1/+2