| Commit message (Expand) | Author | Age | Files | Lines |
| * | Fix emulation of the fcntl64() syscall. In Linux, this is exactly | Ian Dowse | 2002-12-08 | 1 | -39/+33 |
| * | Implement the CDROMREADAUDIO ioctl. | Marcel Moolenaar | 2002-10-19 | 1 | -1/+37 |
| * | - Use strlcpy() rather than strncpy() to copy NUL terminated | Robert Drehmel | 2002-10-17 | 1 | -6/+6 |
| * | - Add support for IPC_64 extensions into shmctl(2), semctl(2) and msgctl(2); | Maxim Sobolev | 2002-10-11 | 4 | -23/+318 |
| * | Back our kernel support for reliable signal queues. | Juli Mallett | 2002-10-01 | 2 | -4/+2 |
| * | First half of implementation of ksiginfo, signal queues, and such. This | Juli Mallett | 2002-09-30 | 2 | -2/+4 |
| * | - Hold the vn lock over vm_mmap(). | Jeff Roberson | 2002-09-25 | 1 | -4/+4 |
| * | Back out last commit. Linux uses the old 4.3BSD sockaddr format. | Jonathan Mini | 2002-09-24 | 2 | -36/+11 |
| * | Don't use compatability syscall wrappers in emulation code. | Jonathan Mini | 2002-09-23 | 2 | -11/+40 |
| * | Remove NVIDIA ioctl bits. They will be provided in a kernel module. | Matthew N. Dodd | 2002-09-20 | 2 | -29/+0 |
| * | Put an XXX comment here to point somebody in the right direction. | Poul-Henning Kamp | 2002-09-20 | 1 | -0/+1 |
| * | Current uses struct thread *td rather than struct proc *p. | Warner Losh | 2002-09-20 | 1 | -2/+2 |
| * | Pass flags to msync() accounting for differences in the definition of | Matthew N. Dodd | 2002-09-19 | 1 | -1/+5 |
| * | This patch extends the FreeBSD Linux compatibility layer to support | Matthew N. Dodd | 2002-09-19 | 2 | -0/+29 |
| * | Do not cast from a pointer to an integer of a possibly different size. | Bruce Evans | 2002-09-05 | 1 | -1/+1 |
| * | Include <sys/malloc.h> instead of depending on namespace pollution 2 | Bruce Evans | 2002-09-05 | 4 | -14/+10 |
| * | Implement LINUX_TIOCSCTTY. | Marcel Moolenaar | 2002-09-05 | 1 | -1/+4 |
| * | Use the new kern_*() functions to avoid using the stack gap in | Ian Dowse | 2002-09-02 | 2 | -90/+49 |
| * | Use the new kern_* functions to avoid the need to store arguments | Ian Dowse | 2002-09-01 | 6 | -328/+264 |
| * | Add a new function linux_emul_convpath(), which is a version of | Ian Dowse | 2002-09-01 | 2 | -32/+64 |
| * | Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoid | Maxim Sobolev | 2002-08-18 | 1 | -1/+1 |
| * | In continuation of early fileop credential changes, modify fo_ioctl() to | Robert Watson | 2002-08-17 | 2 | -19/+38 |
| * | Make similar changes to fo_stat() and fo_poll() as made earlier to | Robert Watson | 2002-08-16 | 1 | -6/+6 |
| * | Another fix that wasn't pulled in from the MAC branch: the | Robert Watson | 2002-08-12 | 1 | -1/+2 |
| * | Fix missing parens in MAC readdir() check. This fix was in the MAC | Robert Watson | 2002-08-12 | 1 | -1/+1 |
| * | - Replace v_flag with v_iflag and v_vflag | Jeff Roberson | 2002-08-04 | 2 | -2/+3 |
| * | Introduce support for Mandatory Access Control and extensible | Robert Watson | 2002-08-01 | 4 | -2/+45 |
| * | Move the switch statement labels for the explicit 64-bit | Robert Drehmel | 2002-07-09 | 1 | -3/+3 |
| * | Enable emulation of the F_GETLK64, F_SETLK64, and F_SETLKW64 | Robert Drehmel | 2002-07-09 | 1 | -0/+3 |
| * | - Remove the Giant acquisition from linux_socket_ioctl() as it was really | Andrew R. Reiter | 2002-06-26 | 1 | -11/+2 |
| * | Add a comment about how we should use vn_open() here instead of directly | Robert Watson | 2002-06-14 | 1 | -0/+4 |
| * | Fix typo in the BSD copyright: s/withough/without/ | Jens Schweikhardt | 2002-06-02 | 8 | -8/+8 |
| * | In msgrcv(), set msgtyp correctly. Hardwiring 0 as the message type | Marcel Moolenaar | 2002-05-18 | 1 | -1/+1 |
| * | sysctl -w -> sysctl | Dima Dorfman | 2002-05-11 | 1 | -2/+2 |
| * | Zap some stale unused headers, including one machine/psl.h (which is | Peter Wemm | 2002-05-01 | 1 | -6/+0 |
| * | Add an XXX: linux_uselib() should be using vn_open() rather than invoking | Robert Watson | 2002-04-20 | 1 | -0/+4 |
| * | Rework logic of syscalls that modify process credentials as described in | John Baldwin | 2002-04-13 | 2 | -25/+39 |
| * | Use td_ucred in a few spots. | John Baldwin | 2002-04-11 | 1 | -3/+3 |
| * | Moved signal handling and rescheduling from userret() to ast() so that | Bruce Evans | 2002-04-04 | 1 | -0/+3 |
| * | Change the suser() API to take advantage of td_ucred as well as do a | John Baldwin | 2002-04-01 | 2 | -2/+2 |
| * | Fixed some style bugs in the removal of __P(()). Tabs before "__P((" | Bruce Evans | 2002-03-24 | 1 | -6/+6 |
| * | Remove references to vm_zone.h and switch over to the new uma API. | Jeff Roberson | 2002-03-20 | 1 | -1/+0 |
| * | Remove __P. | Alfred Perlstein | 2002-03-20 | 5 | -26/+25 |
| * | Simple p_ucred -> td_ucred changes to start using the per-thread ucred | John Baldwin | 2002-02-27 | 5 | -13/+13 |
| * | Use the updated getcredhostname() function. | Robert Drehmel | 2002-02-27 | 1 | -2/+1 |
| * | Use the getcredhostname function to fill the hostname into | Robert Drehmel | 2002-02-27 | 1 | -1/+3 |
| * | Lock struct pgrp, session and sigio. | Seigo Tanimura | 2002-02-23 | 1 | -1/+2 |
| * | fix file descriptor leak. | Alfred Perlstein | 2002-02-20 | 1 | -1/+2 |
| * | Garbage collect options AVM_A1_PCI, AVM_A1_PCMCIA, DEBUG_LINUX, DEV_APM, | Bruce Evans | 2002-02-15 | 1 | -2/+0 |
| * | Have SIOCGIFCONF return all (if any) AF_INET addresses for the | Marcel Moolenaar | 2002-01-29 | 1 | -4/+22 |