created | 2018-11-29T23:58:16Z |
---|---|
begin | 2018-07-16T00:00:00Z |
end | 2018-07-17T00:00:00Z |
path | src/sys |
commits | 11 |
date | 2018-07-16T07:48:17Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/dev/usb/xhci.c | log | diff | annotate |
message | typos, from Michael W. Bombardieri. |
date | 2018-07-16T07:49:31Z | |||
---|---|---|---|---|
author | mpi | |||
files | src/sys/netinet/ip_ipcomp.c | log | diff | annotate |
message |
Fix for uninitialized variables. Found by and ok jsg@, ok markus@ |
date | 2018-07-16T08:53:44Z | |||
---|---|---|---|---|
author | jsg | |||
files | src/sys/arch/socppc/socppc/machdep.c | log | diff | annotate |
message |
make this build again after changes made in rev 1.74 ok mpi@ phessler@ |
date | 2018-07-16T11:52:26Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/ic/bwfm.c | log | diff | annotate |
message |
Re-set the pointer to the bwfm event after the strict alignment check. |
date | 2018-07-16T12:34:14Z | |||
---|---|---|---|---|
author | phessler | |||
files | src/sys/net80211/ieee80211_node.c | log | diff | annotate |
message |
don't save or use auto-join when the card is not in station (aka client) mode OK stsp@ |
date | 2018-07-16T12:42:22Z | |||
---|---|---|---|---|
author | phessler | |||
files | src/sys/net80211/ieee80211_node.c | log | diff | annotate |
message |
the AP sends their crypto parameters as a mask, so let us still select it in case we want WPA2 and they have WPA1 still enabled |
date | 2018-07-16T13:10:53Z | |||
---|---|---|---|---|
author | helg | |||
files | src/sys/miscfs/fuse/fuse_vnops.c | log | diff | annotate |
src/sys/miscfs/fuse/fusefs.h | log | diff | annotate | |
message |
Implement FBT_FSYNC, which is called on fsync(2) and fdatasync(2). Currently ignores the a_waitfor argument and always invokes the file system's fsync implementation synchronously. ok mpi@ |
date | 2018-07-16T13:41:19Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/if_bwfm_sdio.c | log | diff | annotate |
message |
In certain modes SDIO-connected bwfm(4) chips might expect us to read another packet (even though nextlen is set to none) to issue more RX interrupts. |
date | 2018-07-16T13:46:17Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/ic/bwfm.c | log | diff | annotate |
src/sys/dev/sdmmc/if_bwfm_sdio.c | log | diff | annotate | |
message | Add support for the BCM43455 SDIO chip to bwfm(4). |
date | 2018-07-16T16:44:09Z | |||
---|---|---|---|---|
author | helg | |||
files | src/sys/miscfs/fuse/fuse_vfsops.c | log | diff | annotate |
src/sys/miscfs/fuse/fuse_vnops.c | log | diff | annotate | |
src/sys/uvm/uvm_vnode.c | log | diff | annotate | |
message |
Insert the appropriate uvm_vnp_uncache(9) and uvm_vnp_setsize(9) kernel calls to ensure that the UVM cache for memory mapped files is up to date. ok mpi@ |
date | 2018-07-16T16:54:30Z | |||
---|---|---|---|---|
author | jasper | |||
files | src/sys/net/if_pflow.c | log | diff | annotate |
message |
use 'switch' rathan than an if-else construct to match on the netflow version to in pflow_get_mbuf(), to match the rest of the file ok benno@ florian@ |