summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Release contrib/smbfs from the import-only mode. Now changes can be committedbp2003-07-301-0/+4
| | | | | | | | directly without import process. The same about MFCs. Put a note about nwfs. Discussed with: peter
* New release notes:hrs2003-07-302-0/+6
| | | | one-true-awk 29-Jul-2003 snapshot.
* Generate events when the carrier goes up or down.harti2003-07-301-0/+10
| | | | | Add two sysctl's that allow read-only access to the current state of the utopia interface and to the carrier state.
* Remove the disabling of buckets workaround.phk2003-07-301-1/+0
| | | | Thanks to: jeffr
* Embed a simplistic version of the dokern.sh script directly intoru2003-07-302-9/+7
| | | | | | | | release/Makefile. Reviewed by: marcel The original patch also removed ia64/dokern.sh, but this was OBE.
* fixed wrong parameter descriptionssuz2003-07-301-3/+9
| | | | | Obtained from: KAME MFC after: 1 day
* Moved the MFS root floppies creation code from release.10 toru2003-07-301-6/+6
| | | | doMFSKERN (where it logically belongs).
* Update for the 2003/07/29 import.ru2003-07-301-4/+5
|
* This commit was generated by cvs2svn to compensate for changes in r118194,ru2003-07-305-30/+60
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of bwk's 29-Jul-2003 release.ru2003-07-305-30/+60
| |
* | In get_mcontext(), if we need to clear the return value, clearmarcel2003-07-301-0/+1
| | | | | | | | FRAME_A3 as well. Otherwise swapcontext() will return -1.
* | Only allow trapframe formats instead of sigframe formats like themarcel2003-07-301-4/+4
| | | | | | | | | | comment says and don't write the first 3 arguments to FRAME_TRAPARG_* as they are specific to sigframes.
* | - Get rid of the ill-conceived uz_cachefree member of uma_zone.jeff2003-07-302-16/+24
| | | | | | | | | | | | | | - In sysctl_vm_zone use the per cpu locks to read the current cache statistics this makes them more accurate while under heavy load. Submitted by: tegge
* | - Check to see if we need a slab prior to allocating one. Failure to dojeff2003-07-301-2/+2
| | | | | | | | | | | | | | | | | | | | | | so not only wastes memory but it can also cause a leak in zones that will be destroyed later. The problem is that the slab allocation code places newly created slabs on the partially allocated list because it assumes that the caller will actually allocate some memory from it. Failure to do so places an otherwise free slab on the partial slab list where we wont find it later in zone_drain(). Continuously prodded to fix by: phk (Thanks)
* | Detour via (void *) to defeat gcc's strict-aliasing warnings when usingpeter2003-07-301-3/+3
| | | | | | | | | | | | | | -O2 or -Os (such as 'make release'). This commit brought to you by the warning: dereferencing type-punned pointer will break strict-aliasing rules
* | Temporary workaround: Always disable buckets, there is a bug therephk2003-07-291-0/+1
| | | | | | | | | | | | | | | | somewhere. JeffR will look at this as soon as he has time. OK'ed by: jeffr
* | Restored clearing of the bss, except for putting it in a correct placebde2003-07-291-9/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with up to date comments. This fixes booting kernels with boot2 (except for loss of the features provided by loader) and is suitable for MFC. Contrary to the old comments, most loaders don't clear the bss. biosboot lost clearing of the bss in a code crunch in 1997, and boot2 never did it. kan didn't notice the problem with gcc-3.3 putting variables that are initialized to 0 in the bss until after committing gcc-3.3 because he was already using essentially this patch. Before gcc-3.3, only the non-critical `bootdev' variable was clobbered by clearing the bss. MFC after: 3 days
* | Fix grammar nits.bmah2003-07-292-16/+16
| |
* | Fix a memory leak in CCD's mirror code.phk2003-07-291-0/+2
| |
* | Make IA64 a second port that comes with NO_FLOPPIES.ru2003-07-293-30/+16
| | | | | | | | Reviewed by: marcel
* | Fix the new DA_OLD_QUIRKS option for normal and module compiles.njl2003-07-293-3/+4
| | | | | | | | Pointed out by: bde
* | Fix error in commentache2003-07-291-3/+2
| |
* | Process events from the ATM drivers. Carrier change and PVC changeharti2003-07-292-49/+126
| | | | | | | | | | | | | | | | | | messages are forwarded as netgraph control messages to the node that is connected to the manage hook. If that hook is not connected, the event is lost. Flow control events are converted to netgraph flow control messages and send along the hook that is connected to the flow controlled VC. ACR change events are converted to control messages and sent along the hook for the given VC.
* | Add GB18030 localeache2003-07-2910-12/+7257
| | | | | | | | | | PR: 51729 Submitted by: Kang Liu <liukang@bjpu.edu.cn>
* | New release notes: da(4) no-6-byte-commands, GNOME 2.2.2, KDE 3.1.3.bmah2003-07-292-2/+22
| |
* | Cleanup useless break.ume2003-07-291-3/+0
| | | | | | | | Submitted by: JINMEI Tatuya <jinmei@isl.rdc.toshiba.co.jp>
* | Generate events for carrier state, PVC state changes and flow controlharti2003-07-293-16/+13
| | | | | | | | changes. Still have to figure out, how to get at the ABR information.
* | Remove the rather bogus statistics sysctl and merge it into theharti2003-07-292-17/+8
| | | | | | | | internal driver statistics sysctl.
* | Generate events when the interface state or a PVC state changes.harti2003-07-291-18/+10
| |
* | Correct a cut'n'paste error in a comment.harti2003-07-291-1/+1
| |
* | Make a local static string const.harti2003-07-291-4/+4
| |
* | The number of prefixes can never be negative so use an u_int for this.harti2003-07-291-1/+1
| |
* | Use a size_t for variables that need to hold buffer lengths.harti2003-07-294-18/+20
| |
* | Use size_t for buffer sizes. Improve error handling in some places.harti2003-07-298-148/+117
| | | | | | | | Remove a __DECONST() that was needed before this interface cleanup.
* | Use the appropriate [s]size_t type where a buffer size is meant.harti2003-07-296-78/+50
| | | | | | | | Add const specifiers to constant function arguments.
* | Use a size_t where a buffer length is meant.harti2003-07-292-4/+8
| |
* | Make the ioctl() interface cleaner with regard to types: use size_tharti2003-07-2911-46/+54
| | | | | | | | | | | | instead of int where the variable has to hold buffer lengths, use u_int for things like number of network interfaces which in principle can never be negative.
* | Minor grammar, punctuation, and wording fixesyar2003-07-291-8/+8
| | | | | | | | for the paragraph on the -e option.
* | Send events for VCC state changes, ACR rate changes and interface stateharti2003-07-293-9/+12
| | | | | | | | changes.
* | Implement a mechanism by which ATM drivers can inform interestedharti2003-07-292-1/+85
| | | | | | | | | | | | | | parts of the system about certain kinds of events, like changes in the ABR rate, changes in the carrier state, PVC changes. The main consumers of these events are the harp(4) pseudo-driver and the ILMI daemon via ng_atm(4).
* | Use PSL_KERNEL as upcall thread's initial rflags, don't usedavidxu2003-07-291-1/+1
| | | | | | | | scratch user rflags.
* | Don't hide the name of tmpstk, since there is no need to do so and thebde2003-07-291-3/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HIDENAME() macro seems to be unimplementable in C. (HIDENAME() used to use invalid token pasting using ## for the STDC case until gcc started rejecting that; now it uses unportable token pasting using juxtaposition in all cases.) This reduces use of HIDENAME() in the kernel to only i386 and amd64 profiling code so that it doesn't bite most kernels whenever gcc becomes stricter. Problems with HIDENAME() in userland are smaller because userland mostly doesn't use strict flags yet. There are some advantages to hiding the name of mcount, but newer arches shouldn't do it; only amd64 does. MFC after: 3 days On second thoughts hide tmpstk better by staticizing it.
* | Minor constification.phk2003-07-291-2/+2
| |
* | Implement DOSPTYP_EXTLBA more completely: loop until we find no morephk2003-07-291-1/+2
| | | | | | | | | | | | | | partitions. Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz> PR: 53719
* | Try to make 'uname -a' look more like it does on Linux:des2003-07-291-0/+30
| | | | | | | | | | | | | | | | | | | | - cut the version string at the newline, suppressing information about who built the kernel and in what directory. Most of this information was already lost to truncation. - on i386, return the precise CPU class (if known) rather than just "i386". Linux software which uses this information to select which binary to run often does not know what to make of "i386".
* | Add GB18030 dirsache2003-07-292-0/+6
| | | | | | | | | | PR: 51729 Submitted by: Kang Liu <liukang@bjpu.edu.cn>
* | Allow GB18030 localeache2003-07-291-0/+1
| |
* | Add support for gb18030 encodingache2003-07-293-1/+170
| | | | | | | | | | PR: 51729 Submitted by: Kang Liu <liukang@bjpu.edu.cn>
* | New release notes:hrs2003-07-293-4/+14
| | | | | | | | | | | | | | | | wi(4) suspend/resume bug fix smbfs off-by-one error fix Update hardware notes: The 386SX is no longer supported.
* | Revision 1.51 of vm/uma_core.c modified uma_large_free() to acquire Giantalc2003-07-291-6/+0
| | | | | | | | when needed. So, don't do it here.
OpenPOWER on IntegriCloud