summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed spelling of the document date.ru2004-07-0213-13/+13
|
* Explain that -O2 is supported, but known to expose bugs in ppp(8).des2004-07-021-3/+3
|
* We support -O2 now.des2004-07-021-2/+3
|
* Markup tidying.ru2004-07-026-16/+37
|
* Bump document date on behalf of the previous change.ru2004-07-021-1/+1
|
* Small grammar fix.scottl2004-07-021-1/+1
|
* Document net.inet.ip.process_options sysctl.maxim2004-07-021-0/+15
| | | | | Improved by: ru Reviewed by: andre
* Implement SNDCTL_DSP_SETDUPLEX. This may fix sound apps which want tonetchild2004-07-023-0/+15
| | | | | | use full duplex mode. Approved by: matk
* Use %esi to store next ucp pointer. Mark end of stack bydavidxu2004-07-022-3/+4
| | | | | setting %ebp to zero, this avoids new gdb to dump a weird backtrace.
* Disable native ata support for now, too much breaksimp2004-07-021-1/+1
|
* Fix <small> tagsden2004-07-021-2/+3
|
* manlinteik2004-07-021-6/+5
| | | | Obtained from: ru
* New variable `.MAKEFILE_LIST', useful for tracing, debugging and dependency ↵eik2004-07-022-3/+30
| | | | | | | | | | | tracking. Use make -V .MAKEFILE_LIST | tr \ \\n | awk '$0==".." {l--; next} {l++; printf "%*s%s\n", l, " ", $0}' to print a tree of all included makefiles. Approved by: joerg MFC after: 1 week
* Bring in the first chunk of altq driver modifications. This covers themlaier2004-07-0210-58/+108
| | | | | | | | | | | following drivers: bfe(4), em(4), fxp(4), lnc(4), tun(4), de(4) rl(4), sis(4) and xl(4) More patches are pending on: http://peoples.freebsd.org/~mlaier/ Please take a look and tell me if "your" driver is missing, so I can fix this. Tested-by: many No-objection: -current, -net
* Hook strnlen.c up to the build - the i18n patch uses it.tjr2004-07-021-0/+1
|
* Add support for multi-byte character sets.tjr2004-07-021-42/+763
| | | | Obtained from: Mitsuru Chinen (IBM) via The Fedora Project
* Update build infrastructure for sort from GNU coreutils 5.2.1.tjr2004-07-024-147/+286
|
* Resolve conflicts.tjr2004-07-022-651/+5
|
* Allow ptrace to deal with lwpid.davidxu2004-07-021-6/+36
| | | | Reviewed by: marcel
* This commit was generated by cvs2svn to compensate for changes in r131447,tjr2004-07-0256-9791/+8728
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import of GNU sort from coreutils 5.2.1 (trimmed)tjr2004-07-0257-9801/+8733
| |
* | Markup overhaul and minor word smithing.ru2004-07-021-399/+483
| |
* | Local change: Allow access to the field if it is within the regionmarks2004-07-021-67/+87
| | | | | | | | | | | | size rounded up to a multiple of the access byte width. This overcomes "off-by-one" programming errors in the AML often found in Toshiba laptops.
* | Local diff: allow use of the disassembler.marks2004-07-021-1/+5
| |
* | Unchanged files that are off the vendor branch.marks2004-07-022-8/+10
| |
* | This commit was generated by cvs2svn to compensate for changes in r131440,marks2004-07-0210-72/+165
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Vendor import of Intel ACPI-CA 20040527marks2004-07-0214-149/+271
| | |
* | | We allocate an array of pointers to the global file table whilealfred2004-07-021-1/+12
| | | | | | | | | | | | | | | not holding the filelist_lock. This means the filelist can change size while allocating. Detect this race and retry the allocation.
* | | Bring this manpage more up-to-date with the current code.ru2004-07-021-109/+93
| | | | | | | | | | | | | | | Submitted by: Gleb Smirnoff Reviewed by: julian, ru
* | | Tidy up uprof locking. Mostly the fields are protected by both the procjhb2004-07-023-29/+41
| | | | | | | | | | | | | | | | | | | | | lock and sched_lock so they can be read with either lock held. Document the locking as well. The one remaining bogosity is that pr_addr and pr_ticks should be per-thread but profiling of multithreaded apps is currently undefined.
* | | - Assert that any process that has statclock called on it has both ajhb2004-07-021-11/+10
| | | | | | | | | | | | | | | | | | | | | | | | stats structure and a vmspace as this should always be true rather than checking the always true condition in an if statement. - Remove never-false check: if ((ru = &pstats->p_ru) != NULL) - Remove pstats variable that is only used once and inline its one use instead.
* | | Allocate s/g segments in the tag rather than on the stack.scottl2004-07-021-30/+35
| | |
* | | - Don't use a variable to point to the user area that we only use once.jhb2004-07-021-15/+10
| | | | | | | | | | | | | | | | | | Just use p2->p_uarea directly instead. - Remove an old and mostly bogus assertion regarding p2->p_sigacts. - Use RANGEOF macro ala fork1() to clean up bzero/bcopy of p_stats.
* | | Add support for the VIA Apollo KT400/400A/600 AGP host bridges which usejhb2004-07-022-0/+6
| | | | | | | | | | | | | | | | | | | | | the VIA v3 register offsets. PR: 68545 Submitted by: Ariff Abdullah <skywizard@mybsd.org.my>
* | | Change the thread ID (thr_id_t) used for 1:1 threading from being amarcel2004-07-0210-63/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | pointer to the corresponding struct thread to the thread ID (lwpid_t) assigned to that thread. The primary reason for this change is that libthr now internally uses the same ID as the debugger and the kernel when referencing to a kernel thread. This allows us to implement the support for debugging without additional translations and/or mappings. To preserve the ABI, the 1:1 threading syscalls, including the umtx locking API have not been changed to work on a lwpid_t. Instead the 1:1 threading syscalls operate on long and the umtx locking API has not been changed except for the contested bit. Previously this was the least significant bit. Now it's the most significant bit. Since the contested bit should not be tested by userland, this change is not expected to be visible. Just to be sure, UMTX_CONTESTED has been removed from <sys/umtx.h>. Reviewed by: mtm@ ABI preservation tested on: i386, ia64
* | | Regen.marcel2004-07-029-13/+13
| | |
* | | Bump __FreeBSD_version for package tools revision 20040629eik2004-07-021-1/+1
| | |
* | | When shutting down the syncer kernel thread, first tell it to runtruckman2004-07-011-6/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | faster and iterate to over its work list a few times in an attempt to empty the work list before the syncer terminates. This leaves fewer dirty blocks to be written at the "syncing disks" stage and keeps the the "giving up on N buffers" problem from being triggered by the presence of a large soft updates work list at system shutdown time. The downside is that the syncer takes noticeably longer to terminate. Tested by: "Arjan van Leeuwen" <avleeuwen AT piwebs DOT com> Approved by: mckusick
* | | On receiving 3 duplicate acknowledgements, SACK recovery was not being ↵jayanth2004-07-012-14/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | entered correctly. Fix this problem by separating out the SACK and the newreno cases. Also, check if we are in FASTRECOVERY for the sack case and if so, turn off dupacks. Fix an issue where the congestion window was not being incremented by ssthresh. Thanks to Mohan Srinivasan for finding this problem.
* | | PR kern/68474:tackerman2004-07-011-2/+2
| | | | | | | | | | | | Changed if_ipending to if_flags
* | | Added the ability to create and display Linux/Windows GPT partitions to gpt(8).arun2004-07-013-3/+10
| | |
* | | Remove stray i386 math emulator references.scottl2004-07-011-7/+1
| | |
* | | MFNetBSD.le2004-07-011-2/+3
| | | | | | | | | | | | | | | | | | | | | rev 1.66, author: mycroft Fix an endianness problem (EHCI_NULL was being double-swapped). Obtained from: NetBSD
* | | MFNetBSD.le2004-07-011-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | rev. 1.68, author: mycroft Ignore a port error that happens to come in at the same time as a connect status change. Some root hubs seem to report both. Obtained from: NetBSD
* | | Markup, grammar, punctuation.ru2004-07-019-59/+73
| | |
* | | Bumped document date.ru2004-07-012-10/+14
| | | | | | | | | | | | | | | Fixed markup. Fixed examples to match the new API.
* | | Remove duplicate FreeBSD idimp2004-07-011-3/+0
| | |
* | | While this file still needs __RMAN_RESOURCE_VISIBLE to get the size ofimp2004-07-011-6/+9
| | | | | | | | | | | | | | | the struct resource for a malloc, it no longer needs it for the r_ elements of struct resource with this commit.
* | | After re-exporting rman, et al, __RMAN_RESOURCE_VISIBLE is no longerimp2004-07-011-1/+0
| | | | | | | | | | | | | | | necessary for this file. It just needed the size and guts of struct rman.
* | | Add support to the uftdi driver for Intrepid Control Systems' vehiclebrooks2004-07-013-1/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | bus interfaces. These interfaces use the FTDI chipset with different Vendor and Product IDs. Add two additional baud rate enumerations. The vehicle bus interfaces use a baud rate of 2000000. Also add 3000000 as it is the other FTDI baud divisor special case. I've commited a slightly different patch from that provided in the PR as I changed the matching code a bit yesterday. Submitted by: Mike Durian <durian at shadetreesoftware.com> PR: kern/67357
OpenPOWER on IntegriCloud