committer filter by committer.
@path/to/ filter by path in repository.
committer@path/to/ filter by committer AND path in repository.
abdef0123 filter by commit's SHA hash.
rNNN filter by SVN revision.
rNNN-rMMM filter by SVN revisions range (inclusive).
Multiple filters can be specified separated by spaces or comas in which case they'll be combined using OR operator.
223cb0e4 | trasz | Dec. 12, 2016, 3:22 p.m. | Avoid dereferencing NULL pointers in devtoname(). I've seen it panic, | |
7d9082ca | jchandra | Dec. 12, 2016, 3:17 p.m. | Increase interrupt cells in generic_pcie_fdt_route_interrupt
ARM GIC specification in device trees use 3 cells, so the current limit of 2 causes the last cell to be dropped. This in turn can cause the interrupt polarity and trigger settings to be incorrect. Increase the limit to 4 which should handle all reasonable cases. This fixes issues seen in QEMU when registering PCI interrupts.cgit ViewVC |
|
8a030e9c | ae | Dec. 12, 2016, 11:26 a.m. | Modify IPv6 statistic accounting in ip6_input(). | |
778aa66a | kib | Dec. 12, 2016, 11:12 a.m. | Enable lookup_cap_dotdot and lookup_cap_dotdot_nonlocal.
Requested and reviewed by: cem Sponsored by: The FreeBSD Foundation MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D8746cgit ViewVC |
|
545d3122 | kib | Dec. 12, 2016, 11:11 a.m. | When a zombie gets reparented due to the parent exit, send SIGCHLD to
the reaper. The traditional reaper init(8) is aware of zombies silently reparented to it after the parents exit, it loops around waitpid(2) to collect them. For other reapers, the silent reparenting is surprising and collecting zombies requires a thread blocking in waitpid(2) just for that purpose. It seems that sending second SIGCHLD is a better workaround than forcing all reapers to obey the setup. Reported by: Michael Zuo <muh.muhten@gmail.com>, jilles PR: 213928 Reviewed by: jilles (previous version) Sponsored by: The FreeBSD Foundation MFC after: 2 weekscgit ViewVC |
|
5a1842a2 | ae | Dec. 12, 2016, 10:57 a.m. | Add ip6_tryforward() - a run to completion forwarding implementation
for IPv6. It gets performance benefits from reduced number of checks. It doesn't copy mbuf to be able send ICMPv6 error message, because it keeps mbuf unchanged until the moment, when the route decision has been made. It doesn't do IPsec checks, and when some IPsec security policies present, ip6_input() uses normal slow path. Reviewed by: bz, gnn Obtained from: Yandex LLC MFC after: 1 month Sponsored by: Yandex LLC Differential Revision: https://reviews.freebsd.org/D8527cgit ViewVC |
|
6c1204df | sephe | Dec. 12, 2016, 5:18 a.m. | hyperv/hn: Add polling support
MFC after: 1 week Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D8739cgit ViewVC |
|
b99113a1 | sephe | Dec. 12, 2016, 5:04 a.m. | hyperv/vmbus: Add channel polling support.
MFC after: 1 week Sponsored by: Microsoft Differential Revision: https://reviews.freebsd.org/D8738cgit ViewVC |
|
27150ef8 | pfg | Dec. 12, 2016, 3:46 a.m. | ed(1): Prevent possible overflows during allocation. | |
63ecfce8 | ngie | Dec. 12, 2016, 2:21 a.m. | Merge changes from vendor to address several Coverity issues with | |
f428c3b1 | ngie | Dec. 12, 2016, 2:12 a.m. | Merge PR to address libarchive/test coverity issues | |
48de4541 | ngie | Dec. 12, 2016, 2:11 a.m. | Merge PR to address tar/test coverity issues | |
373c7178 | ngie | Dec. 12, 2016, 2:09 a.m. | Free p (the memory allocated via slurpfile) when done with the contents | |
b6ff6724 | hiren | Dec. 11, 2016, 11:14 p.m. | We currently don't do TSO if ip options are present. In case of IPv6, we look at
in6p_options to check that. That is incorrect as we carry ip options in in6p_outputopts. Also, just checking for in6p_outputopts being NULL won't suffice as we combine ip options and ip header fields both in that one field. The commit fixes this by using ip6_optlen() which correctly calculates length of only ip options for IPv6. Reviewed by: ae, bz MFC after: 3 weeks Sponsored by: Limelight Networkscgit ViewVC |
|
2823b646 | mav | Dec. 11, 2016, 7:50 p.m. | Postpone ZVOL media/block size caching till first open.
At least on FreeBSD there are no legal way to access media or get its size without opening device/provider first. Postponing this caching allows to skip several disk seeks per ZVOL/snapshot during import. For HDD pool with 1 ZVOL in dev mode with 1000 snapshots this reduces pool import time from 40 to 10 seconds. MFC after: 2 weeks Sponsored by: iXsystems, Inc.cgit ViewVC |