summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* - Deal with some special cases [1]gabor2010-02-091-30/+54
| | | | | | | - style(9) nits Pointed out by: jilles [1] Approved by: delphij (mentor)
* Add -i to usage()gavin2010-02-091-1/+1
| | | | | Noticed by: ru MFC after: 5 days
* Move device specific flag configuration to attach routine.yongari2010-02-091-4/+4
| | | | | | The softc obtained in device probe wouldn't be the same one used in device attach. Drivers should not assume any values stored in softc structure in probe routine will be available for its attach routine.
* Various fixes like spelling, style and syntax.marcel2010-02-091-21/+28
| | | | Submitted by: ru (thanks!)
* Add description for libefi.marcel2010-02-091-0/+1
| | | | Pointed out by: ru
* As it turns out, fmt(1) is being used by the base system as well as thedelphij2010-02-092-3/+1
| | | | | | | | | ports tree extensively and it is probably a good idea to keep it regardless of NO_MAIL setting. Reported by: Alexander Best Reviewed by: antoine X-MFC-With: r203584
* When you have multiple addresses on the same network on differentimp2010-02-093-12/+93
| | | | | | | | | | | | | | | | | | | | | | | | | | interfaces (such as when you are part of a carp pool), and you run rpcbind -h to restrict which interfaces have rpc services, rpcbind can none-the-less return addresses that aren't in the -h list. This patch enforces the rule that when you specify -h on the command line, then services returned from rpcbind must be to one of the addresses listed in -h, or be a loopback address (since localhost is implicit when running -h). The root cause of this is the assumption in addrmerge that there can be only one interface that matches a given network IP address. This turns out not to be the case. To retain historical behavior, I didn't try to fix the routine to prefer the address that the request came into, since I didn't know the side effects that might cause in the normal case. My quick analysis suggests that it wouldn't be a problem, but since this code is tricky I opted for the more conservative patch of only restricting the reply when -h is in effect. Hence, this change will have no effect when you are running rpcbind without -h. Reviewed by: alfred@ Sponsored by: iX Systems MFC after: 2 weeks
* Unbreak building kernels with COMPAT_32 enabled. The actual supportmarcel2010-02-091-0/+19
| | | | | | for the PT_VM_ENTRY request from 32-bit processes will follow. Pointy hat: marcel
* Anything that casts struct sockaddr * to struct sockaddr_foo is safeimp2010-02-091-0/+2
| | | | | | | | | | | | | due to careful design. We've not yet figured out how to properly annotate the sockaddr structs to communicate this to the compiler and there's a number of constructs in the tree that make this annotation challenging. As such, reduce warns to 3 here because this code really isn't warns 6 safe, even if it kinda sorta appears to be on intel (which has no such alignment restrictions). Warns 4 adds the -Wcast-align warning. # fixes the mips tinderbox build
* Add the definition of Mistakeholdergnn2010-02-091-0/+6
|
* - pt_BR.ISO8859-1 cataloggabor2010-02-092-1/+188
| | | | | | | - Add link to pt_PT.ISO8859-1 Submitted by: sylvio Approved by: delphij (mentor)
* Set ut_line to "ftpd" for ftpd.ed2010-02-091-0/+1
| | | | | | | | This makes it a little easier to figure out which application was responsible for this log entry. Ideally we should add an ut_process or something similar. Suggested by: Vincent Poy <vincepoy gmail com>
* SMP support for the mips port.neel2010-02-0918-222/+604
| | | | | | | The platform that supports SMP currently is a SWARM with a dual-core Sibyte processor. The kernel config file to use is SWARM_SMP. Reviewed by: imp, rrs
* Add PT_VM_TIMESTAMP and PT_VM_ENTRY so that the tracing process canmarcel2010-02-093-1/+194
| | | | | | | | obtain the memory map of the traced process. PT_VM_TIMESTAMP can be used to check if the memory map changed since the last time to avoid iterating over all the VM entries unnecesarily. MFC after: 1 month
* Fixing compilation bustage by removing a stray comment fragment.avatar2010-02-091-1/+0
|
* Disable the use of the IAAD usb doorbell on NVidia controllers as it can causethompsa2010-02-093-0/+33
| | | | | | the hardware to stall. Submitted by: Hans Petter Selasky
* Kernel modules for these drivers are installed on all platforms, sogavin2010-02-088-12/+12
| | | | install the man pages on all platforms too.
* Update documentation for the iwn and iwnfw drivers: they support the 1000, ↵brucec2010-02-084-12/+114
| | | | | | | | 5150, 6000 and 6050 devices too, with firmware modules for the 4965, 1000, 5000, 5150 and 6000. Add documentation for mwl and all the wireless firmware drivers. Approved by: rrs (mentor)
* Xorg isn't treated as a distribution, so /usr/X11R6/lib shouldn't be ↵brucec2010-02-081-1/+1
| | | | | | | | configured when running ldconfig. PR: bin/138945 Approved by: rrs (mentor) MFC after: 3 days
* Install the padlock(4) man page on amd64 as well as i386, to match thegavin2010-02-083-3/+4
| | | | | | | | platforms where the driver itself is compiled and installed. PR: docs/130895 Reported by: George Hartzell <hartzell alerce.com> MFC after: 1 week
* Initialize the execfile argument to NULL instead of _PATH_DEVNULL. This ↵brucec2010-02-083-3/+6
| | | | | | | | allows the -M option to be used without specifying -N. PR: bin/138146 Approved by: rrs (mentor) MFC after: 3 days
* Update .Dt to reflect the fact that these drivers and man pages aregavin2010-02-088-16/+16
| | | | installed on more than just i386.
* If there is only one NIC in the system that is up and running, thembr2010-02-082-45/+86
| | | | | | | | | interface specifier on the command line can be ommited. Besides of this, the bpf is being reused for each machine that has to be woken up. Submitted by: Marc Balmer <marc@msys.ch>
* Document the usfs driver and the NO_SYSCTL_DESCR option, and update the ↵brucec2010-02-082-1/+12
| | | | | | | | comment for umass. Don't include the sysctl description variables in aic7xxx when NO_SYSCTL_DESCR is used. Approved by: rrs (mentor)
* Update .Dt on these man pages: the kernel modules and corresponding mangavin2010-02-084-8/+8
| | | | pages are installed on more platforms than just i386.
* Add multicast key search support. This fixes corrupted mcast packetsrpaulo2010-02-082-11/+30
| | | | | | | when we have more than one hostap vap. Submitted by: Russell Yount <russell.yount at gmail.com> MFC after: 2 weeks
* Fix TX power problems with AR9285.rpaulo2010-02-087-49/+102
|
* Fix typo and remove extra spaces.brucec2010-02-081-3/+3
| | | | | Approved by: rrs (mentor) MFC after: 3 days
* Fix typo in comment.rpaulo2010-02-081-1/+1
|
* Remove the usb2_input_kbd directive that was missed during the renaming of ↵brucec2010-02-085-5/+5
| | | | | | the drivers in the usb2 stack. Approved by: rrs (mentor)
* Rename usb2_ structures and variables to usb_.brucec2010-02-082-78/+78
| | | | | Approved by: rrs (mentor) Discussed with: hps
* sh: Make sure the mail2.0 test can actually fail if $MAIL is not touched.jilles2010-02-081-1/+1
|
* Introduce new rc.conf variable firewall_coscripts. It can be used toemax2010-02-083-6/+32
| | | | | | | | | specify list of executables and/or rc scripts that should be executed after firewall starts/stops. Submitted by: Yuri Kurenkov <y dot kurenkov at init dot ru> Reviewed by: rhodes, rc@ MFC after: 1 week
* Ensure that tkip_mixing_phase1() is called after a rekeying event whenbschmidt2010-02-081-0/+1
| | | | | | | useing plain s/w crypto. Approved by: rpaulo (mentor) Reviewed by: sam
* Make sure that FTS_COMFOLLOW is not set when the -P option is in effect.jh2010-02-081-2/+6
| | | | | | | | | | Otherwise the -i option will show the inode number of the referenced file for symbolic links given on the command line. Similarly, the file color was printed according to the link target in colorized output. PR: bin/102394 Reviewed by: jilles MFC after: 2 weeks
* Remove unused LIBCOMPAT keyword from syscalls.master.ed2010-02-085-23/+2
|
* Fall back to ASCII codepoints for box drawing.ed2010-02-081-5/+5
| | | | | | | | Even though the default VGA font provides box drawing fonts, there is no guarantee any font will provide these as well (i.e. ISO-8859-*, KOI8-R). Just use ASCII characters for box drawing. PR: kern/141633
* Set waiters flag before checking semaphore's counter,davidxu2010-02-081-5/+2
| | | | otherwise we might lose a wakeup. Tested on postgresql database server.
* Improve checking whether an ARM VA has a valid mapping before performing cacheraj2010-02-071-74/+42
| | | | | | | | | | | | | | | | | | | | sync. VIPT/PIPT caches need valid VA-PA mapping in PTE for a cache operation to succeed (unlike VIVT). Prior to this fix pmap was using l2pte_valid() for that check, but this is not sufficient as the function merely checks if a PTE exists (there can be existing but _invalid_ entries in the table). A new pmap_has_valid_mapping() routine is introduced to do this job right by checking proper PTE flags. Among other potential problems this cures coherency issues with L2 caches on MV-78100. Submitted by: Grzegorz Bernacki, Piotr Ziecik Reviewed, tested by: marcel Obtained from: Semihalf MFC after: 1 week
* Correct arguments to free_unr(), "item" was missing.gavin2010-02-071-2/+2
| | | | MFC after: 1 week
* merge from my tbemd branch: cmpdi2 and ucmpdi2 are genereated when theimp2010-02-071-0/+2
| | | | | inline limit is pushed to a very low level. Include them here until we can find a better way to optionally include them. They are small...
* Add support for a few more Sony-specific ACPI features (default displaygavin2010-02-072-7/+26
| | | | | | | | | | brightness, wired LAN power and bass gain), and update the description of one previously unknown feature (display contrast). While here, expand on a comment and remove two defines left over from an old version of the code. Also update man page to document the above changes, and correct grammar. PR: kern/127581
* Bump .Dd for r203620gavin2010-02-071-1/+1
| | | | MFC after: 1 week
* Document support for the D-Link DFE520-TX card (supported with the vr(4)gavin2010-02-072-2/+4
| | | | | | | driver) PR: kern/135989 Submitted by: "Rashid N. Achilov" citycat4 ngs.ru
* Spelling nitgavin2010-02-071-1/+1
|
* Tell the compiler these structures are aligned to a byte boundary.imp2010-02-073-7/+5
| | | | | | | | | | All the elements of these structs are char anyway, so it won't hurt performance. Bump warns back up to the default. # we likely should have CTASSERTS to make sure they are the right size. # but with libarchive based tar maybe we shouldn't bother.
* Remove statistics from the TTY queues.ed2010-02-072-22/+0
| | | | | | I added counters to see how often fast copying to userspace was actually performed, which was only useful during development. Remove these statistics now we know it to be effective.
* Fix whitespace in pho's entry, results in nicer output files.brueffer2010-02-071-1/+1
| | | | | | PR: 143613 Submitted by: pluknet <pluknet@gmail.com> Committed from: Debian/kFreeBSD talk at FOSDEM
* Initialize fromlen before calling recvfrom to avoid passing in randomimp2010-02-071-0/+1
| | | | | | stack garbage. Obtained from: NetBSD 1.13
* Simplify, remove unnecessary code.kientzle2010-02-071-30/+10
|
OpenPOWER on IntegriCloud