summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* reduce cast.ume2005-05-271-3/+3
| | | | MFC after: 1 week
* - Add support to the loader for multiple consoles.jhb2005-05-275-53/+146
| | | | | | | | | | | | | - Teach the i386 and pc98 loaders to honor multiple console requests from their respective boot2 binaries so that the same console(s) are used in both boot2 and the loader. - Since the kernel doesn't support multiple consoles, whichever console is listed first is treated as the "primary" console and is passed to the kernel in the boot_howto flags. PR: kern/66425 Submitted by: Gavin Atkinson gavin at ury dot york dot ac dot uk MFC after: 1 week
* Fix a warning by adding a missing 'const'.jhb2005-05-272-2/+2
| | | | MFC after: 1 week
* Print out the commands from /boot.config after parsing them so that theyjhb2005-05-273-3/+3
| | | | | | | | output is sent to the correct console(s). PR: kern/66425 Submitted by: Gavin Atkinson gavin at ury dot york dot ac dot uk MFC after: 1 week
* Remove (now) unused argument 'td' from bsd_to_linux_statfs().pjd2005-05-271-4/+3
|
* Remove (now) unused argument 'td' from cvtstatfs().pjd2005-05-272-14/+12
|
* Sync locking in freebsd4_getfsstat() with getfsstat().pjd2005-05-272-0/+6
| | | | Giant is probably also needed in kern_fhstatfs().
* Use consistent style in functions I want to modify in the near future.pjd2005-05-272-18/+30
|
* Do not tread 128-bit UUID as int128. Provide separate macros to get/putemax2005-05-274-36/+117
| | | | | | 128-bit UUID libsdp(3). Fix 128-bit UUID printing in sdpcontrol(8). MFC after: 3 days
* disable defining NI_WITHSCOPEID. It was obsoleted, and was existume2005-05-271-1/+1
| | | | only for backward compatibility since 5.2-RELEASE.
* dd a '-n' option to ministat, which causes it to display only summaryrwatson2005-05-272-18/+34
| | | | | statistics, not graph and statistical test output. Useful for automated processing.
* In the current world order, each socket has two mutexes: a mutexrwatson2005-05-272-26/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that protects socket and receive socket buffer state, and a second mutex to protect send socket buffer state. In some places, the mutex shared between the socket and receive socket buffer will be acquired twice, once by each layer, resulting in some inconsistency, but providing the abstraction benefit of being able to more easily separate the two mutexes in the future if desired. When transitioning a socket to the SS_ISDISCONNECTING or SS_ISDISCONNECTED states, grab the socket/receive socket buffer lock once rather than grabbing it as the socket lock, modifying socket state, then grabbing a second time as the receive lock in order to modify the socket buffer state to indicate no further data can be read. This change is believed to close a race between the change in socket state and the change in socket buffer state, which for a remotely initiated close on a UNIX domain socket, resulted in soreceive() returning ENOTCONN rather than an EOF condition. A similar race still exists in the case of send, however, and is harder to fix as the socket and send socket buffer mutexes are not the same, and we would like to avoid holding combinations of socket mutexes over sb_upcall until we've finished clarifying the locking protocol for upcalls. This change has the side affect of reducing the number of mutex operations to initiate disconnect or perform disconnect on a socket by two. PR: 78824 Rerported by: Marc Olzheim <marcolz@stack.nl> MFC after: 2 weeks
* Remove thread_upcall_check, it was used to avoid race bug in earlierdavidxu2005-05-273-16/+1
| | | | | day's sleep queue code, today the bug no longer exists. please see 04/25/2004 freebsd-threads@ mailing list archive.
* Fix for 64-bit platforms. random() returns values between 0 and RAND_MAX,jhb2005-05-271-3/+3
| | | | | | | | | and RAND_MAX != LONG_MAX on 64-bit platforms. PR: amd64/81279 Submitted by: Vivek Khera vivek at khera dot org Submitted by: Adriaan de Groot groot at kde dot org MFC after: 1 week
* Back out ipx.h:1.18, which introduced a Linux API compatibility field inrwatson2005-05-271-3/+0
| | | | | | | | | | | | | | | | | | the ipx_net data structure. Doing so introduced a stronger alignment requirement for the address structure, which in turn propagated into other dependent data structures, which turns out not to be suported by the available IPX source code. As a result, a number of user space applications, such as IPX routing components, failed to operate correctly. RELENG_5_3 candidate? PRs: 74059, 80266 Pointy hat to: bms Fix by: bde Tested by: Keith White <Keith dot White at site dot uottawa dot ca> MFC after: 1 week Suffering: great
* Fix long (and long long) to long double, unsigned to long double and unsignedstefanf2005-05-272-10/+24
| | | | | | | | | | | | | | | long (and unsigned long long) to long double conversions. - Add a parameter that specifies the position of the sign bit to the _QP_TTOQ macro, previously it always looked at bit 31. Pass a negative number to disable sign inspection for unsigned types. This fixes _Qp_xtoq(), _Qp_uitoq() and _Qp_uxtoq(). - In the functions __fpu_itof() and __fpu_xtof(), look at the sign bit to decide whether we're doing a conversion from an unsigned type. If so, don't negate the mantissa if the integer exceeds the biggest signed number. PR: 55773 Patch by: Stephen Paskaluk (based upon) MFC after: 2 weeks
* Fixup of last commit: Use the name X instead of XFree86 for the server binary,eivind2005-05-271-1/+1
| | | | | | thus being compatible with both XFree86 and X.org. Noticed by: danfe
* Document support for the 82573 chip.brueffer2005-05-271-3/+3
|
* Remove sleep queue hack, it is no longer needed with current sleep queue.davidxu2005-05-271-8/+0
| | | | | | Actually, it causes process to hang when it is being debugged. PR: gnu/77818
* Since this is already off the vendor branch: Our kernel is now ineivind2005-05-271-1/+1
| | | | /boot/kernel/kernel, not plain /kernel
* Remove pmap_deactivate(), we do not use it.cognet2005-05-271-6/+0
|
* Make the example for using xterm as a login manager to match the X of theeivind2005-05-271-1/+1
| | | | noughties, not eighties.
* Add cross-references to iostat, systat and vmstat.keramida2005-05-271-1/+4
|
* Use clnt_create_timed() instead of clnt_create(). The former has anmux2005-05-271-6/+8
| | | | | | | | additional argument that allows us to specify a timeout, like we do for the subsequent clnt_call() calls. Submitted by: Jeremie Le Hen <jeremie@le-hen.org> MFC after: 3 weeks
* Latest README to correspond to latest Intel version 2.1.7tackerman2005-05-261-143/+124
|
* Changes to update driver with latest Intel driver version 2.1.7tackerman2005-05-265-529/+2504
| | | | | | | | | | | - Changed from using explicit devices id to using descriptive labels. - Added support for 82573 and 82546 Quad adapters. - Corrected support for 82547EI and 82541ER (mac_type was not assigned) - Removed #ifdef DBG_STATS and extraneous code. if_em_hw.c/if_em_hw.h - Added support for 82573 and 82546 Quad adapters. - Brought forward Intel's most current mac and phy changes.
* Baby, we are not in Kansas anymore. Nor are we in 1996 or FreeBSD 2.1.eivind2005-05-261-6/+7
| | | | | Note that these papers are mostly quite old, and add a pointer to more recent docs.
* Remove an errno reset that became unnecessary.eivind2005-05-261-1/+0
| | | | Noticed by: juli
* decode utimes, lutimes, futimes, chflags, lchflags.alfred2005-05-261-0/+10
|
* Document a couple of gotchas.eivind2005-05-261-1/+7
|
* We are past 4.4BSD - use our new-found stat flags for pipes and fifos.eivind2005-05-261-6/+1
|
* decode mkdir args.alfred2005-05-261-0/+2
|
* Interlink systat(1), iostat(8) and vmstat(8) through their SEE ALSOkeramida2005-05-263-0/+3
| | | | sections, so that users of one can learn about the others easily.
* s/_KLD_MODULE/KLD_MODULE/cognet2005-05-261-1/+1
|
* Don't enable interrupts in the dispatcher, there's no need to do so.cognet2005-05-261-2/+1
|
* Don't call vm_page_dirty() in pmap_nuke_pv(), it's not the place to do so, andcognet2005-05-261-2/+1
| | | | it leads to funny things, such as pmap_remove_all() marking the page as dirty.
* Move sed(1) -l release note to the right section. Don't know what Ibmah2005-05-262-6/+6
| | | | was thinking (was I thinking?) when I wrote this.
* New release notes: autoboot_delay -1 (+MFC), NgATM 1.2, texinfo 4.8,bmah2005-05-262-4/+40
| | | | | | | | | pkg_version -I. Modified release notes: bsnmp 1.9, new manpages (devfs.conf(5), devfs.rules(5), pthread_atfork(3)). Other MFCs noted: sed(1) -l.
* - Add further functionality to check for invalid charactersroberto2005-05-262-11/+30
| | | | | | | | | - Remove keyword 'continue' for more indepth error reporting on each line - WARNS 6 Clean Submitted by: Liam J. Foy <liamfoy@dragonflybsd.org> MFC after: 1 week
* New release note: Read-only support for ReiserFS.brueffer2005-05-262-0/+6
|
* Fix: printed output flags (onocr) and (onlret) same as oxtabsache2005-05-261-2/+2
| | | | | PR: 81256 Submitted by: Arseny Nasokin <tarc@tarc.po.cs.msu.su>
* Plug mbuf leak, that I have introduced in 1.85. Also restore important commentglebius2005-05-261-5/+13
| | | | | | | from if_ethersubr.c:1.178. While here adjust formatting, to make code more readable. Reported by: Alexey Kamyshev, rwatson
* Add myself to the calendar.thompsa2005-05-261-0/+1
| | | | Approved by: bms (mentor)
* Add a note how to use nextboot(8) to test a kernel only once.netchild2005-05-251-0/+8
| | | | | Approved by: mentor (joerg) Discussed with: imp
* This is conform with the terminology inps2005-05-254-20/+18
| | | | | | | | M.Mathis and J.Mahdavi, "Forward Acknowledgement: Refining TCP Congestion Control" SIGCOMM'96, August 1996. Submitted by: Noritoshi Demizu, Raja Mukerji
* Looking just at Makefiles was slightly too narrow to catch allschweikh2005-05-251-1/+8
| | | | | | | | | "inofficial" declarations of maintainership. Grep all plain files, and insert the actual command the list was generated with, so future updates avoid that pitfall. Removed sheldonh@ who just released his maintainership of ntp/doc after I informed him of this effort.
* Release maintainership. More ambitious minds have plans for the ntpsheldonh2005-05-251-2/+0
| | | | | | | docs. Last I heard, Harlan Stenn was considering using FreeBSD's pages as a starting point for the ISC NTP distribution's own pages. If that happens, everyone wins and these can go away, to be replaced by imported versions in contrib/ntp.
* Under certain conditions the condition parser would go one past end ofharti2005-05-251-1/+1
| | | | | | the string. Until now this caused no harm, because the buffer code used to tack two NULs onto buffers. With the new, soon to come, parsing code this isn't the case anymore in all cases, so fix this.
* After provider creation!!pjd2005-05-251-6/+6
|
* Document support for some Dell PERC adapters.brueffer2005-05-251-1/+7
| | | | | Submitted by: Muthu_T@Dell.com MFC after: 3 days
OpenPOWER on IntegriCloud