Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Properly move the setting of bstp_linkstate_p to the bridgestp module. | thompsa | 2007-03-14 | 2 | -2/+1 |
| | |||||
* | Fix markup and reword a sentence to actually make sense. | brueffer | 2007-03-14 | 1 | -3/+3 |
| | |||||
* | Only enter the debugger on a Fatal op if this is a debug build of the | njl | 2007-03-14 | 1 | -1/+3 |
| | | | | | | | acpi module. Also clean up print of args a little. This was accidentally committed as 1.9.2.3 in the stable branch. Since it is harmless, I will let the "insta-MFC" stand unless there is a problem. | ||||
* | Update a comment: Rather than suggesting suser(), suggest priv(9) for | rwatson | 2007-03-14 | 1 | -2/+2 |
| | | | | checking privilege. | ||||
* | Map the second CS of the compact flash too. This allow us access to | jhay | 2007-03-14 | 2 | -4/+20 |
| | | | | | | | | the alternate status and the control registers. Remove the local version of ata_reset. Add support for the ADI Pronghorn Metro boards. They use CS3 and CS4 instead of Avila's CS1 and CS2. | ||||
* | Rename sed.test to multitest.t to comply with the naming scheme of | dds | 2007-03-14 | 2 | -473/+1 |
| | | | | the regression suite. | ||||
* | Repo-copy from sed.test to comply with the naming scheme of | dds | 2007-03-14 | 0 | -0/+0 |
| | | | | | | the regression suite. Copied-by: simon@ | ||||
* | Disable linking in of firmware on ia64 to avoid build failures from a | kmacy | 2007-03-14 | 1 | -3/+6 |
| | | | | broken ld. | ||||
* | Map the second CS of the compact flash too. This allow us access to | jhay | 2007-03-14 | 1 | -113/+82 |
| | | | | | | | | | | the alternate status and the control registers. Remove the local version of ata_reset. Add support for the ADI Pronghorn Metro boards. They use CS3 and CS4 instead of Avila's CS1 and CS2. OKed by: sam, cognet | ||||
* | fix braino in markup. | julian | 2007-03-14 | 1 | -1/+1 |
| | |||||
* | #define L1_CACHE_BYTES for non-x86 | kmacy | 2007-03-14 | 1 | -0/+1 |
| | |||||
* | define prefetch as a no-op macro for non-x86 arches | kmacy | 2007-03-14 | 1 | -6/+3 |
| | |||||
* | Let vlan_ioctl() pass some work on to ether_ioctl() | yar | 2007-03-14 | 1 | -25/+1 |
| | | | | and so reduce code duplication a bit. | ||||
* | Test files repo-copied into tools/regression/usr.bin/sed and integrated | dds | 2007-03-14 | 3 | -1098/+0 |
| | | | | into the regression testing framework. | ||||
* | Reinstate error-testing regression tests. | dds | 2007-03-14 | 33 | -78/+107 |
| | |||||
* | Remove obsolete polling members from documentation for struct ifnet. | bms | 2007-03-14 | 1 | -11/+1 |
| | | | | | Submitted by: Aniruddha Bohra MFC after: 5 days | ||||
* | Don't deny mounting for jailed processes immediately, allow | pjd | 2007-03-14 | 1 | -3/+1 |
| | | | | | | | | | prison_priv_check() to decide what to do. This change is suppose not to change current (security) behaviour in any way. Reviewed by: rwatson | ||||
* | Integrate the tests I wrote in 1992 with our current regression | dds | 2007-03-14 | 3 | -130/+111 |
| | | | | testing framework and protocol. | ||||
* | White space nits. | pjd | 2007-03-14 | 1 | -16/+14 |
| | |||||
* | Reference results for sed.test (to be renamed into multitest.t). | dds | 2007-03-14 | 90 | -0/+4210 |
| | | | | | | | | | I have verified these with GNU sed 4.1.5 (and in some cases with Solaris sed) and they are identical, with the following exceptions: 5.3: The result is unspecified and BSD sed behaves differently. 6.3: GNU sed gets it wrong 7.1: GNU sed gets it wrong 7.8: BSD sed gets it wrong | ||||
* | - Uncomment tests that were commented out | dds | 2007-03-14 | 2 | -172/+84 |
| | | | | | - Update platform-conditional tests to reflect current reality - Fix conditional for test 7.8: it is the fault of BSD sed | ||||
* | Autogenerate the hardware list for cxgb(4). | brueffer | 2007-03-14 | 2 | -0/+3 |
| | |||||
* | - It looks like BSD and GNU sed can nowadays pass two more tests. | dds | 2007-03-14 | 2 | -14/+8 |
| | | | | - Test 7.8 fails for GNU sed not BSD. | ||||
* | Use another non-printing test; address 0 now has a special meaning in GNU sed. | dds | 2007-03-14 | 2 | -4/+4 |
| | |||||
* | Document a procedure for testing individual binaries under development. | dds | 2007-03-14 | 1 | -0/+6 |
| | |||||
* | Update tests to reflect the state of the art of sed in HEAD and | dds | 2007-03-14 | 2 | -90/+38 |
| | | | | | | GNU sed 4.1.5. Almost all of the tests that were skipped for BSD or GNU sed now appear to work. | ||||
* | Implement fine-grained locking for UFS quotas. | kib | 2007-03-14 | 3 | -142/+493 |
| | | | | | | | | | | | | | | | | | | | Each struct dquot gets dq_lock mutex to protect dq_flags and to interlock with DQ_LOCK. qhash, dqfreelist and dq.dq_cnt are protected by global dqhlock mutex. i_dquot array for inode is protected by lockmgr' vnode lock, corresponding assert added to the dqget(). Access to struct ufsmount quota-related fields (um_quotas and um_qflags) is protected by um_lock. Tested by: Peter Holm Reviewed by: tegge Approved by: re (kensmith) This work were not possible without enormous amount of help given by Tor Egge and Peter Holm. Tor reviewed each version of patch, pointed out numerous errors and provided invaluable suggestions. Peter did tireless testing of the patch as it was developed. | ||||
* | Call getinoquota() before allocating new block for the directory to properly | kib | 2007-03-14 | 1 | -0/+8 |
| | | | | | | | | account for block allocation. Tested by: Peter Holm Reviewed by: tegge Approved by: re (kensmith) | ||||
* | Remove unneeded getinoquota() call in the ufs_access(). | kib | 2007-03-14 | 1 | -4/+0 |
| | | | | | | Tested by: Peter Holm Reviewed by: tegge Approved by: re (kensmith) | ||||
* | Busy filesystem around call of VFS_QUOTACTL() vfs op. | kib | 2007-03-14 | 1 | -6/+7 |
| | | | | | | Tested by: Peter Holm Reviewed by: tegge Approved by: re (kensmith) | ||||
* | Add missing punctuation. | brueffer | 2007-03-14 | 1 | -2/+2 |
| | |||||
* | play it safe for now and go back to kicking off tx cleaning from the tx path | kmacy | 2007-03-14 | 1 | -2/+10 |
| | |||||
* | Add sed math regression test. | dds | 2007-03-14 | 2 | -1/+3 |
| | |||||
* | Add Towers of Hanoi regression test. | dds | 2007-03-14 | 2 | -1/+19 |
| | |||||
* | fix wording blunder | kmacy | 2007-03-14 | 1 | -1/+1 |
| | |||||
* | Various fixes, also the driver can be compiled into the kernel now. | brueffer | 2007-03-14 | 1 | -11/+12 |
| | |||||
* | Repo-copy from usr.bin/sed/TEST for integration with the regression suite. | dds | 2007-03-14 | 0 | -0/+0 |
| | | | | Copied-by: simon@ | ||||
* | Reduce the risk of inducing heart attacks, by printing the right path when | cperciva | 2007-03-14 | 1 | -1/+1 |
| | | | | | | | | complaining about lstat(2) failing. It's a bit scary to find the message tar: /: Cannot stat: No such file or directory printed while doing a backup. MFC after: 1 week | ||||
* | Add missing newline to correct failure of the regression test. | dds | 2007-03-14 | 1 | -1/+1 |
| | | | | | | | | | According to IEEE Std 1003.1, 2004 "Whenever the pattern space is written to standard output or a named file, sed shall immediately follow it with a <newline>." An attempt at the same correction might have been made with r1.3, which is however identical with r1.2. | ||||
* | Add support for statically compiling cxgb into the kernel | kmacy | 2007-03-14 | 2 | -0/+10 |
| | |||||
* | no-op cxgb_config.h for the module compilation case | kmacy | 2007-03-14 | 1 | -1/+1 |
| | |||||
* | #define memory barrier macros for the non-i386 && non-amd64 case | kmacy | 2007-03-14 | 1 | -1/+5 |
| | |||||
* | remove unused code for recycling descriptors | kmacy | 2007-03-14 | 1 | -87/+8 |
| | | | | kick tx cleaner from credit update function | ||||
* | add cxgb_config.h to define values that are defined in the Makefile when ↵ | kmacy | 2007-03-14 | 2 | -0/+60 |
| | | | | | | | | compiled as a module move prefetch out of cxgb_sge.c into header under arch conditional compilation | ||||
* | move taskqueue_enqueue of tx clean operation out of the start path | kmacy | 2007-03-14 | 1 | -8/+2 |
| | |||||
* | make desc_reclaimable macro safe to arbitrary arguments | kmacy | 2007-03-14 | 1 | -1/+1 |
| | |||||
* | More suggestions from pjd. | julian | 2007-03-14 | 1 | -2/+13 |
| | |||||
* | Some comments from pjd | julian | 2007-03-14 | 1 | -4/+4 |
| | |||||
* | Don't call isp_intr from isp_start- this seems to, in rare cases, | mjacob | 2007-03-14 | 1 | -7/+1 |
| | | | | | | | cause confusion with at least the 23XX chipsets where the output queue index pointer just gets a bit whacko. MFC after: 1 day | ||||
* | Add man page for cxgb | kmacy | 2007-03-14 | 2 | -0/+133 |
| |