| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
| |
PR: docs/151104
Submitted by: Aldis Berjoza <aldis@bsdroot.lv>
MFC after: 3 days
|
|
|
|
|
|
| |
PR: docs/153542
Submitted by: Eitan Adler <lists@eitanadler.com>
MFC after: 3 days
|
|
|
|
|
|
| |
PR: 154500
Submitted by: Ruslan Mahmatkhanov <cvs-src at yandex.ru>
Approved by: rwatson
|
|
|
|
|
|
|
|
|
|
|
| |
- Allocate coherent DMA memory for the request/response queue area and
and the FC scratch area.
These changes allow isp(4) to work properly on sparc64 with usage of the
IOMMU streaming buffers enabled.
Approved by: mjacob
MFC after: 2 weeks
|
| |
|
|
|
|
|
| |
error mask is > 5 bits) and add some extra CRC/HT40/ShortGI counters to
help debug 802.11n issues.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Catch a set vnet upon return to user space. This usually
means return paths with CURVNET_RESTORE() missing.
If VNET_DEBUG is turned on we can even tell the function
that did the CURVNET_SET() which is really helpful; else
we print "N/A".
Sponsored by: The FreeBSD Foundation
Sponsored by: CK Software GmbH
Reviewed by: jhb
MFC after: 11 days
|
|
|
|
| |
Reviewed by: jhb, mdf
|
| |
|
|
|
|
|
|
|
| |
paranoia limit to the size of the ACPI_RESOURCE as well.
Reviewd by: jhb (in spirit)
MFC after: 1 week
|
|
|
|
| |
style fixes.
|
|
|
|
|
|
|
| |
unit number.
Suggested by: jh
MFC after: 3 days
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
While updating Tx stats, already freed node could be referred and cause
page fault. To avoid such panic, spool Tx stats in driver's softc. Then,
on every ratectl interval, grab node though ieee80211_iterate_nodes() and
update ratectl stats.
* Simplify some code in run_iter_func().
* Fix typo
* Use memset instead of bzero (hselasky @)
PR: kern/153938
Submitted by: PseudoCylon <moonlightakkiy@yahoo.ca>
Approved by: thompsa (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The algorithm is supposed to work as follows:
in order to prevent starvation, when a new client starts being served we
record the start time and reset the counter of bytes served.
We then switch to a new client after a certain amount of time or bytes,
even if the current one still has pending requests.
To avoid charging a new client the time of the first seek,
we start counting time when the first request is served.
Unfortunately a bug in the previous version of the code failed
to set the start time in certain cases, resulting in some processes
exceeding their timeslice.
The fix (in this patch) is trivial, though it took a while to find
out and replicate the bug.
Thanks to Tommaso Caprai for investigating and fixing the problem.
Submitted by: Tommaso Caprai
MFC after: 1 week
|
| |
|
|
|
|
| |
merges.
|
|
|
|
|
|
|
|
| |
mentioning that vnode lock is needed.
Reviewed by: alc
Tested by: pho
MFC after: 1 week
|
| |
|
| |
|
|
|
|
| |
to map and use the msgbuf.
|
|
|
|
|
|
|
| |
functions to obtain the address and size of the preloaded pool
configuration file/repository.
Sponsored by: Juniper Networks.
|
|
|
|
|
|
| |
functions to obtain the address and size of the preloaded key files.
Sponsored by: Juniper Networks.
|
|
|
|
|
|
| |
functions to obtain the address and size of the PCI vendor data.
Sponsored by: Juniper Networks.
|
|
|
|
|
|
| |
functions to obtain the address and size of the bitmap splash image.
Sponsored by: Juniper Networks.
|
|
|
|
|
|
| |
functions to obtain the address and size of the overriding DSDT.
Sponsored by: Juniper Networks.
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
PR: bin/144300
Submitted by: arundel
MFC after: 3 days
|
|
|
|
|
| |
PR: bin/137702
MFC after: 3 days
|
|
|
|
| |
Otherwise, REQUEUE operations fails.
|
|
|
|
| |
MFC after: 1 month
|
| |
|
|
|
|
|
|
|
|
| |
at the Univ-of-Del. Basically when a 1-to-1 socket did a
socket/bind/send(data)/close. If the timing was right
we would dereference a socket that is NULL.
MFC after: 1 month
|
|
|
|
|
|
|
|
|
| |
object's size field. Previously, that field was always zero, even
when the object tn_reg.tn_aobj contained numerous pages.
Apply style fixes to tmpfs_reg_resize().
In collaboration with: kib
|
|
|
|
|
| |
Obtained from: Robin Seggelmann
MFC after: 3 months.
|
|
|
|
| |
* add in printing futureBase
|
|
|
|
|
|
|
|
|
| |
Marcus von Appen (mva@) (mentor: beech, miwi)
Dennis Herrmann (dhn@) (mentor: tabthorpe, miwi)
Brendan Fabeny (bf@) (mentor: makc, miwi)
Kris Moore (kmoore@) (mentor: brooks, miwi)
Sylvio Cesar Teixeira <sylvio@> (mentor: itetcu, miwi)
Lars Engels (lme) (mentor: miwi)
|
|
|
|
|
|
| |
my last commit (r218627). No damage was done in the last
commit, just some duplicated code was added (which is now
removed).
|
|
|
|
|
|
| |
routing table.
Reviewed by: julian
|
|
|
|
|
| |
This overflows and on some architectures such as amd64 it generates SIGFPE.
Generate an error on all architectures.
|
|
|
|
|
|
|
|
|
|
|
|
| |
cause OpenSSL to parse past the end of the message.
Note: Applications are only affected if they act as a server and call
SSL_CTX_set_tlsext_status_cb on the server's SSL_CTX. This includes
Apache httpd >= 2.3.3, if configured with "SSLUseStapling On".
Security: http://www.openssl.org/news/secadv_20110208.txt
Security: CVE-2011-0014
Obtained from: OpenSSL CVS
|
|
|
|
| |
Approved by: thompsa (mentor)
|
|
|
|
| |
Reimplement used_requeue logic with LINUX_XDEPR_REQUEUEOP flag.
|
|
|
|
|
|
|
|
| |
easy to forget about icmp. Update the file to show allowing icmp through
the firewall.
PR: docs/144986
MFC after: 1 month
|
|
|
|
|
|
| |
PR: docs/131625
Submitted by: Andrew Wright <andrew at qemg.org>
MFC after: 1 month
|
|
|
|
|
|
| |
1) Remove bogus error checking.
2) A new process exit from kernel through fork_trampoline(),
so remove bogus check.
|
| |
|
| |
|
|
|
|
| |
introduce linux_set_upcall_kse().
|