summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add newer commandsimp2005-07-311-2/+7
|
* Remove the instruction to "contact the maintainer" for unrecognizedcperciva2005-07-311-3/+1
| | | | | CPUs. Intel refuses to give me the information I need, and getting more emails about this doesn't help.
* fix build without option INET6.ume2005-07-301-0/+8
| | | | Reported by: Philip M. Gollucci <pgollucci__at__p6m7g8.com>
* Introduce kdevtoname, which when given the kernel address of acsjp2005-07-301-4/+16
| | | | | | | | | cdev structure, returns the device name associated with it through the __si_namebuf member. This un-breaks the processing of devices. This is a RELENG_6 candidate. Reviewed by: phk
* Add some more files. More (manpages) to come later...netchild2005-07-301-1/+332
|
* - Only make the delete-old related parts visible if one of the 3 targetsnetchild2005-07-301-0/+6
| | | | | | | are called (wrapped in ".if make(...)"). This may reduce the amount of memory needed for all other targets (the file lists are already large and they will grow further). - Be verbose in the batch case of the delete-old part too.
* Add missing parenthesis around error handling code upon attachingcsjp2005-07-301-1/+2
| | | | | | | | | | mlx devices. This fixes an issue where mlx device drives fail to be detected at system boot. This is a RELENG_6 candidate. Submitted by: oliver PR: kern/84163
* Misc cleanup (spelling, grammar, mdoc, style, cut >80 char lines).brueffer2005-07-301-83/+93
|
* Temporary band-aid to fix hang when a process exec's Altivec instructions.grehan2005-07-306-0/+32
| | | | | | | | | | | | | | | | | | | | | | | | | | trap_subr.S: declare a stub for the a-unavailable trap that does an absolute jump to the vector-assist trap. This is due to the fact that the vec-unavail trap doesn't start at a 256-byte boundary, so the trick of masking the bottom 8 bits of the link register to identify the interrupt doesn't work, so let the vec-assist case handle Altivec-disabled for the time being. Note that this will be fixed in the future with a much smaller vector code-stub (< 16 bytes) that will allow use of strange vector offsets that are also present in 4xx processors, and also allow smaller differences in vector codepaths on the G5. trap.c: Treat altivec-unavailable/assist process traps as SIGILL. Not quite correct, since altivec-assist should really be a panic, but it is fine for the moment due to the above measure. machdep.c Install the stub code for the altivec-unavailable trap, and the standard trap code at the altivec-assist. Reported by: Andreas Tobler <toa at pop agri ch> MFC after: 3 days
* Document two new diagnostic messages in hwpmc(4).jkoshy2005-07-301-0/+7
|
* Fail the module loading process if the currently executing kerneljkoshy2005-07-303-7/+29
| | | | | | | | was not compiled with 'options HWPMC_HOOKS' or if the compiled-in version numbers of the kernel and module are out of sync. Reported by: cracauer MFC after: 3 days
* Enforce the native environment requirement for {check,delete}-old-* atdes2005-07-301-6/+6
| | | | | | run time, not parse time. This unbreaks cross-builds. Pointy hat to: netchild
* Ignore mutex asserts when we're dumping as well. This allows meps2005-07-301-1/+2
| | | | | to panic a system from DDB when INVARIANTS is compiled into the kernel on a scsi system.
* oops, revert previous changesam2005-07-301-7/+0
|
* MFC: add fragthreshold parameter and accept - (or any) for rtsthresholdsam2005-07-301-0/+7
| | | | Approved by: re (kensmith)
* add m_align, a function to align any type of mbuf (i.e. itsam2005-07-302-0/+20
| | | | | | is a superset of M_ALIGN and MH_ALIGN) Reviewed by: several
* devfs is not yet fully MPSAFE - for example, multiple concurrent devfs(8)kris2005-07-291-1/+0
| | | | | | processes can cause a panic when operating on rulesets. Approved by: phk
* Add a new PCI id for fxp(4) cards found on ICH7-based systems.mux2005-07-291-0/+1
| | | | | | This commit is a RELENG_6 candidate. Submitted by: Martin Nilsson <martin@gneto.com>
* Forced commit [1] to add another design goal which I forgot to mention innetchild2005-07-290-0/+0
| | | | | | | | | | | | | | the initial commit of the delete-old feature: One of the design goals of the recently committed way of removing obsolete files was to *not* remove a file which we never had in the base system (I'm not sure I mentioned this in the commit log). So if an administrator decides to move something to somewhere in the base system (for whatever reason), it will stay where it is (and this is good, since this move was done with a specific purpose). Suggested by: Jeremie Le Hen <jeremie@le-hen.org> [1] Approved by: mentor (joerg; implicit)
* Remove an unused variable.deischen2005-07-292-2/+0
|
* - Move recently added dir into the correct section.netchild2005-07-293-14/+68
| | | | | | | | | | | | - Add a note about the organisation of the sections. - Expand shell globs (they worked in a previous version of the delete-old target, but not in this one). - Use the correct way of checking for a native environment. [1] - Add some more obsolete files. - Fix some bad english. [1] Suggested by: ru [1] Approved by: mentor (joerg)
* Catch up with the atomic_FOO_ptr() changes and silence a few warnings.deischen2005-07-292-14/+28
|
* Add missing dependencies on the SYSVIPC modules.jhb2005-07-292-0/+10
|
* Move MODULE_DEPEND() statements for SYSVIPC dependencies to linux_ipc.cjhb2005-07-294-10/+5
| | | | | so that they aren't duplicated 3 times and are also in the same file as the code that depends on the SYSVIPC modules.
* Fix a bug in pmap_protect() in the PAE case where it would try to look upjhb2005-07-291-2/+2
| | | | | | | | | the vm_page_t associated with a pte using only the lower 32-bits of the pte instead of the full 64-bits. Submitted by: Greg Taleck greg at isilon dot com Reviewed by: jeffr, alc MFC after: 3 days
* Add a tunable 'hw.apic.enable_extint' that can be set from the loader tojhb2005-07-291-2/+12
| | | | | | | | | not mask the ExtINT pin on the first I/O APIC as at least one PIII chipset seems to need this even though all of the pins in the 8259A's are masked. The default is still to mask the ExtINT pin. Reported by: Mike Tancsa mike at sentex.net MFC after: 3 days
* Remove stale struct ata_channel declaration.sos2005-07-291-1/+0
| | | | Reported by: rodrigc
* Correct argument order of kiconv_add_xlat16_cspairs().imura2005-07-291-1/+1
| | | | Security:
* Fix typo and check correct (rsp) pointer against the NULL value.emax2005-07-291-1/+1
| | | | | Submitted by: Oliver < urnenfel at tiscali dot es > MFC after: 1 day
* Change API of mb_copy_t in libmchain so that netsmb can handleimura2005-07-294-11/+35
| | | | | | multibyte character share name correctly. Reviewed by: bp
* Fix a comparison that broke ``set console=vidconsole'' and even thebrian2005-07-291-1/+1
| | | | | | | loader.conf line ``console="vidconsole"''. Sponsored by: ActiveState/Sophos MFC after: 1 week
* Mention that console= can set multiple consoles.brian2005-07-291-11/+13
| | | | | | | | Relate boot_ options to their kernel command line flags and make it clear how kenv(1) is used. Sponsored by: ActiveState/Sophos MFC after: 1 week
* Update SEE ALSO section.keramida2005-07-291-2/+1
| | | | | PR: docs/84273 Submitted by: Gary W. Swearingen
* In realpath(), make sure each path component consists only of safedes2005-07-291-1/+3
| | | | characters, and untaint it.
* Differentiate between empty and short reports, and raise the bar for whatdes2005-07-291-2/+6
| | | | we consider a short report to 128 characters. Canonicalize %%HOME%%.
* Update manual page after ggate rewrite.pjd2005-07-291-7/+6
| | | | MFC after: 1 day
* Don't email reports that are empty or very short, as can happen if tbmasterdes2005-07-291-0/+6
| | | | fails to exec the tinderbox script.
* hw.ata.wc can cause data loss on crashes too. This brings thekeramida2005-07-291-1/+1
| | | | | | | description of the hw.ata.wc in sync with tuning(7) PR: docs/84264 Submitted by: Gary W. Swearingen
* I actually do need libmd.pjd2005-07-291-2/+2
|
* Create /etc/opiekeys with 0600, not 0644ache2005-07-292-3/+7
| | | | PR: 84221
* Document the ECONNRESET errno value.dds2005-07-292-0/+7
|
* terminate when all interfaces have been removed; since we do notsam2005-07-291-0/+14
| | | | | | do interface discovery there's no point in sticking around MFC after: 3 days
* Correct problems with handling interfaces that go away (e.g. whensam2005-07-291-10/+26
| | | | | | | | | | | | | | | | | | | | | | | | a card is ejected). wpa_supplicant requires that internal events for interfaces coming+going include a name but after an interface is removed you cannot use if_indextoname to map the interface index in the RTM_IFINFO (or RTM_IFANNOUNCE) msg to an interface name. Instead record the interface index in the driver-private data area and use that to filter msgs from the routing socket. This insures that when we have a message to process we know the interface name. The end result is that we can now dispatch an "interface removed" event that is understood when notified than an interface went away (where previously the event dispatched was ignored because the interface name was unrecognized). This change also insures we only process events for our interface. The only downside is that we can no longer wait for an interface to arrive as we need to map the interface name to an index at startup. This is not important as wpa_supplicant should be launched by devd and not include a separate mechanism for doing interface discovery. MFC after: 3 days
* clear eloop registration when deinit'd the l2 packet supportsam2005-07-291-2/+11
| | | | MFC after: 3 days
* Print the actual disk device we failed to complete i/o on.ps2005-07-291-2/+2
|
* Don't allow ioctl commands to be interrupted by the user.ps2005-07-291-6/+4
|
* Make ichsmb unloadable.brian2005-07-292-8/+3
| | | | | | | | It seems that the unload problems were due to a dodgy sc->smb usage and a missing mtx_destroy(). Sponsored by: ActiveState/Sophos MFC after: 3 weeks
* Fix core dump when "smbutil lc".imura2005-07-281-1/+5
| | | | OK'ed by: bp
* Don't compile ral and ural in the PAE kernel, becauseimura2005-07-281-0/+2
| | | | | | they have dependency on wlan and usb. Reported by: make universe
* Correct column alignment.njl2005-07-281-1/+1
|
OpenPOWER on IntegriCloud