summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Quote from a Problem Report:maxim2003-07-212-2/+2
| | | | | | | | | | | | The output format specifier for the round-trip time in ping6 should be changed to %.3f instead of %g since %g doesn't accurately represent the precision of the number being output. In particular, %g truncates trailing zeroes. 0.01 ms does not mean the same thing as 0.010 ms. Although they are numerically identical, they do not have the same precision. PR: bin/52324, bin/52750 Submitted by: dg MFC after: 1 week
* Add my birthday to calendarkrion2003-07-211-0/+1
| | | | Approved by: fjoe
* o Initialize do_pipe before command parsing.maxim2003-07-211-0/+1
| | | | | | PR: bin/54649 Submitted by: Andy Gilligan <andy@evo6.org> MFC after: 3 days
* Always start new sentences on a new line.harti2003-07-211-27/+36
| | | | Submitted by: Anil Madhavapeddy <anil@recoil.org>
* add monitor modesam2003-07-215-1/+27
|
* Missed one, remove one more.obrien2003-07-211-1/+1
|
* override the tag. usb_block_allocmem allocates a new tag, which when wejmg2003-07-211-1/+5
| | | | | | | | | go looking for free fragments won't match. Since we never free this, we can "throw away" the tag. This is very dirty, and needs to be reimplemented properly, but fixes performance problems with uhci. Also assert that when we overlay a structure on some space, that the space is large enough for the structure.
* Always deliver synchronous signal to UTS for SA threads.davidxu2003-07-211-2/+14
|
* Test correct macro for "without crypto" option(s).markm2003-07-203-3/+3
|
* track changes to 802.11 code:sam2003-07-204-44/+47
| | | | | o override new_state method per new model o use ieee80211_state_name instead of private copy
* o change ieee80211_new_state handling to use a proper method that driverssam2003-07-208-57/+70
| | | | | | | | | override in their sub-class; this eliminates the hack of interpreting the EINPROGRESS return value to mean "don't do any of the normal work" o correct active scanning so the first channel is only scanned once and so per-channel passive mode is properly honored o expose 802.11 FSM state names so every driver doesn't keep a private copy o eliminate node parameter to ieee80211_begin_scan; it was not being used
* Do not call acpi_MatchHid() for all probe cases since it accesses thenjl2003-07-201-8/+7
| | | | | | | | | | namespace. To compensate for it only being used in the !ECDT case, use a more robust approach to indicate a device was probed via ECDT by setting the private ivar to be &acpi_ec_devclass. Without the acpi_MatchHid() call now, it might have been possible for a non-EC device to have had its magic match our previous flag. Pointed out by: takawata
* Close a race condition by passing status retrieved via a non-SCI callnjl2003-07-201-43/+32
| | | | | | | | | | | to EcGpeQueryHandler on to any waiting threads through the softc. Similar behavior was in the original version. Also: * Merge EcQuery into EcGpeQueryHandler to simplify locking * Hold EcLock from the initial read of the CSR down to the wakeup or until after the query command has been processed. * ec_gpebit only needs to be a UINT8
* Add my birthday to the calendar.simon2003-07-201-0/+1
| | | | Approved by: ceri (mentor)
* Add missing arguments to _amd64_restore_context() when called fromdeischen2003-07-202-4/+8
| | | | THR_SETCONTEXT().
* The `mk' target is long dead.ru2003-07-201-1/+1
|
* This code isn't WARNS=6 clean in the standard (crypto) caseru2003-07-201-0/+1
| | | | | due to bugs in OpenSSL headers. I was testing in the wrong environmement: standalone build without crypto/ sources.
* Pass getvfsbyname() the address of a struct xvfsconf instead oftjr2003-07-201-1/+2
| | | | | | | | struct vfsconf. This silences a warning, but could also prevent stack corruption problems if xvfsconf ever became larger than vfsconf. PR: 53863 Submitted by: Lukas Ertl
* Make this code WARNS=6 clean again (after GCC 3.1.1 import).ru2003-07-202-14/+13
| | | | Submitted by: Marius Strobl <marius@alchemy.franken.de>
* Now that we have the stubs for alpha and we can build itmtm2003-07-201-6/+6
| | | | | | | | on that platform, invert the test for the platforms on which libthr is built. Amd64 and powerpc are the only platforms excluded. Compile tested on: amd64, alpha
* Clarify the ACPI shutdown messages.njl2003-07-201-2/+2
|
* Add ECDT (ACPI 2.0) support. This allows the EC to be enabled before thenjl2003-07-203-72/+172
| | | | | | | | | | | | | | | namespace has been evaluated. Machines with ACPI 2.0 expect this behavior and have AML which calls EC functions early in the boot process. If the ECDT is not available, fall back to original probe behavior. Other minor changes: * Add GPE bit and GLK usage to the device announcement * Always use the global lock in the ECDT case, but potentially downgrade to not using it if _GLK is 0 once the namespace is available. This is announced with "Changing GLK from 1 to 0" * Remove the acpi_object_list definitions which were earlier deprecated Ideas from: takawata
* Take advantage of the use of file system IDs to simplify umount(8)iedowse2003-07-201-298/+144
| | | | | | | | | | | | | | | | | and make it work more reliably in a number of cases that have traditionally been troublesome. The new behaviour is: 1) If the filesystem can be determined by the fsid or device, or uniquely identified by the mountpoint, then just go ahead and call unmount(2) using the file system ID. 2) Otherwise use fstatfs(2) to resolve the path into a file system ID (checking with stat(2) that it is a filesystem root directory). Case 2 can potentially block if an NFS server is down, but it can always be avoided by using an unambiguous specification. It handles all the hard cases such as symlinks and mismatches between the mount list and reality. For example, if a filesystem was mounted as /mnt inside a chroot, it will show up in the mount list as /mnt, but now you can unmount it from outside the chroot with "umount /chroot_path/mnt".
* Use an up-to-date make binary in the upgrade_checks target ifru2003-07-191-1/+1
| | | | | | | | | one is already available. This avoids sometimes unnecessary step of attempting to rebuild the make binary again which may fail at all if, for example, one has removed his /usr/include before doing an installworld (to keep /usr/include tidied up). Pointed out by: kris, marcel
* Trim /rescue.obrien2003-07-191-12/+10
| | | | Discussed on: freebsd-arch@
* Disabling multicast on vlan interface caused kernel panic.ume2003-07-191-0/+2
| | | | | | PR: kern/40723 Submitted by: Hideki ONO <ono@kame.net> MFC after: 1 week
* This commit was generated by cvs2svn to compensate for changes in r117783,mtm2003-07-192-0/+55
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * The MD framework for libthr on alphamtm2003-07-192-0/+55
|
* Add description about tagged queuing.simokawa2003-07-191-0/+5
|
* MFC: atkbd(4) bug fix.hrs2003-07-192-2/+4
|
* Turn a KASSERT back into an EINVAL return value. So, next time someonemtm2003-07-191-2/+4
| | | | | | | comes across it, it will turn into a core dump in userland instead of a kernel panic. I had also inverted the sense of the test, so Double pointy hat to: mtm
* Merge the following from the English version:hrs2003-07-191-5/+81
| | | | 1.583 -> 1.592 relnotes/common/new.sgml
* make sockstat not print wierd addresses on not connected unix domain socketsjmg2003-07-191-1/+5
| | | | | Pointed out by: rwatson Reviewed by: peter
* Add new supported cardsimp2003-07-191-0/+3
|
* Three fixes:silby2003-07-191-2/+10
| | | | | | | | | | | | | - Make m_prepend use m_gethdr instead of m_get where appropriate - Make m_copym use m_gethdr instead of m_get where appropriate - Add a call to m_fixhdr in m_defrag; m_defrag can't deal with corrupted pkthdr.len counts. MFC after: 3 days
* Add support for FA-511; Submitted by: Kenneth P. Stox; Pr 42858imp2003-07-194-0/+10
|
* Add Addtron AWA-100 wireless PCI cardimp2003-07-191-0/+1
| | | | | Submitted by: Robin Reagan Pr: 37526
* Add Linksys WCF12: from Scott Lambertimp2003-07-191-0/+1
|
* Sync to 1.60imp2003-07-191-1/+4
|
* Minor fix to the MBUF_STRESS_TEST code so that it keepssilby2003-07-191-1/+1
| | | | | | | pkthdr.len consistant at all times. (Some debugging code I'm working on is tripped otherwise.) MFC after: 3 days
* Add Linksys compact flash wireless cardimp2003-07-191-0/+1
| | | | | Submitted by: Scott Lambert PR: 53881
* Add support for DFE-670TXD to OLDCARDimp2003-07-191-0/+6
| | | | | Submitted by: David Wolfskill PR: 53356
* Add support for BUFFALO LPC3-CLX 10/100Base-T PC-Cardimp2003-07-191-0/+1
| | | | | PR: 47786 Submitted by: IHA, genta -san
* sync to 1.59imp2003-07-191-1/+4
|
* Add Buffalo LPC3_CLX.imp2003-07-191-0/+1
| | | | | PR: 47786 Submitted by: IHA, genta -san
* Override libc function raise(), in threading mode, raise() willdavidxu2003-07-195-0/+110
| | | | | | send signal to current thread. Reviewed by: deischen
* Make raise and _raise as weak symbols, so they can be overriden bydavidxu2003-07-191-1/+4
| | | | | | thread library. Reviewed by: deischen
* Add some very beta amd64 bits. These will also need some tweaking.deischen2003-07-1911-0/+921
|
* Add amd64 versions of makecontext() and signalcontext() neededdeischen2003-07-193-1/+208
| | | | | for libkse (makecontext() is also needed for libthr). These probably will need some tweaking.
* Rewrite to reflect slight change in semantics for C99, and note a bugwollman2003-07-191-22/+39
| | | | in the standard. Defer to gettimeofday(2) for error indications.
OpenPOWER on IntegriCloud