summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Fix single-stepping when the kernel was entered through the EPC syscallmarcel2010-02-061-4/+5
| | | | | | | path. When the taken branch leaves the kernel and enters the process, we still need to execute the instruction at that address. Don't raise SIGTRAP when we branch into the process, but enable single-stepping instead.
* Fill in some missing error handling, be a little more careful aboutkientzle2010-02-062-17/+18
| | | | error reporting, prefer int64_t to off_t.
* bsdtar doesn't actually know what compression is supported by libarchivekientzle2010-02-062-42/+11
| | | | | and it should not pretend that it does. It should just pass along the user's request and handle an error if it's not supported.
* Refactor the siginfo/sigusr1 handling. The read/write reportingkientzle2010-02-067-202/+146
| | | | | | | | | is sufficiently different that it was simpler to just put separate reporting functions into read.c and write.c rather than try to have a single all-purpose reporting function. Switch to a custom function for converting int64_t to a string; in the portable version, this saves a lot of configuration headaches trying to decipher the platform printf().
* Update files to remove when MK_KERBEROS=no.antoine2010-02-061-116/+256
|
* Add files to remove when MK_JAIL=no.antoine2010-02-061-0/+9
|
* Update files to remove when MK_IPX=no.antoine2010-02-061-2/+2
|
* Add files to remove when MK_IPFW=no.antoine2010-02-061-0/+11
|
* Move rescue/ping6 from files to remove when MK_INET6=no to file to removeantoine2010-02-061-1/+4
| | | | when MK_INET6_SUPPORT=no. (MK_INET6=no implies MK_INET6_SUPPORT=no)
* Add file to remove when MK_IDEA=no.antoine2010-02-061-0/+4
|
* Add files to remove when MK_GSSAPI=no.antoine2010-02-061-0/+79
|
* Remove all traces of an experiment for handling "root" on Windows systems.kientzle2010-02-062-7/+6
|
* Reformat the Makefile slightly.kientzle2010-02-061-1/+11
|
* Allow -b up to 8192. I've had reports from people who routinelykientzle2010-02-061-2/+2
| | | | | | use -b 2048 (1MiB block size). Setting the limit to 8192 should allow some room for growth while still helping people who mistakenly put in byte counts here instead of block counts.
* Diff reduction compared to portable bsdtar 2.8: Move thekientzle2010-02-0612-184/+271
| | | | | program name into a global, which eliminates an extra argument from a lot of places.
* Revert unwanted changes in revision 203422.rpaulo2010-02-061-3/+3
| | | | Spotted by: sam
* Add myself.bschmidt2010-02-061-0/+2
| | | | Approved by: rpaulo (mentor)
* - Cast intptr_t, pid_t and time_t values to intmax_t and use %jd withjh2010-02-061-16/+19
| | | | | | | | | printf. - Cast the system call return value to long and use %ld in a printf in ktrsysret(). PR: bin/123774 MFC after: 2 weeks
* Add missing coma.trasz2010-02-061-2/+2
|
* Propagate the vlan eventis to the underlying interfaces/members so they can ↵eri2010-02-062-0/+61
| | | | | | | | | do initialization of hw related features. PR: kern/141646 Reviewed by: thompsa Approved by: thompsa(co-mentor) MFC after: 2 weeks
* Add the -i option to the synopsis.gavin2010-02-061-2/+2
| | | | | Submitted by: dhw MFC after: 1 week (with r203310)
OpenPOWER on IntegriCloud