Age | Commit message (Expand) | Author |
2017-02-11 | Add a flags argument to falloc() that lets it optionally set the | Philip Guenther |
2017-02-11 | Correct the entry point and base address calculations for an | Philip Guenther |
2017-02-09 | remove a dead variable; ok millert, guenther | Mike Belopuhov |
2017-02-09 | Use TAILQ_FOREACH_SAFE in cache_purgevfs(). Fix whitespaces. | Alexander Bluhm |
2017-02-09 | Temporarily grab the NET_LOCK() around soisdisconnected(). | Martin Pieuchot |
2017-02-09 | Release the NET_LOCK() before calling unp_detach(), fix a recursion | Martin Pieuchot |
2017-02-09 | Do no select a CPU to execute the current thread when being preempt()ed. | Martin Pieuchot |
2017-02-08 | Remove support for forcing the ELF interpreter to a specific address, | Philip Guenther |
2017-02-08 | Delete the obsolete fork/exec/exit emulation hooks. | Philip Guenther |
2017-02-08 | the splvm() in pool_gc_pages is unecessary now. | David Gwynne |
2017-02-08 | In exec_elf.c: expand ELFNAME(), ELFNAME2(), and ELFNAMEEND() except | Philip Guenther |
2017-02-08 | Move ELF_AUX_ENTRIES from exec_elf.h to exec_elf.c; it's totally internal | Philip Guenther |
2017-02-08 | Change ELFNAME(read_from)'s buf parameter to be void*, eliminating a cast | Philip Guenther |
2017-02-08 | elf{32,64}_check_brand() isn't used; delete it | Philip Guenther |
2017-02-08 | Provide size-generic ELF_NO_ADDR in <sys/exec_elf.h> and use that instead | Philip Guenther |
2017-02-07 | enable per cpu caches on the mbuf pools. | David Gwynne |
2017-02-07 | move the mbuf pools to m_pool_init and a single global memory limit | David Gwynne |
2017-02-07 | add m_pool_init(), a wrapper around pool_init for mbuf clusters. | David Gwynne |
2017-02-07 | provide a custom pool page allocator for mbufs, but dont use it yet. | David Gwynne |
2017-02-05 | Since we expect to never do binary compat with other OSes again, | Philip Guenther |
2017-02-05 | Always allocate counters memory using type M_COUNTERS. | Jeremie Courreges-Anglas |
2017-02-05 | AF_UNIX SOCK_RAW support (whatever that meant) was broken years ago. | Philip Guenther |
2017-02-04 | Update usage for ps/w to match previous commit | Philip Guenther |
2017-02-01 | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with | David Hill |
2017-01-31 | Remove the inifioctl hack, checking for an unheld NET_LOCK() in | Martin Pieuchot |
2017-01-27 | In sosend() the size of the control message for file descriptor | Alexander Bluhm |
2017-01-26 | Allocate the mbuf before the netlock. While here, move the setting of | David Hill |
2017-01-26 | Do not hold the netlock while pool_get() may sleep. It is not | Alexander Bluhm |
2017-01-25 | Introduce a hack to remove false-positives when looking for memory | Martin Pieuchot |
2017-01-25 | As NET_LOCK() is a read/write lock, it can sleep in sotask(). So | Alexander Bluhm |
2017-01-25 | Clear the reference of the original mbuf chain after m_split()'ing | Martin Pieuchot |
2017-01-25 | Allocate and connect sockets first, then upon success create file | Theo de Raadt |
2017-01-25 | deSCARGize sys_ptrace() | Philip Guenther |
2017-01-25 | Enable the NET_LOCK(), take 2. | Martin Pieuchot |
2017-01-25 | +arm64 | Theo de Raadt |
2017-01-24 | Force a context switch for every pool_get(9) with the PR_WAITOK flag | Martin Pieuchot |
2017-01-24 | In accept(2) and accept4(2) allocate a new file descriptor before | Martin Pieuchot |
2017-01-24 | Display process group in "ps /w" since they got removed from "ps /n". | Martin Pieuchot |
2017-01-24 | Display the thread ID (TID) rather than the process group ID (PGRP) | Martin Pieuchot |
2017-01-24 | Track a per-fd flag UF_PLEDGED. This indicates the initial open was done by a | Theo de Raadt |
2017-01-24 | Rename pfind(9) into tfind(9) to reflect that it deals with threads. | Martin Pieuchot |
2017-01-23 | File descriptor passing internalizes fd's into an mbuf-stored array of | Theo de Raadt |
2017-01-23 | Allocate all memory chunks, and potentially sleeping, before freeing | Martin Pieuchot |
2017-01-23 | Avoid curproc dance in dupfdopen(), by passing a struct proc * | Theo de Raadt |
2017-01-23 | The function raw_input() has not been called since netiso has been | Alexander Bluhm |
2017-01-23 | Backwards compat for pledge "ioctl" for about a week | Theo de Raadt |
2017-01-23 | Split pledge "ioctl" into "tape" and "bpf", and allow SIOCGIFGROUP only | Theo de Raadt |
2017-01-23 | whitespace | Theo de Raadt |
2017-01-21 | p_comm is the process's command and isn't per thread, so move it from | Philip Guenther |
2017-01-15 | When traversing the mount list, the current mount point is locked | Alexander Bluhm |