summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Use the more appropriate vm_paddr_t in places where a physicalharti2004-02-218-61/+74
| | | | | | address for DMA is handled instead of pointers. Submitted by: Joerg Sonneberger <joerg@britannica.bec.de>
* Dont alloc size 0 buffers.sos2004-02-211-3/+5
|
* Check both PORTEN and MEMEN for enabled HW.sos2004-02-211-1/+1
|
* Only register interrupt as seen if it was a real HW interrupt.sos2004-02-211-1/+3
|
* Fix a couple of potential buffer overflows.harti2004-02-212-12/+10
| | | | Submitted by: christer.oberg@texonet.com
* We can cross-reference to vlan(4) as long asyar2004-02-211-15/+38
| | | | | | | | the corresponding manpage has been committed. The rest of "vlan" words, which are refering to the technology itself, should be capitalized. MFC after: 1 week
* The hardware tagging capability is set on the physicalyar2004-02-211-1/+1
| | | | | interface that is parent to a vlan(4) interface, not on the vlan(4) interface itself.
* Make sure that the first mbuf in the chain passed to atm_intrharti2004-02-211-4/+8
| | | | always contains a packet header.
* The token for atm_intr is actually a void *, not an int. Clarifyharti2004-02-211-2/+4
| | | | | what atm_intr expects in a comment and de-obfuscate the code a little bit by replacing the portability macros with the native BSD names.
* Minor beautifications related to style(9) and code consistency.yar2004-02-211-5/+5
| | | | No functional changes.
* Don't remove the first mbuf in the chain if it got empty.harti2004-02-211-7/+6
| | | | | | | | This removes the packet header in certain cases which later on will give panic. Clarify what the atm_intr expects in the comment and de-obscurify the code a little bit by replacing the portability macros with the BSD names. The code isn't maintained externally anymore so there's no point in keeping the extra level of obscurity.
* Improve the SIOCSIFCAP handler a bit:yar2004-02-211-1/+5
| | | | | | | - allow for ifp->if_ioctl being NULL, as the rest of ifioctl() does; - give the interface driver a chance to report a error to the caller; - don't forget to update ifp->if_lastchange upon successful modification of interface operation parameters.
* Remove the triplicity in the public functions by vectoring them allphk2004-02-211-70/+49
| | | | | | | | | | through a realloc like function. Make the malloc_active variable a local static to this new function. Don't warn about recursion more than once per base call. constify malloc_func.
* Move the check for sensitive processes to the point where the exceptionphk2004-02-211-14/+7
| | | | | | | | | has been hit, this makes it cover more cases. Call the message function directly rather than fiddle with flag-saving when we find an unknown character in our options. The 'A' flag should not trigger on legal out of memory conditions.
* Fix a major brain-o. If the command needs to be put on the deferred queue,scottl2004-02-211-0/+1
| | | | | take it off of the busy queue first. This should fix the 'command is on another queue' panic that showed up recently.
* Print the maximum resolution time encountered by each thread. Did yougreen2004-02-211-5/+25
| | | | | know that the resolver might keep trying on a getaddrinfo() for up to FIVE MINUTES?
* Update instructions on /rescue vs -j to indicate a fixed date.imp2004-02-201-14/+18
|
* the default password policy for xdm should be pam_deny, since it isdes2004-02-201-0/+3
| | | | incapable of holding a meaningful conversation.
* Mention that securelevel 1 also blocks access to /dev/io if itmux2004-02-201-2/+3
| | | | exists (not all platforms have it).
* Add somemore items to the list. The purpose is not to extert control overscottl2004-02-201-1/+7
| | | | these, but to let people know that they are maintained.
* Do not test if pDCB is not NULL, we dereference it before anyway, and itcognet2004-02-201-3/+2
| | | | | | | should not happen. Add a KASSERT instead. Reported by: Ted Unangst <tedu@coverity.com> Spotted out by: cperciva
* add destination address selection support for getipnodebyname(3).ume2004-02-201-1/+225
| | | | | though getipnodebyname(3) is obsoleted api, some major applications such as Mozilla are still using it. so, it will help ipv4 users.
* whitespace changes only (prepare for merge from citi tree)rees2004-02-201-52/+51
|
* Add my getaddrinfo(3) stress-tester as gaithrstress. The most obviousgreen2004-02-203-0/+253
| | | | | | | | | regressions would be to see the program or your kernel crashing. If you want to give it something to really test out, try a much more reentrant version of the resolver. <URL:http://green.homeunix.org/~green/reentrant_resolver.patch> Any Mozilla-based browser would show you a clear difference.
* mdoc(7) guru's glance.ru2004-02-201-18/+22
|
* Add a belated entry for the CPU_ENABLE_LONGRUN issue.imp2004-02-201-0/+5
|
* Label @ as being AC (since it's constructed like a prosign).fanf2004-02-201-1/+1
| | | | Submitted by: des
* Merge from RELENG_4 1.28.2.13: Fix saving system crash dumps larger thantjr2004-02-201-1/+1
| | | | 2 GB by using fseeko() instead of fseek().
* Add some missing punctuation symbols, in particular @ which (according tofanf2004-02-202-2/+5
| | | | | | | a recent Press Association release) was added to Morse code by the ITU in December. @ was previously used for the SK prosign, which is now spelt &. Obtained from: http://en.wikipedia.org/wiki/Morse_code
* Unbreak the upgrade path from 4.9 after removal of GNU getopt andru2004-02-203-2/+16
| | | | <gnuregex.h>.
* Normalize polling interval while the target is offline.simokawa2004-02-202-7/+13
|
* List EPSON Perfection 3200 as supported.wilko2004-02-201-0/+1
| | | | Reminded by: simon
* New failure detection algorithm was backed out, so backout manualpjd2004-02-201-26/+12
| | | | | | page change as well. Requested by: scottl (mentor)
* Backout previous change, it breaks build and it is not neededpjd2004-02-204-107/+13
| | | | | | | | layering violation. As pointed out, there is much better way to do this. Sorry guys, I need to find a better way to force reviews. Requested by: harti, julian, scottl (mentor) Pointy hat to: pjd
* Document dependence of mktemp(3) on the non-reentrant arc4random(3).green2004-02-201-0/+7
|
* Make sure to wake up any select waiters when closing a kqueue (also, notgreen2004-02-201-0/+4
| | | | | | | crash). I am fairly sure that only people with SMP and multi-threaded apps using kqueue will be affected by this, so I have a stress-testing program on my web site: <URL:http://green.homeunix.org/~green/getaddrinfo-pthreads-stresstest.c>
* Moving forward, there's no reason to exclude libpthread on sparc64.marcel2004-02-201-1/+1
|
* Change the 'realclean' target name to be 'cleanworld', to match othergad2004-02-201-2/+2
| | | | | | targets like buildworld, installworld. Suggested by: obrien
* Fix a glitch in my last commit and revert to using selwakeupprimatk2004-02-201-1/+1
| | | | | Noticed by: tanimura Noticed by: truckman
* Make uscanner recognise EPSON Perfection 3200. Tested with xsane.wilko2004-02-191-0/+1
| | | | | PR: kern/63041 MFC after: 3 days
* Tidy up the thread taskqueue implementation and close a lost wakeup race.jhb2004-02-191-14/+9
| | | | | | | Instead of creating a mutex that we msleep on but don't actually lock when doing the corresponding wakeup(), in the kthread, lock the mutex associated with our taskqueue and msleep while the queue is empty. Assert that the queue is locked when the callback function is called to wake the kthread.
* Add EPSON Perfection 3200 scanner.wilko2004-02-192-2/+9
|
* Add EPSON Perfection 3200 scannerwilko2004-02-191-0/+1
|
* Improvements on the 'make realclean' target. Some are style improvements,gad2004-02-191-13/+28
| | | | | | | | | | | | | | but the biggest issue is that there are situatons when ${.OBJDIR} == ${.SRCDIR}, and in those situations the previous version would happily remove all your /usr/src while it was cleaning out the objects. Not that *you* would be happy about it... Thanks to bde for immediately noticing this serious possibility. More improvements will be made to this target, but I wanted to commit this safer version right now, before anyone lost their /usr/src due to it. Reviewed by: bde MFC after: 10 days
* Rework jail_attach(2) so that an already jailed process cannot hopnectar2004-02-191-12/+12
| | | | | | to another jail. Submitted by: rwatson
* Allow to compile with non-GCC compiler.obrien2004-02-191-1/+31
|
* s/bytes/byte/phk2004-02-191-1/+1
|
* Document the acpi_toshiba driver written by Hiroyuki Aizu.philip2004-02-192-1/+107
| | | | Approved by: njl (mentor)
* Report the correct length for symlink entries.phk2004-02-191-1/+1
|
* Clarify the "lp" description to mention port@host syntax.kientzle2004-02-191-1/+1
| | | | Suggested by: NetBSD man page
OpenPOWER on IntegriCloud