summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* Merge a bunch of refactoring from Joerg Sonnenberger tokientzle2010-02-0713-433/+724
| | | | | | isolate common code used by tar and cpio (and useful to other libarchive clients). The functions here are prefixed with "lafe" (libarchive front-end) to indicate their use.
* Style & Portability: Use archive_entry methods to examinekientzle2010-02-072-40/+24
| | | | | file information, change some functions to static, remove some unused headers.
* Various portability workarounds for non-FreeBSD platforms.kientzle2010-02-072-6/+49
|
* Restructure the logic that determines when we're crossing a mountkientzle2010-02-071-8/+29
| | | | | point. In particular, this carves out a place for detecting and excluding synthetic or network filesystems.
* Minor code rework.kientzle2010-02-071-21/+8
|
* Trim out some unused configuration variables, removekientzle2010-02-074-65/+0
| | | | some unused headers, etc.
* Add files for NO_MAIL, NO_SENDMAIL and NO_MAILWRAPPER.delphij2010-02-071-6/+241
| | | | MFC after: 2 weeks
* sh: Do not stat() $MAIL/$MAILPATH in non-interactive shells.jilles2010-02-064-1/+38
| | | | | These may be NFS mounted, and we should not touch them unless we are going to do something useful with the information.
* Add sane-port (Scanner Access Now Easy) as port 6566.bms2010-02-061-0/+2
| | | | | Obtained from: http://www.iana.org/assignments/port-numbers MFC after: 3 days
OpenPOWER on IntegriCloud