summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Correct a typo.bz2007-06-031-1/+1
| | | | | PR: 106049 Submitted by: edwin (as part of a larger patch)
* Insert NULL pointer checking around devclass_get_maxunit(pcm_devclass, ..) .ariff2007-06-033-6/+12
| | | | | | | | | Things can get ugly without it due to uninitialized class. RELENG_6 need a simmilar, but different treatment as well. err.. perhaps we should teach devclass_get_maxunit() to return -1 ? MFC after: 1 day
* Minor filter tweaks:imp2007-06-031-26/+47
| | | | | | | | | | | | | | | | | o If we don't have a filter, also check to make sure the card is there before calling the scheduled ISR. This is necessary to help old drivers whose ISRs can't cope with being called with the hardware missing, which sadly still exist in the tree. This is the main reason why we have an extra layer of indirection for cardbus interrupts. o If the card is no longer present, mark the interrupt as 'handled' rather than 'stray' because this accounts for why the interrupt happened. Stray isn't all bad, since there are other filters that would claim it... o Fix some comments + Add comment about why we check for CARD_OK and touch the hardware in both the filter and ISR. + add a note about why we don't care about Giant + also note that giant can't be taken out in a filter... + Some minor formatting nits on very long comments.
* Add regression tests for calendar.grog2007-06-0319-1/+461
| | | | | | Submitted by: edwin@ PR: bin/113275 MFC after: 2 weeks
* Fix various bugs in the -A and -B options.grog2007-06-031-8/+36
| | | | | | Submitted by: edwin@ PR: bin/113250 MFC after: 2 weeks
* disable taskqueue_drain calls on transition to INIT state; we need tosam2007-06-031-0/+2
| | | | | find another way to do this as we cannot hold the softc mtx across these calls
* Disable CPU idle states during suspend and reenable them during resume.njl2007-06-031-2/+29
| | | | | | | | | | While in the suspend path, this means the idle thread will just return immediately rather than trying to enter C1-n. This helps in the case where the chipset is powered down before the rest of the system and reads from the cpu sleep registers begin returning immediately, causing the logic that catches bad C2/C3 behavior to kick in. Observed on my Panasonic Y4. MFC after: 3 days
* Update the upgrade notes for BIND 9.4.1dougb2007-06-021-9/+10
|
* This commit was generated by cvs2svn to compensate for changes in r170225,dougb2007-06-0212-10066/+0
| | | | which included commits to RCS files with non-trunk default branches.
* Update generated files for BIND 9.4.1dougb2007-06-029-220/+512
|
* This commit was generated by cvs2svn to compensate for changes in r170222,dougb2007-06-021000-40961/+116285
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Vendor import of BIND 9.4.1dougb2007-06-021000-40961/+116285
| |
* | Update bmake glue for the BIND 9.4.1 import.dougb2007-06-0220-43/+102
| | | | | | | | | | This includes a return to building with threads, since one of the major focuses of the 9.4.x branch is to improve thread performance.
* | The archive_write_prepare.3 man page was removed in November 2006.truckman2007-06-021-0/+9
| | | | | | | | | | | | | | | | | | The wpa man pages were moved to section 8 in June 2005. The clean_environment() function was removed from libutil in February 2004, so its man page is well overdue for removal. MFC after: 3 days
* | When /usr/sbin/xten went away back in 2003, /usr/libexec/xtend wastruckman2007-06-021-0/+1
| | | | | | | | | | | | overlooked. MFC after: 3 days
* | ObsoleteFiles.inc 1.88 should have used s/=/+=/ on entry fortruckman2007-06-021-1/+1
| | | | | | | | usr/share/man/man9/VFS_VPTOFH.9.gz.
* | Remove definition of the GCC3 variable. It was introduced in rev.marcel2007-06-021-2/+0
| | | | | | | | | | | | | | | | 1.50 to help out with the GCC 2 to GCC 3 transition and it became obsolete when C flags compatible with GCC 3.x became the default. With GCC 4 in the tree this variable (i.e. GCC3) is beyond bogus because it causes confusion when looking for the newly introduced WITH_GCC3 option that helps the GCC 3 -> GCC 4 bump.
* | Add support for Asus A3N laptops.philip2007-06-022-1/+15
| | | | | | | | | | Submitted by: Holger Jorra <holger_jorra -at- gmx.net> MFC after: 1 day
* | Correct the referenced securelevel document, it's now securelevel 7.remko2007-06-022-4/+4
| | | | | | | | Pointed out by: ru
* | Fix a bug introduced in the per-CPU Cx states commit. The wrong loop varnjl2007-06-021-30/+27
| | | | | | | | | | | | | | | | (j/i) was being used and it was being incremented, not decremented as before. Factor out this code into a common function and call it from both the common and per-CPU case. MFC after: 1 day
* | Mute the main audio during reboot/shutdown. This prevents a burst of staticnjl2007-06-021-2/+16
| | | | | | | | | | on the speakers of my Panasonic Y4. It might make sense to do this in the mixer rc.d script as well.
* | Remove a file that should have been removed as part of the hardware notesbmah2007-06-021-129/+0
| | | | | | | | reorganization.
* | AcpiAcquireGlobalLock() can sometimes sleep if the mutex is contested.njl2007-06-021-13/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The global lock is a memory region shared with the BIOS and thus has some strange behavior like the fact that the sleep is 1 ms max. We use standard mutexes to synchronize with the SCI so acquiring the global lock after locking the mutex resulted in a witness warning. To deal with this for now, acquire the global lock before all other locks, similar to Giant. This should fix the witness "sleeping with mutex held" issue on boot that occurred after the last ACPI-CA import. In the future, we hope to move to the new mutex interface in ACPI-CA instead of the pseudo-semaphore version we have now. Reviewed by: jkim
* | Don't lie about saved reports.philip2007-06-021-1/+1
| | | | | | | | | | | | PR: gnu/89777 Submitted by: edwin MFC after: 1 day
* | Remove (accidentally) included types.h .ariff2007-06-021-1/+0
| |
* | Use standard pcm_get/setflags() rather than dereferencing softc whileariff2007-06-024-41/+26
| | | | | | | | enabling SD_F_SOFTPCMVOL or any flags.
* | Separate license from comments.joel2007-06-024-7/+10
| | | | | | | | Approved by: ariff
* | - fix initial pcb vrf setting when the initial vrf is not therrs2007-06-027-40/+36
| | | | | | | | | | | | | | | | default_vrf_id - Missing lock/unlock of inp added as well in the v6 side. - IFN hash table moves to sctppcbinfo since indexes are unique across systems (including different VRFs) this makes it easier to do ifn lookups.
* | Clean up more obsolete shared threading libraries:ru2007-06-021-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - /lib/libpthread.so.2 was made obsolete by renaming libpthread to libkse (!sparc64, 2007/05/13). - /usr/lib/libthr.so.2 was made obsolete by moving the library to /lib (!sparc64, 2007/05/13). - /lib/libkse.so.2 existed for a few days before the version bump for those who had libpthread as their default threading library. Coding this "right" in ObsoleteFiles.inc is nearly impossible, so just add the missing obsolete libraries to the version bump block. Submitted by: deischen, ru
* | New release notes:brueffer2007-06-021-12/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | - GCC SSP enabled by default - X11BASE change - touch -A - fwip(4) and dcons(4) in GENERIC - FireWire/dcons support in the i386/amd64 loader Modified release notes: - MFCs noted: newly supported ftpd RFCs, lagg(4), mpt(4) changes, snd_atiixp(4) suspend/resume - sa(8) entry moved to the correct place - xorg 7.2 update
* | fixed memory leak for IPv6 multicast membership information associatedjinmei2007-06-023-21/+29
| | | | | | | | | | | | | | with interface addresses. Approved by: gnn (mentor) MFC after: 1 week
* | simplified the fix in rev. 1.69 by replacing RT_REMREF+RT_UNLOCK withjinmei2007-06-021-6/+3
| | | | | | | | | | | | RTFREE_LOCKED. Approved by: gnn (mentor)
* | Finish making resolv ordering deterministic by REQUIRE'ing it here.dougb2007-06-021-1/+1
| |
* | Add REQUIRE netif to make ordering more deterministic, and to make suredougb2007-06-021-5/+6
| | | | | | | | | | | | we have a fighting chance of having useful stuff from DHCP. Tighten up the code a little, and fix whitespace issues.
* | remove pointless recursive acquisition of port lock in cxgb_init_lockedkmacy2007-06-021-2/+0
| |
* | Clean up audit comments--formatting, spelling, etc.rwatson2007-06-018-74/+70
| |
* | I understood the MLINK part incorrectly, it should be the other way aroundremko2007-06-012-2/+1
| | | | | | | | | | | | also remove the init mlink to securelevel. Discussed with and sharing pointyhat with: brueffer
* | Revert my previous change, add an MLINK from securelevel.7 to security.7remko2007-06-012-2/+3
| | | | | | | | Discussed with: brueffer
* | Change securelevel(7) to security(7). Yes i am awareremko2007-06-011-2/+2
| | | | | | | | | | | | | | | | | | that this is within the contrib directory. PR: docs/104402 Submitted by: Dr. Markus Waldeck <waldeck at gmx dot de> Discussed with: mlaier
* | More obsolete stuff from doing a 6.2 -> 7.0 upgrade.ru2007-06-011-0/+28
| |
* | - Added more obsolete stuff.ru2007-06-011-7/+65
| | | | | | | | - Undelete archive_entry_set_dev{major,minor}.3.
* | s/tabs/spaces/ru2007-06-011-53/+53
| |
* | Revert previous, part of NFS that I didn't know about.trhodes2007-06-011-0/+20
| |
* | Break long linepav2007-06-011-2/+3
| | | | | | | | Submitted by: ru
* | Add bsd.port.options.mk, a stub to include parts of bsd.port.mk that handlepav2007-06-012-1/+9
| | | | | | | | | | | | | | | | | | | | OPTIONS resolving. This will allow us to load bsd.port.mk in port Makefiles in three steps (options, pre, post), allowing us to manipulate USE_* flags conditionally on OPTIONS values. With hat: portmgr Reviewed by: ru MFC after: 1 week
* | Garbage collect msdosfs_fhtovp; it appears unused and I have been usingtrhodes2007-06-011-20/+0
| | | | | | | | MSDOSFS without this function and problems for the last month.
* | Change the VOP_OPEN(), vn_open() vnode operation and d_fdopen() cdev operationkib2007-06-016-8/+8
| | | | | | | | | | | | | | | | argument from being file descriptor index into the pointer to struct file: part 2. Convert calls missed in the first big commit. Noted by: rwatson Pointy hat to: kib
* | Remove AUDIT_PRINTF() debugging statements and definition; clean up orrwatson2007-06-013-55/+10
| | | | | | | | | | | | | | | | | | remove associated comments. Slip audit_file_rotate_wait assignment in audit_rotate_vnode() before the drop of the global audit mutex. Obtained from: TrustedBSD Project
* | - Take out the broken table-id concept. Panda Routers have a M-VRFrrs2007-06-0114-158/+164
| | | | | | | | | | | | | | | | | | concept that is NOT well thought out for a multi-homed transport protocol. So the useless table-id entries passed around need to be removed. - Add a event timer for the zero copy api. - Fix a bug in sctp_timer.c when searching for an alternate with the largest ssthresh (the compare was wrong).
* | Partially back out rev. 1.127, to restore broken functionality. Thisglebius2007-06-011-5/+4
| | | | | | | | | | | | should be redesigned, but better enter RELENG_7 with a working ngctl(8). Agreed by: julian
OpenPOWER on IntegriCloud