summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix Tx/Rx checksum offload ioctl handling and make Rx handler honoryongari2008-11-251-9/+26
| | | | | | | checksum offload configuration. Now checksum offload can be controlled by ifconfig(8). While I'm here add an additional check for interface capabilities before applying user's request.
* Make fxp(4) build with FXP_IP_CSUM_WAR.yongari2008-11-251-2/+2
|
* Sort head files and removed ununsed header file.yongari2008-11-251-13/+9
|
* Fix various whitespace botches, mostly having them at the end of a line.imp2008-11-251-15/+13
|
* Whitespace fix.yongari2008-11-253-25/+25
|
* Add support for Marvell PATA M88SX6121.rpaulo2008-11-252-0/+2
| | | | | | PR: 129154 Submitted by: João Barros <joao.barros at gmail.com> MFC after: 1 month
* Replace disclaimer with the one from COPYRIGHT. Joint authors aggreedimp2008-11-253-30/+33
| | | | to the change.
* Replace three magic constants with L1_S_SIZE, since that's what isimp2008-11-251-3/+3
| | | | really meant in those places.
* Tweak the disclaimer section of the license to match COPYRIGHT, forimp2008-11-2527-270/+298
| | | | | better or worse. Ok'd by folks that have additional copyrights to the files in cases where there's joint authorship.
* Correct typo in comment: thier -> theiremaste2008-11-241-1/+1
|
* Restore sfence semantics in mxge after the introductiongallatin2008-11-242-25/+25
| | | | of a global mfence based mb() in r185162
* Make sure arc4random(9) is properly seeded when /etc/rc.d/initrandom returns.cperciva2008-11-242-3/+24
| | | | | | Approved by: so (cperciva) Approved by: re (kensmith) Security: FreeBSD-SA-08:11.arc4random
* use consistent stylesam2008-11-241-10/+8
|
* This actually works on Linux, I just had wrong directory permission.pjd2008-11-241-4/+0
| | | | Found by: trasz
* Include TODO messages even if tests succeeds, so we can detect when somethingpjd2008-11-241-6/+18
| | | | suddenly started to work.
* Change the universe target to warn the user for every world or kernel thatdes2008-11-241-8/+14
| | | | | | | fails. The error message includes a reference to the relevant log file. Approved by: phk MFC after: 1 week
* Correction: these PMCs do not support a "umask" modifier.jkoshy2008-11-243-9/+0
|
* - Document the rules used to determine when spellings of eventsjkoshy2008-11-241-16/+24
| | | | | are equivalent. - Reorder text to make the manual page more coherent.
* Save the value read from TX queue CSR, so we don't test against ayongari2008-11-241-1/+1
| | | | | | stale one. Submitted by: sephe
* print the extended tx/rx descriptor for 5416 and later partssam2008-11-241-9/+32
|
* nuke special handling of RXORN interrupt; the hal marks the FATALsam2008-11-242-17/+4
| | | | | bit in the interrupt status when RXORN is hit and the chip requires a reset so our special handling was causing useless resets
* Document ale(4).delphij2008-11-242-0/+5
|
* Fixed style issues with variable ordering and naming, spacing andscf2008-11-232-77/+99
| | | | | | | | | | | | | | | | | parentheses. Fixed alignment issue in gr_dup() in its assignment of gr_mem using a struct to force alignment without performing alignment mathematics. This was noticed recently with libutil was built with WARNS=6 on platform such as sparc64. Added checks to gr_dup(), gr_equal() and gr_make() to prevent segfaults when examining struct group's with the struct members pointing to NULL's. With fix of alignment issue, restore WARNS?=6. Reviewed by: des MFC after: 1 week
* Remove DELAY() on hdac_audio_commit().mav2008-11-231-1/+0
| | | | I don't see the reason why it is needed.
* Eliminate an unused variable reported by coverityimp2008-11-231-4/+2
| | | | Submitted by: Ganbold
* It's possible that the dump device has gone away after it wasdwmalone2008-11-231-1/+1
| | | | | | | | configured, change the message to let people know this is a possibility. I've slightly changed the message from the one submitted by Pekka to keep the printf on one line. Submitted by: Pekka Savola <pekkas@netcore.fi>
* Make the new CCEQ macro a little more like the old one - first dodwmalone2008-11-231-1/+1
| | | | | | | | | the comparison between c and val and then compare val to _POSIX_VDISABLE. This avoids comparing c (which is usually of type char) to _POSIX_VDISABLE (which has value 0xff and may not be representable as a char). Reviewed by: ed
* Add a test for r185231.stefanf2008-11-231-0/+9
|
* Fix $? at the first command of a function. The previous exit status was savedstefanf2008-11-231-0/+1
| | | | twice and thus lost.
* Do not use soft PCM volume for digital outputs to allow SPDIF AC3 bypassmav2008-11-231-4/+8
| | | | to work. Soft PCM volume (and vchans) unable to bypass AC3 stream now.
* Mark all the places where Linux is not POSIX-compilant. Tested on ext3.pjd2008-11-233-0/+8
|
* Don't use PRIV_ROOT. Here we check if user can share ZFS file system, sopjd2008-11-231-2/+1
| | | | | | PRIV_NFS_DAEMON seems best choice. Discussed with: rwatson
* fstest for Linux:pjd2008-11-239-56/+53
| | | | | | | - Use -- when needed so Linux getopt(3) won't get confused. - Follow POSIX more closely. Submitted by: Szabolcs Szakacsits <szaka@ntfs-3g.org>
* Remove vfs_mountedon(9) manual page. The vfs_mountedon(9) has beenhrs2008-11-232-78/+0
| | | | removed since 2004.
* Strictly differentiate digital and analog PCM devices according to codecmav2008-11-232-58/+91
| | | | | | | nodes capabilities. Add "Analog"/"Digital" marks to the pcm device names. I hope it will help new users easier accept concept of several PCM devices and understand exact purposes of that devices.
* vn_fullpath(9) does not assume vp is locked by the caller now.hrs2008-11-231-3/+3
|
* fstest for Linux:pjd2008-11-231-2/+26
| | | | Automatically detect file system type.
* FreeBSD's way of handling rmdir("..") is not POSIX-compilant.pjd2008-11-231-9/+3
|
* Shorter version.pjd2008-11-231-14/+4
|
* Add support for pathconf(2).pjd2008-11-231-1/+57
|
* Detect operating system automatically.pjd2008-11-231-5/+21
|
* Enhance the explanation of using filesystem-specific mount optionskeramida2008-11-231-3/+28
| | | | | | | | | | | in /etc/fstab. We do support passing special options on a per filesystem type basis, like `-u UID -g GID' for mount_msdosfs, but the syntax of these options in fstab is non-obvious and a lot of users have asked about it. PR: docs/128816 Submitted by: Roland Smith, rsmith at xs4all dot nl MFC after: 2 days
* fstest for Linux:pjd2008-11-231-4/+27
| | | | | - Use /dev/urandom, it is more portable. - Implement todo() function which allows to mark known failures.
* Report card erase sector size as disk stripe size.mav2008-11-231-0/+2
|
* Improve detach handling: close races, flush queue.mav2008-11-231-13/+16
|
* Implement -T option as found in Linux df(1). When given, file system typepjd2008-11-232-7/+19
| | | | | | | will be included in output. Reviewed and tested by: keramida MFC after: 2 weeks
* Add backward compatibility ifdefs for non-multiq kernelskmacy2008-11-233-2/+29
|
* correct sortingsam2008-11-231-1/+1
|
* work around periodic leak on queue overrun by enabling coalescing of packets ↵kmacy2008-11-231-1/+1
| | | | | | in to work requests by default
* buf_ring_peek should return NULL if the ring is empty rather thankmacy2008-11-231-1/+4
| | | | whatever happened to be at cons_tail last time it was in use
OpenPOWER on IntegriCloud