Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-24 | init err to 0 in sd_get_parms to avoid confusion when checking rigid | David Gwynne | |
geometry. it doesnt matter waht the value there is cos rigid will be NULL, but this is clearer. | |||
2010-09-24 | remove useless store | David Gwynne | |
2010-09-24 | no use setting cmd in mfi_ioctl_setstate if you never use it. | David Gwynne | |
2010-09-24 | vol_list in mpi_get_raid is never used. | David Gwynne | |
2010-09-24 | kill some unused arguments to pf_create_state | Jonathan Gray | |
ok henning@ | |||
2010-09-24 | tsleep on a static and private handle, since our goal is to not be | Theo de Raadt | |
woken up by a wakeup, but only by the actual timeout expiry. On architectures which share a kva upage area between processes, we would not want an accidental wakeup (too short). discussed with various | |||
2010-09-24 | Now that HW_DISKNAMES returns xx0: or xx0:uid entries, we must truncate | Theo de Raadt | |
the : and uid components out -- otherwise these two programs will work poorly. | |||
2010-09-24 | fix a overflow found by parfait | Jonathan Gray | |
ok jakob@ | |||
2010-09-23 | When the HEAD of an .Nm block in the SYNOPSIS might be wider | Ingo Schwarze | |
than the column containing it, the TERMP_HANG flag is required, but avoid the flag when we know that the HEAD is shorter, because in that case, the flag might ruin the alignment. Problem originally reported by jmc@, who also spotted a regression in an earlier version of this patch. "feel free to commit" kristaps@ | |||
2010-09-23 | Count trailing escaped blanks correctly; | Ingo Schwarze | |
those ruined the alignment of columns. Tested by jmc@, and kristaps@ agrees with the direction. | |||
2010-09-23 | sync | Paul Irofti | |
2010-09-23 | Remove tn3270 reference. | Paul Irofti | |
2010-09-23 | Kill tn3270. | Paul Irofti | |
Okay deraadt@, millert@ and all around general approval. | |||
2010-09-23 | Unlink tn3270 from the build. | Paul Irofti | |
Okay deraadt@, millert@ and all around general approval. | |||
2010-09-23 | The only sensible argument for VOP_* calls that take a struct proc pointer is | Owain Ainsworth | |
curproc. A bunch of callers were passing in 0 (not even NULL, 0) as this pointer, which was fine until the called vnode function tried to do something with it. Typically, this code was then copy/pasted to various parts of the tree. Accept the facts of life and switch all of these over to passing curproc for now until the argument can be removed. Discovered by stsp trying to create a softraid on top of a vnd, which crashed with a NULL deref in vndioctl. softraid bits tested by mikeb and jsing. raidframe bits tested by pea, matthieu and naddy. The rest tested by at least thib, jsing and myself. ok thib@, jsing@. | |||
2010-09-23 | In procfs_root(), while the vn_lock on a newly-allocated vnode can not | Owain Ainsworth | |
fail it is still good practise to either check the return value or to provide a flag that won't (to avoid copy pasted code that gets it wrong). So change LK_EXCLUSIVE to LK_EXCLUSIVE | LK_RETRY, removing the one caller of vn_lock in the tree that doesn't either pass LK_RETRY or check the return value. ok thib@, jsing@ as part of a larger diff. | |||
2010-09-23 | Change: | Owain Ainsworth | |
/* something */ if (error) { VOP_UNLOCK(); return; } VOP_UNLOCK(); to the clearer and shorter: VOP_UNLOCK(); if (error) return; ok thib@, jsing@ as part of a larger diff. | |||
2010-09-23 | - first stab at documenting the haskell module | Jasper Lievisse Adriaanse | |
feedback/ok kili@ | |||
2010-09-23 | document FSTAB_RQ; ok deraadt thib | Jason McIntyre | |
2010-09-23 | Add cvs_mkdir() for recursive directory creation on import, based on a | Nicholas Marriott | |
diff from Michael W Bombardieri in PR 6398. tested by & ok jasper | |||
2010-09-23 | Plug memory leak in rcs_getrev, from zinovik. | Nicholas Marriott | |
ok me stsp | |||
2010-09-23 | tweak the disklabel uid stuff; ok jsing | Jason McIntyre | |
2010-09-23 | remove dying flag in the detach() function. | Yojiro Uo | |
the device driver which has DEACTIVATE processing seems to no need to set dying flag in the detach() function because the flag will be set in the DEACTIVATE process before detach(). ok jsg@, ok for experiment deraadt@ | |||
2010-09-23 | remove m_pad in favor of m_inject as it's equivalent to m_inject | Mike Belopuhov | |
with an offset equal to the actual data length. ok henning blambert | |||
2010-09-23 | enable utwitch(4) (formely uyurex(4)) by default | Yojiro Uo | |
ok deraadt@ | |||
2010-09-23 | tweak previous; | Jason McIntyre | |
2010-09-23 | NOTES->CAVEATS; ok millert | Jason McIntyre | |
2010-09-23 | add RCSID and Mdocdate to these pages; ok millert | Jason McIntyre | |
2010-09-23 | since msgs no longer exists, replace the example msgs alias with the one | Jason McIntyre | |
from vacation(8); ok millert | |||
2010-09-23 | add EXIT STATUS here too; | Jason McIntyre | |
2010-09-23 | rename uyurex(4) to utwitch(4). | Yojiro Uo | |
ok deraadt@ | |||
2010-09-23 | rename uyurex(4) to utwitch(4) | Yojiro Uo | |
ok deraadt@ | |||
2010-09-23 | "British defeat the French at the Plains of Abraham" was 1759, not 1788; | Jason McIntyre | |
from Douglas Berry, freebsd pr misc/150504 | |||
2010-09-23 | use an EXIT STATUS section for these pages; | Jason McIntyre | |
2010-09-23 | Break out rule counter update code into a separate function, makes the | Ryan Thomas McBride | |
behaviour consistent between IPv4 and IPv6. From martin.pelikan@gmail.com | |||
2010-09-23 | Move clock attachment later in the game. This is needed for cpu scaling. | Paul Irofti | |
Okay miod@. | |||
2010-09-23 | update struct disk; ok jsing | Jason McIntyre | |
2010-09-23 | Correctly identify mount points when they are specified in /etc/fstab using | Joel Sing | |
a disklabel UID. Based on a diff from josh@elsasser.org. Resolves PR6471. ok krw@ | |||
2010-09-23 | Print disklabel UIDs using printf/fprintf instead of using the hand rolled | Joel Sing | |
uid_print() function. ok krw@ | |||
2010-09-23 | add KexAlgorithms to the -o list; | Jason McIntyre | |
2010-09-23 | add [-l limit] to usage(); | Jason McIntyre | |
2010-09-23 | Teach the installer how to process the new hw.disknames output. | Joel Sing | |
ok krw@ | |||
2010-09-23 | Include the disklabel UID in hw.disknames. | Joel Sing | |
ok deraadt@ krw@ | |||
2010-09-23 | When a disk is attached create a workq task to read the disklabel, | Joel Sing | |
providing the DKF_NOLABELREAD flag is not set. This provides the kernel with the actual disklabel which includes the disklabel UID. ok deraadt@ miod@ krw@ | |||
2010-09-23 | Introduce a DKF_NOLABELREAD flag, which is used by a device to prevent | Joel Sing | |
automatic reading of disklabel on attach. ok deraadt@ miod@ krw@ | |||
2010-09-23 | translate WRITE SAME 16 into DSM TRIM. | David Gwynne | |
2010-09-23 | change description for AES-GMAC a bit. | Mike Belopuhov | |
prompted by reyk | |||
2010-09-23 | support for aes-gcm | Mike Belopuhov | |
OK reyk | |||
2010-09-23 | commands and bits for data set management. | David Gwynne | |
2010-09-23 | fix indentation to not confusingly align with an unassociated while() statement | Bret Lambert | |
ok claudio@ |