| Commit message (Expand) | Author | Age | Files | Lines |
* | Rewrite the code that uses the try/catch paradigm implemented by | Marcel Moolenaar | 2003-08-23 | 3 | -127/+116 |
* | Reserve space for the trailing null byte in the srvname member of | Tim J. Robbins | 2003-07-27 | 1 | -1/+1 |
* | size_t != int. Make this compile on 64 bit platforms (eg: amd64). | Peter Wemm | 2003-07-24 | 1 | -2/+1 |
* | Add a f_vnode field to struct file. | Poul-Henning Kamp | 2003-06-22 | 1 | -1/+1 |
* | Avoid dereferencing the thread pointer in smb_iod_addrq() if it's NULL. | Tim J. Robbins | 2003-06-14 | 1 | -1/+2 |
* | Use __FBSDID(). | David E. O'Brien | 2003-06-11 | 9 | -18/+35 |
* | - Merge struct procsig with struct sigacts. | John Baldwin | 2003-05-13 | 1 | -1/+3 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | Jeff Roberson | 2003-03-31 | 4 | -10/+12 |
* | Remove fragments of support for the FreeBSD 3.x and 4.x branches. | Tim J. Robbins | 2003-03-06 | 2 | -5/+0 |
* | Finish driving a stake through the heart of netns and the associated | Peter Wemm | 2003-03-05 | 1 | -3/+0 |
* | Gigacommit to improve device-driver source compatibility between | Poul-Henning Kamp | 2003-03-03 | 1 | -13/+5 |
* | Use noread(), nowrite() and nopoll() instead of our own stub functions. | Tim J. Robbins | 2003-02-27 | 1 | -24/+3 |
* | NODEVFS cleanup: Don't call cdevsw_{add,remove}() | Poul-Henning Kamp | 2003-02-26 | 1 | -2/+0 |
* | Back out M_* changes, per decision of the TRB. | Warner Losh | 2003-02-19 | 8 | -25/+25 |
* | Lock proc while manipulating p_sigmask p_sigignore and p_siglist. | Tim J. Robbins | 2003-02-14 | 1 | -1/+5 |
* | Pass a minor number instead of a unit number to make_dev(). | Tim J. Robbins | 2003-02-07 | 1 | -3/+4 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | Alfred Perlstein | 2003-01-21 | 8 | -25/+25 |
* | Bow to the whining masses and change a union back into void *. Retain | Matthew Dillon | 2003-01-13 | 1 | -1/+1 |
* | Change struct file f_data to un_data, a union of the correct struct | Matthew Dillon | 2003-01-12 | 1 | -1/+1 |
* | Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup, | Jens Schweikhardt | 2003-01-01 | 1 | -1/+1 |
* | When compiling the kernel do not implicitly include filedesc.h from proc.h, | Alfred Perlstein | 2003-01-01 | 1 | -0/+1 |
* | Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/ | Jens Schweikhardt | 2002-12-30 | 1 | -1/+1 |
* | o Untangle the confusion with the malloc flags {M_WAITOK, M_NOWAIT} and | Bosko Milekic | 2002-12-19 | 1 | -1/+1 |
* | Remove the hto(be|le)[slq] and (be|le)toh[slq] macros defined in | Robert Drehmel | 2002-12-16 | 4 | -5/+5 |
* | fix connecting to (samba) server when share-level security is in effect | Max Khon | 2002-12-07 | 1 | -1/+1 |
* | Fix a fatal typo introduced in revision 1.13 that caused the mbuf chains to | Tim J. Robbins | 2002-11-26 | 1 | -1/+1 |
* | - Change mb_copy_t to take a size_t as the length argument instead of an | John Baldwin | 2002-11-08 | 1 | -2/+2 |
* | Some kernel threads try to do significant work, and the default KSTACK_PAGES | Scott Long | 2002-10-02 | 1 | -1/+1 |
* | Back our kernel support for reliable signal queues. | Juli Mallett | 2002-10-01 | 1 | -3/+2 |
* | Convert use of p_siglist and old SIG*() macros to use <sys/ksiginfo.h> | Juli Mallett | 2002-09-30 | 1 | -2/+3 |
* | Use m_length() instead of home-rolled versions. | Poul-Henning Kamp | 2002-09-18 | 1 | -3/+1 |
* | Add missing #include <sys/mbuf.h> | Poul-Henning Kamp | 2002-09-18 | 1 | -0/+1 |
* | Permit an empty username which is useful for browsing. | Boris Popov | 2002-09-18 | 1 | -0/+4 |
* | Increase send/receive queue to accomodate large readx/writex requests. | Boris Popov | 2002-09-18 | 2 | -22/+78 |
* | Reserve a transport parameter name and number for Darwin. | Boris Popov | 2002-09-16 | 1 | -0/+1 |
* | Implement support for mixed case passwords. | Boris Popov | 2002-09-16 | 2 | -7/+77 |
* | Add support for large readx and writex functions if server supports them. | Boris Popov | 2002-09-16 | 2 | -0/+178 |
* | Enable browsing of NetApp servers (use ascii mode). | Boris Popov | 2002-09-16 | 1 | -1/+4 |
* | Add more constants for future use in kernel and userland. | Boris Popov | 2002-09-16 | 1 | -8/+64 |
* | <sys/lock.h> is a prerequisite for <sys/mutex.h>, so include the former | Bruce Evans | 2002-08-27 | 1 | -0/+1 |
* | Include <sys/lockmgr.h> for old lock interfaces instead of including | Bruce Evans | 2002-08-27 | 1 | -1/+1 |
* | Wire the sysctl output buffer before grabbing any locks to prevent | Don Lewis | 2002-07-28 | 1 | -0/+1 |
* | Back out my lats commit of locking down a socket, it conflicts with hsu's work. | Seigo Tanimura | 2002-05-31 | 1 | -9/+1 |
* | Fix trivial warning: | Peter Wemm | 2002-05-24 | 1 | -0/+1 |
* | Lock down a socket, milestone 1. | Seigo Tanimura | 2002-05-20 | 1 | -1/+9 |
* | Revert the change of #includes in sys/filedesc.h and sys/socketvar.h. | Seigo Tanimura | 2002-04-30 | 1 | -4/+7 |
* | Move the new byte order function prototypes from <sys/param.h> to | Mike Barcroft | 2002-04-26 | 3 | -0/+3 |
* | Initialize thread select queue in the same way as rev 1.93 of sys_generic.c | Boris Popov | 2002-04-23 | 1 | -0/+3 |
* | Recongnize more error codes returned by W2K servers. | Boris Popov | 2002-04-17 | 2 | -1/+14 |
* | Add more NetBIOS name types. | Boris Popov | 2002-04-17 | 1 | -2/+9 |