created | 2018-11-29T15:12:17Z |
---|---|
begin | 2018-05-17T00:00:00Z |
end | 2018-05-18T00:00:00Z |
path | src/sys |
commits | 12 |
date | 2018-05-17T04:42:27Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/dev/pci/pcidevs | log | diff | annotate |
message | pci devices found on dell precision 7520 |
date | 2018-05-17T04:43:40Z | |||
---|---|---|---|---|
author | mlarkin | |||
files | src/sys/dev/pci/pcidevs.h | log | diff | annotate |
src/sys/dev/pci/pcidevs_data.h | log | diff | annotate | |
message | regen |
date | 2018-05-17T05:17:44Z | |||
---|---|---|---|---|
author | yasuoka | |||
files | src/sys/dev/pci/if_bge.c | log | diff | annotate |
message |
Fix iLO/IPMI remote access problem. At least for bge(4) network port which is shared with IPMI on HPE DL20 Gen9, its link state became down a while or never became active again. diff from FreeBSD through Naoki Fukaumi. https://svnweb.freebsd.org/base?view=revision&revision=248226 ok mpi dlg |
date | 2018-05-17T06:53:45Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/ic/bwfm.c | log | diff | annotate |
message |
Recent Broadcom chipsets have a dedicated PMU core and it can't be accessed using the Chipcommon core anymore. |
date | 2018-05-17T08:09:26Z | |||
---|---|---|---|---|
author | mikeb | |||
files | src/sys/arch/amd64/amd64/vmm.c | log | diff | annotate |
message | Make VMM_DEBUG kernels compile again; ok mlarkin |
date | 2018-05-17T09:22:18Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/dsdt.c | log | diff | annotate |
message |
Implement LoadTable(). ok mlarkin@ |
date | 2018-05-17T11:04:14Z | |||
---|---|---|---|---|
author | tb | |||
files | src/sys/net/if.c | log | diff | annotate |
message |
Move the handling of SIOCIFGCLONERS out of the NET_RLOCK(). The global &if_clone list and the if_cloners_count are currently protected by the KERNEL_LOCK(). Introduce the ifclonerslk rwlock to serialize access to these two globals as a small step towards removing the KERNEL_LOCK() from the ioctl path. While there, separate the two codepaths in if_clone_list() more clearly and replace a ternary operator with MIN(). guidance & ok mpi, ok visa |
date | 2018-05-17T11:25:11Z | |||
---|---|---|---|---|
author | helg | |||
files | src/sys/miscfs/fuse/fuse_device.c | log | diff | annotate |
src/sys/miscfs/fuse/fuse_vfsops.c | log | diff | annotate | |
src/sys/miscfs/fuse/fuse_vnops.c | log | diff | annotate | |
src/sys/miscfs/fuse/fusebuf.c | log | diff | annotate | |
message |
Pass size argument to free(9). ok mpi@ |
date | 2018-05-17T12:32:33Z | |||
---|---|---|---|---|
author | mikeb | |||
files | src/sys/dev/pv/if_hvn.c | log | diff | annotate |
message |
Let hvn_iff handle promisc mode activation Tested by Daniel Wade, |
date | 2018-05-17T20:21:15Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/acpi.c | log | diff | annotate |
src/sys/dev/acpi/acpivar.h | log | diff | annotate | |
src/sys/dev/acpi/amltypes.h | log | diff | annotate | |
src/sys/dev/acpi/dsdt.c | log | diff | annotate | |
src/sys/dev/acpi/dwiic_acpi.c | log | diff | annotate | |
message |
Implement GenericSerialBus OpRegion support. ok mlarkin@ |
date | 2018-05-17T20:46:45Z | |||
---|---|---|---|---|
author | kettenis | |||
files | src/sys/dev/acpi/acpi.c | log | diff | annotate |
src/sys/dev/acpi/dsdt.c | log | diff | annotate | |
message |
Sprinkle some #ifndef SMALL_KERNEL such that RAMDISK kernels cuild again. pointed out by stsp@ |
date | 2018-05-17T21:59:26Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/if_bwfm_sdio.c | log | diff | annotate |
message |
The Broadcom FullMAC firmware has a few ways of doing flow control. One of those is a sequence number based window mechanism. Essentially every packet on the SDIO bus has a sequence number. The chip records which sequence number we used last and when it sends us replies, it tells us the maximum sequence number it accepts. This means we can calculate a window of sequence numbers that we are allowed to use. With this I no longer overflow the chip's RX fifo and can do stable network transfers. |