aboutsummaryrefslogtreecommitdiff
path: root/linux-user
AgeCommit message (Expand)AuthorFilesLines
2023-09-06Merge tag 'pull-lu-20230901' of https://gitlab.com/rth7680/qemu into stagingStefan Hajnoczi27-429/+818
2023-09-01linux-user: Track shm regions with an interval treeRichard Henderson1-28/+53
2023-09-01linux-user: Fix shmdtRichard Henderson1-3/+14
2023-09-01linux-user: Use WITH_MMAP_LOCK_GUARD in target_{shmat,shmdt}Richard Henderson1-52/+46
2023-09-01linux-user: Move shmat and shmdt implementations to mmap.cRichard Henderson3-139/+146
2023-09-01linux-user: Remove ELF_START_MMAP and image_info.start_mmapRichard Henderson2-39/+0
2023-09-01linux-user: Emulate the Anonymous: keyword in /proc/self/smapsIlya Leoshkevich1-1/+2
2023-09-01linux-user: Show heap address in /proc/pid/mapsRichard Henderson1-0/+2
2023-09-01linux-user: Adjust brk for load_biasRichard Henderson1-1/+1
2023-09-01linux-user: Use walk_memory_regions for open_self_mapsRichard Henderson1-76/+114
2023-09-01util/selfmap: Use dev_t and ino_t in MapInfoRichard Henderson1-2/+4
2023-09-01linux-user: Emulate /proc/cpuinfo for AlphaHelge Deller1-1/+67
2023-09-01linux-user: Emulate /proc/cpuinfo on aarch64 and armHelge Deller4-7/+233
2023-09-01linux-user: Split out cpu/target_proc.hRichard Henderson22-170/+226
2023-08-31accel/tcg: spelling fixesMichael Tokarev2-3/+3
2023-08-23linux-user/elfload: Enable vxe2 on s390xIlya Leoshkevich1-0/+1
2023-08-09linux-user: Fix openat() emulation to correctly detect accesses to /procHelge Deller1-1/+12
2023-08-09linux-user: Use ARRAY_SIZE with bitmask_transtblRichard Henderson2-18/+12
2023-08-09linux-user: Split out do_mmapRichard Henderson1-17/+73
2023-08-08Merge tag 'pull-lu-20230808' of https://gitlab.com/rth7680/qemu into stagingRichard Henderson26-386/+687
2023-08-08linux-user: Rewrite non-fixed probe_guest_baseRichard Henderson1-181/+100
2023-08-08linux-user: Rewrite fixed probe_guest_baseRichard Henderson1-27/+161
2023-08-08linux-user: Consolidate guest bounds check in probe_guest_baseRichard Henderson1-33/+17
2023-08-08linux-user: Remove duplicate CPU_LOG_PAGE from probe_guest_baseRichard Henderson1-19/+0
2023-08-08util/selfmap: Rewrite using qemu/interval-tree.hRichard Henderson2-12/+17
2023-08-08linux-user: Use zero_bss for PT_LOAD with no file contents tooRichard Henderson1-21/+8
2023-08-08linux-user: Do not adjust zero_bss for host page sizeRichard Henderson1-39/+30
2023-08-08linux-user: Do not adjust image mapping for host page sizeRichard Henderson1-13/+4
2023-08-08linux-user: Adjust initial brk when interpreter is close to executableHelge Deller2-37/+15
2023-08-08linux-user: Use elf_et_dyn_base for ET_DYN with interpreterRichard Henderson1-2/+25
2023-08-08linux-user: Use MAP_FIXED_NOREPLACE for initial image mmapRichard Henderson1-3/+6
2023-08-08linux-user: Define ELF_ET_DYN_BASE in $guest/target_mman.hRichard Henderson23-2/+106
2023-08-08linux-user: Define TASK_UNMAPPED_BASE in $guest/target_mman.hRichard Henderson21-14/+167
2023-08-08linux-user: Adjust task_unmapped_base for reserved_vaRichard Henderson3-16/+64
2023-08-08linux-user: cleanup unused linux-user/include/host directoriesPaolo Bonzini3-194/+138
2023-08-08configure: fix detection for x32 linux-userPaolo Bonzini1-1/+0
2023-08-06linux-user: Remove last_brkRichard Henderson2-3/+0
2023-08-06linux-user: Properly set image_info.brk in flatloadRichard Henderson3-4/+1
2023-08-06linux-user: Do not align brk with host page sizeAkihiko Odaki2-44/+14
2023-08-06linux-user: Do nothing if too small brk is specifiedAkihiko Odaki1-3/+3
2023-08-06linux-user: Use MAP_FIXED_NOREPLACE for do_brk()Akihiko Odaki1-13/+2
2023-08-06linux-user: Do not call get_errno() in do_brk()Akihiko Odaki1-3/+3
2023-08-06linux-user: Fix MAP_FIXED_NOREPLACE on old kernelsAkihiko Odaki1-5/+17
2023-08-06linux-user: Unset MAP_FIXED_NOREPLACE for hostAkihiko Odaki1-5/+20
2023-08-06linux-user/elfload: Set V in ELF_HWCAP for RISC-VNathan Egge1-1/+2
2023-07-31linux-user/armeb: Fix __kernel_cmpxchg() for armebHelge Deller1-2/+7
2023-07-24Merge tag 'pull-revert-armhf-brk-fix' of https://gitlab.com/mjt0k/qemu into s...Peter Maydell1-7/+0
2023-07-23include/exec: Add WITH_MMAP_LOCK_GUARDRichard Henderson1-0/+1
2023-07-22Revert "linux-user: Fix qemu-arm to run static armhf binaries"Michael Tokarev1-7/+0
2023-07-20Merge tag 'linux-user-brk-fixes-pull-request' of https://github.com/hdeller/q...Peter Maydell3-13/+66