| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2006-08-26 | Nuke netccitt. | matt | |
| 2006-08-17 | Fix all the -D*DEBUG* code that it was rotting away and did not even compile. | christos | |
| Mostly from Arnaud Lacombe, many thanks! | |||
| 2006-07-23 | Use the LWP cached credentials where sane. | ad | |
| 2006-06-07 | merge FreeBSD timecounters from branch simonb-timecounters | kardel | |
| - struct timeval time is gone time.tv_sec -> time_second - struct timeval mono_time is gone mono_time.tv_sec -> time_uptime - access to time via {get,}{micro,nano,bin}time() get* versions are fast but less precise - support NTP nanokernel implementation (NTP API 4) - further reading: Timecounter Paper: http://phk.freebsd.dk/pubs/timecounter.pdf NTP Nanokernel: http://www.eecis.udel.edu/~mills/ntp/html/kern.html | |||
| 2006-05-14 | integrate kauth. | elad | |
| 2006-05-12 | avoid a GCC uninitialised variable warning. | mrg | |
| 2006-04-15 | Add missing semi-colon. | christos | |
| 2006-04-14 | Coverity CID 2431: Don't deref before test. | christos | |
| 2006-04-14 | Coverity CID 1117: Prevent NULL deref. | christos | |
| 2006-04-14 | Coverity CID 1116: Prevent NULL deref. | christos | |
| 2006-04-14 | Coverity CID 2692: First stop the timer and then free it. | christos | |
| 2006-03-17 | don't use MALLOC with a non-constant size; use malloc instead. | christos | |
| 2005-12-11 | merge ktrace-lwp. | christos | |
| 2005-12-10 | Multiple inclusion protection, as suggested by christos@ on tech-kern@ | elad | |
| few days ago. | |||
| 2005-10-06 | pk_accton(): `path' actually points into kernel space. | kleink | |
| 2005-05-29 | Sprinkle const. | christos | |
| 2005-02-26 | nuke trailing whitespace | perry | |
| 2005-01-23 | Commit missing files with domain list sets. | matt | |
| 2004-09-17 | There's no need to pass a proc value when using UIO_SYSSPACE with | skrll | |
| vn_rdwr(9) and uiomove(9). OK'd by Jason Thorpe | |||
| 2004-04-26 | Remove #else of #if __STDC__ | matt | |
| 2004-04-23 | recommented -> recommended, indefinitly -> indefinitely. | snj | |
| 2004-04-22 | Constify protosw arrays. This can reduce the kernel .data section by | matt | |
| over 4K (if all the network protocols) are loaded. | |||
| 2004-04-21 | kill sprintf, use snprintf | itojun | |
| 2004-04-18 | Use M_ZERO appropriately. Change some incorrect uses of M_DONTWAIT to | matt | |
| M_NOWAIT. | |||
| 2004-04-17 | adjust to the sbreserve prototype change. | christos | |
| 2003-11-11 | Change global head-of-local-IP-address list from in_ifaddr to | jonathan | |
| in_ifaddrhead. Recent changes in struct names caused a namespace collision in fast-ipsec, which are most cleanly fixed by using "in_ifaddrhead" as the listhead name. | |||
| 2003-08-07 | Move UCB-licensed code from 4-clause to 3-clause licence. | agc | |
| Patches provided by Joel Baker in PR 22364, verified by myself. | |||
| 2003-06-29 | Back out the lwp/ktrace changes. They contained a lot of colateral damage, | fvdl | |
| and need to be examined and discussed more. | |||
| 2003-06-28 | Pass lwp pointers throughtout the kernel, as required, so that the lwpid can | darrenr | |
| be inserted into ktrace records. The general change has been to replace "struct proc *" with "struct lwp *" in various function prototypes, pass the lwp through and use l_proc to get the process pointer when needed. Bump the kernel rev up to 1.6V | |||
| 2003-02-05 | "Utilize" has exactly the same meaning as "use," but it is more | perry | |
| difficult to read and understand. Most manuals of English style therefore say that you should use "use". | |||
| 2003-01-06 | synchronous, not syncronous. | wiz | |
| 2003-01-04 | Spell output with two ts. | wiz | |
| 2002-11-26 | Remove KDIR=, since SYS_INCLUDE=symlinks and KDIR are not supported any more. | lukem | |
| 2002-11-26 | s/si_addr/sdl_addr/ | christos | |
| 2002-10-24 | fix a couple of lint warnings. | christos | |
| 2002-10-10 | Move netccitt config defns to netccitt/files.netccitt. | thorpej | |
| 2002-09-29 | "definitions" has lots of 'i's, but that's not reason to leave one out. | wiz | |
| 2002-09-27 | remove trailing \n in panic(). approved perry. | provos | |
| 2002-07-03 | Rename SB_UPDATE_TAIL() to SB_EMPTY_FIXUP(), per suggestion from | thorpej | |
| Jonathan Stone. | |||
| 2002-07-03 | Make insertion of data into socket buffers O(C): | thorpej | |
| * Keep pointers to the first and last mbufs of the last record in the socket buffer. * Use the sb_lastrecord pointer in the sbappend*() family of functions to avoid traversing the packet chain to find the last record. * Add a new sbappend_stream() function for stream protocols which guarantee that there will never be more than one record in the socket buffer. This function uses the sb_mbtail pointer to perform the data insertion. Make TCP use sbappend_stream(). On a profiling run, this makes sbappend of a TCP transmission using a 1M socket buffer go from 50% of the time to .02% of the time. Thanks to Bill Sommerfeld and YAMAMOTO Takashi for their debugging assistance! | |||
| 2002-05-12 | Remove/move a redundant extern. | matt | |
| 2002-05-12 | Eliminate commons. | matt | |
| 2001-12-04 | Replace some misuses of "then" with "than". | wiz | |
| 2001-11-13 | add RCSIDs | lukem | |
| 2001-10-18 | Deprecate the "m_act" alias of "m_nextpkt" (m_act is a historical | thorpej | |
| name), and just use m_nextpkt everywhere. | |||
| 2001-08-20 | precede, not preceed. | wiz | |
| 2001-06-19 | Sprinkle couple of cosmetic changes - use 'extern' in headers, make | jdolecek | |
| some stuff static, const as appropriate, use static TAILQ_HEAD_INITIALIZER() instead TAILQ_INIT() call. | |||
| 2001-06-14 | change the meaning of ifnet.if_lastchange to meet RFC1573 ifLastChange. | itojun | |
| follows BSD/OS practice and ucd-snmp code (FreeBSD does it for specific interfaces only). was: if_lastchange get updated on every packet transmission/receipt. now: if_lastchange get updated when IFF_UP is changed. | |||
| 2001-05-30 | use _KERNEL_OPT | mrg | |
| 2001-05-01 | remove superfluous ; | lukem | |
