summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | o Fix a couple of obvious typos.maxim2006-11-081-2/+2
| |
* | MFamd64/ia64/i386/sun4valc2006-11-081-1/+1
| | | | | | | | | | | | Use cnt.v_page_count, the actual count of available physical pages, instead of vm_page_array_size to compute the maximum number of pv entries.
* | Ensure that the page's oflags field is initialized by contigmalloc().alc2006-11-081-0/+1
| |
* | /boot/skiload.help has been eliminated on ia64.marcel2006-11-081-0/+4
| |
* | Increate cnt.v_intr on interrupt.cognet2006-11-081-0/+1
| |
* | -Fixes first of all the getcred on IPv6 and V4. Therrs2006-11-0810-177/+167
| | | | | | | | | | | | | | | | | | | | | | | | copy's were incorrect and so was the locking. -A bug was also found that would create a race and panic when an abort arrived on a socket being read from. -Also fix the reader to get MSG_TRUNC when a partial delivery is aborted. -Also addresses a couple of coverity caught error path memory leaks and a couple of other valid complaints Approved by: gnn
* | Fix typos in comments.ceri2006-11-072-2/+2
| |
* | Use z modifier for size_t and ssize_t.jkim2006-11-071-15/+15
| |
* | XPT_GET_TRAN_SETTINGS can fail- so check for an error andmjacob2006-11-071-1/+9
| | | | | | | | don't blindly assume it succeeded.
* | Fix expanding of quoted positional parameters in case patterns.stefanf2006-11-071-6/+6
| | | | | | | | | | | | Obtained from: NetBSD (expand.c 1.58 and 1.59) Submitted by: Paul Jarc PR: 56147
* | Identify the xscale 81342.cognet2006-11-076-11/+117
| |
* | In the ARM_USE_SMALL_ALLOC case, vm_page_t may have an address < KERNBASE,cognet2006-11-072-2/+14
| | | | | | | | so adjust the KASSERT to reflect this.
* | Spelling.ru2006-11-072-2/+2
| |
* | Line up memory amount reporting that got broken when s/real/usable/.ru2006-11-071-2/+2
| |
* | Style cleanups to the sctp_* syscall functions.andre2006-11-071-107/+95
| |
* | Fix TFTP NAT support by making sure the appropriate fingerprinting checksmarcus2006-11-071-2/+4
| | | | | | | | | | | | are done. Reviewed by: piso
* | Simplify operations with sync_mtx in sched_sync():jhb2006-11-071-7/+3
| | | | | | | | | | | | | | | | | | - Don't drop the lock just to reacquire it again to check rushjob, this only wastes time. - Use msleep() to drop the mutex while sleeping instead of explicitly unlocking around tsleep. Reviewed by: pjd
* | - Don't bother to include IDs of PCnet chips which are not supportedmarius2006-11-072-40/+27
| | | | | | | | | | | | | | by this driver and largely are not even PCI devices in pcn_chipid. - Use device_printf(9)/if_printf(9) rather than implementing their functionality with printf(9). - Sprinkle some const.
* | Document the -l option.ceri2006-11-072-2/+16
| | | | | | | | | | Reviewed by: brd Approved by: ru (mentor)
* | Fix comment typo and function declaration.jhb2006-11-071-2/+2
| |
* | Fix some edge cases in detach (including attach failures):jhb2006-11-071-3/+2
| | | | | | | | | | | | | | | | | | | | - Only call iwi_stop() if we got far enough along in iwi_attach() to alloc an ifnet. - Release the firmware after stopping the interface and detaching the ifnet. MFC after: 1 month Reviewed by: sam
* | Remove extra forward declare of 'struct sem'.jhb2006-11-071-2/+0
| | | | | | | | Requested by: bde
* | Various whitespace cleanups.jhb2006-11-073-25/+27
| |
* | Add a new 'union l_sigval' to use in place of 'union sigval' in thejhb2006-11-071-3/+6
| | | | | | | | | | | | | | linux siginfo structure. l_sigval uses a l_uintptr_t for sival_ptr so that sival_ptr is the right size for linux32 on amd64. Since no code currently uses 'lsi_ptr' this is just a cosmetic nit rather than a bug fix.
* | Remove old XXX comment about possibly adding a print_Intel_info() functionjhb2006-11-071-8/+0
| | | | | | | | | | to dump CPUID level=2 stuff. A print_INTEL_info() function that does just that was added a while ago.
* | Remove duplicate IDTVEC macro definition, it's already defined injhb2006-11-072-4/+0
| | | | | | | | <machine/intr_machdep.h>.
* | honor nolockd flag in root mount optionssam2006-11-071-0/+2
| | | | | | | | MFC after: 2 weeks
* | Add my birthdate to the calendar.laszlof2006-11-071-0/+1
| | | | | | | | Approved by: flz (mentor)
* | Add atomic_cmpset_acq_32.cognet2006-11-071-0/+1
| |
* | Second stage of unbreaking thr formatting of the NICE field: decode thebde2006-11-071-15/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | priority class and use this to: - print "-" instead of a garbage value for ithreads. Print "-" instead of the unused nice value for kthreads which are (mis)classified as PRI_TIMESHARE. For such threads, the nice value can be set to nonzero by root, but it is never used (at least by the 4bsd scheduler). For ithreads, we didn't even print the unused value. - print "i<priority>" and "r<priority>" instead of a biased "<priority>" for idletime and realtime threads, Here <priority> is the priority parameter to idprio/rtprio(1). Just add the prefix and remove the bias for now. <priority> has been stored indirectly in the kernel since 2001/02/12, and even the kernel cannot recover the original value in all cases. Here we need to handle more cases than pri_to_rtp(), but actually handle fewer cases, and end up printing garbage after a thread changes its current priority while in the kernel. - for idletime and realtime threads, if they are kthreads then add a prefix of "k" to the previous string. - for idletime and realtime threads, if they in the FIFO scheduling class then add a suffix of "F" to the previous string (if it fits; the other parts of the string are sure to fit unless <priority> is garbage).
* | Add support for the HTTP_TIMEOUT environment variable (integer numbercperciva2006-11-071-0/+13
| | | | | | | | | | | | of seconds, just like in fetch(1)). Submitted by: rdivacky
* | Add priv.h include required to build FAST_IPSEC, which is not present inrwatson2006-11-071-0/+1
| | | | | | | | | | | | LINT due to a conflict with KAME IPSEC. Submitted by: Pawel Worach <pawel dot worach at gmail dot com>
* | Fix the hanging chad if the NEW_TRAN_CODE change and change themjacob2006-11-071-2/+2
| | | | | | | | qualifier to force async from cur_spi to spi.
* | Don't drop reference to tty in tty_close() if TS_ISOPEN is already cleared.tegge2006-11-061-7/+6
| | | | | | | | Reviewed by: bde
* | Instead of re-implementing hton[ls] and friends for each arch, add a new MIcognet2006-11-0633-1230/+37
| | | | | | | | | | | | | | file, net/ntoh.c, which just implement them using the inline functions from <sys/endian.h>. Suggested by: bde
* | Handle early errors in kern_sendfile() by introducing a new goto 'out'andre2006-11-061-9/+9
| | | | | | | | | | | | | | | | | | label after the sbunlock() part. This correctly handles calls to sendfile(2) without valid parameters that was broken in rev. 1.240. Coverity error: 272162
* | Provide definitions suitable for arm big-endian.cognet2006-11-061-0/+5
| |
* | Sometimes the vty switching has to be delayed; the vtyru2006-11-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | to be switched to is saved in sc->delayed_next_scr and the actual switch is performed later. It was possible to get into the endless loop when attempting to switch to a closed vty (which is not allowed and beep-alerted when attempted) and when the visual beep was in effect. This caused sc->delayed_next_scr to never be reset and endless attempts to switch to a closed vty and endless visual beeping. How to repeat: - boot into single-user - run "kbdcontrol -b visual" - quickly press Alt+F2 two times PR: kern/68016 X-MFC after: 6.2-RELEASE
* | Add missing includes of priv.h.rwatson2006-11-062-0/+2
| |
* | Style facelift.dds2006-11-061-57/+73
| | | | | | | | | | | | | | | | | | - Reduce the number of global variables - Make global objects static - Use bool consistently - Sort getopt arguments and their processing - Add function comments - Change notlast != 0 into !last
* | Add needed hyphens, note the KTRACE kernel option, bump doc date.trhodes2006-11-061-5/+9
| | | | | | | | | | PR: 85186 Submitted by: garys
* | Remove sys/uio.h include -- this is no longer required by the extattrrwatson2006-11-061-1/+0
| | | | | | | | | | | | system call API. MFC after: 3 weeks
* | Use a more sensible default of 1 or -1 when only the start anddds2006-11-062-2/+9
| | | | | | | | | | | | | | | | end values are specified. PR: bin/68981 Submitted by: Stefan `Sec` Zehl MFC after: 2 weeks
* | Add auditd_program variable to defaults, in order to make it more clearrwatson2006-11-061-0/+1
| | | | | | | | | | | | | | | | how to change the auditd instance. When using a port/package-based OpenBSM, changing the auditd pointer may be desirable. Obtained from: TrustedBSD Project MFC after: 3 weeks
* | Add the examples from the manual page.dds2006-11-0610-2/+630
| |
* | Updated results for bin/68981dds2006-11-062-0/+42
| | | | | | | | PR: bin/68981
* | Convert three new suser(9) calls introduced between when the priv(9)rwatson2006-11-063-5/+19
| | | | | | | | | | | | | | | | | | patch was prepared and committed to priv(9) calls. Add XXX comments as, in each case, the semantics appear to differ from the TCP/UDP versions of the calls with respect to jail, and because cr_canseecred() is not used to validate the query. Obtained from: TrustedBSD Project
* | This changes tracks down the EEOR->NonEEOR mode failurerrs2006-11-061-56/+66
| | | | | | | | | | | | | | | | | | | | | | to wakeup on close of the sender. It basically moves the return (when the asoc has a reader/writer) further down and gets the wakeup and assoc appending (of the PD-API event) moved up before the return. It also moves the flag set right before the return so we can assure only once adding the PD-API events. Approved by: gnn
* | Fix markup.ru2006-11-061-10/+13
| |
* | Bump document date.ru2006-11-061-1/+1
| |
OpenPOWER on IntegriCloud