| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
| |
| |
| | |
PR: 73825
|
| |
| |
| |
| |
| |
| | |
PR: 76064
Submitted by: Gavin Atkinson <gavin.atkinson@ury.york.ac.uk> (original version)
Reviewed by: keramida (follow-up in the PR)
|
| |
| |
| |
| |
| | |
Xref config.8.
Bump doc date.
|
| |
| |
| |
| |
| |
| | |
Output more verbosity with additional -v's.
Submitted by: seanc
|
| |
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
Reviewed by: scottl
|
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
|
| |
| |
| |
| |
| |
| |
| | |
o nuke gratuitous null ptr check; softc can never be null in this routine
Noticed by: Coverity Prevent analysis tool
Reviewed by: mdodd
|
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
|
| |
| |
| |
| |
| |
| | |
eliminate grauitous ptr checks that follow ptr deref's
Noticed by: Coverity Prevent analysis tool
|
| |
| |
| |
| |
| | |
PR: 77437
Submitted by: Paul A. Hoadley <paulh@logicsquad.net> (original version)
|
| |
| |
| |
| |
| |
| |
| |
| | |
when trim'ing space off the back of a chain; this is indirect
solution to a potential null ptr deref
Noticed by: Coverity Prevent analysis tool (null ptr deref)
Reviewed by: dg, rwatson
|
| |
| |
| |
| |
| |
| |
| | |
page. They do not exist.
PR: 53303
Submitted by: Marc Silver <marcs@draenor.org> (original version)
|
| |
| |
| |
| |
| |
| |
| |
| | |
vn_extattr_rm. This is meant to catch conditions where IO_NODELOCKED
has been specified without the vnode being locked.
Discussed with: rwatson
MFC after: 1 week
|
| |
| |
| |
| | |
MFC after: 3 days
|
| |
| |
| |
| |
| | |
PR: 75774
Submitted by: Mike Meyer <mwm@mired.org> (original version)
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
object on to the zone allocator. It should be noted that uma_zalloc(9)
uses bzero to zero out the object so there probably wont be any
real performance benefit. If UMA grows the ability to supply
zeroed zones more efficiently in the future, we will not have to
modify all the existing consumers.
Discussed with: rwatson,julian
MFC after: 1 week
|
| |
| |
| |
| |
| |
| |
| |
| | |
attribute does not exist on the file.
-bump document date
Reviewed by: rwatson,trhodes
MFC after: 1 week
|
| |
| |
| |
| |
| |
| | |
- bump .Dd
MFC after: 3 days
|
| |
| |
| |
| |
| |
| | |
Note that unlink.2 can return EPERM if the immutable or append-only flags are set.
PR: 77043
|
| | |
|
| |
| |
| |
| |
| | |
PR: 55653
Submitted by: Tony Maher <tonymaher@optushome.com.au> (original version)
|
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
|
| |
| |
| |
| |
| |
| | |
below the DESCRIPTION section for consistency with the other manpages.
MFC after: 3 days
|
| |
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
Reviewed by: rwatson
|
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
|
| |
| |
| |
| |
| |
| |
| |
| | |
of some arguments.
PR: 47705
Based on a patch submitted by: Gary W. Swearingen <swear@attbi.com>
Glanced at by: simon
|
| |
| |
| |
| |
| |
| |
| | |
clean up some text, bump doc date.
PR: 47690
Submitted by: Gary W. Swearingen <swear@attbi.com> (original version)
|
| |
| |
| |
| |
| | |
PR: 76981
Submitted by: Lowell Gilbert <freebsd-bugs-local@be-well.ilk.org>
|
| |
| |
| |
| |
| | |
struct sockaddr_storage *, there's no point in casting it prematurely
to a struct sockaddr *. This unbreaks WARNS=6 on sparc64.
|
| | |
|
| | |
|
| |
| |
| |
| |
| | |
separate partition. (Take advantage of "make distribute"
installing /boot/device.hints.)
|
| |
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
Reviewed by: silby
|
| |
| |
| |
| |
| | |
Noticed by: Coverity Prevent analysis tool
Reviewed by: jhb
|
| |
| |
| |
| | |
hardware notes.
|
| |
| |
| |
| |
| |
| | |
- fix typo
MFC after: 3 days
|
| |
| |
| |
| | |
debug.mpsafevm enabled by default on alpha, amd64, and i386.
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- comment out feature, we do not have yet: tcpdumping on pfsync,
add a BUGS section
- reference carp.4
- dereference bpf(4), tcpdump(7), hostname.if(5)
- sort references
- tell when pfsync appeared in FreeBSD
Reviewed by: mlaier
MFC after: 1 week
|
| | |
|
| |
| |
| |
| | |
IPFIREWALL_FORWARD_EXTENDED kernel option.
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
and a machine-independent though inefficient InterlockedExchange().
In Windows, InterlockedExchange() appears to be implemented in header
files via inline assembly. I would prefer using an atomic.h macro for
this, but there doesn't seem to be one that just does a plain old
atomic exchange (as opposed to compare and exchange). Also implement
IoSetCancelRoutine(), which is just a macro that uses InterlockedExchange().
Fill in IoBuildSynchronousFsdRequest(), IoBuildAsynchronousFsdRequest()
and IoBuildDeviceIoControlRequest() so that they do something useful,
and add a bunch of #defines to ntoskrnl_var.h to help make these work.
These may require some tweaks later.
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| | |
a bugfix of clearing the On-Demand flag when going back to 100%. It
has been tested and works on an IBM R32. Note original work done by
Ted Unangst and sobomax@.
|
| |
| |
| |
| | |
SMP VFS enabled by default.
|
| |
| |
| |
| | |
Thanks to: markm
|
| |
| |
| |
| | |
add reference to carp(4) manual page.
|