created | 2021-08-14T23:59:18Z |
---|---|
begin | 2021-08-09T00:00:00Z |
end | 2021-08-10T00:00:00Z |
path | src/sys |
commits | 5 |
date | 2021-08-09T07:21:48Z | |||
---|---|---|---|---|
author | jmatthew | |||
files | src/sys/dev/usb/if_aue.c | log | diff | annotate |
src/sys/dev/usb/if_udav.c | log | diff | annotate | |
src/sys/dev/usb/if_ugl.c | log | diff | annotate | |
src/sys/dev/usb/if_upl.c | log | diff | annotate | |
src/sys/dev/usb/if_url.c | log | diff | annotate | |
src/sys/dev/usb/if_wi_usb.c | log | diff | annotate | |
message |
Fix up flags passed to usbd_open_pipe_intr() - interrupt pipes are always opened exclusively, and the flags argument is passed to usbd_setup_xfer(). USBD_EXCLUSIVE_USE has the same value as USBD_NO_COPY, which means that data transferred would not be copied to the buffer where the driver expects it. None of these drivers actually used the interrupt data for anything, and in some the interrupt pipe code was #if 0'd out, so this doesn't change anything, but fixing this up prevents unwary developers like me from copying code that doesn't work. ok mglocker@ |
date | 2021-08-09T12:59:53Z | |||
---|---|---|---|---|
author | kevlo | |||
files | src/sys/dev/pci/azalia.c | log | diff | annotate |
message |
If an error during attach caused us to detach our resources, don't do anything on shutdown. This fixes a panic that was reported by me on X1 Extreme Gen 1. ok ratchov@ |
date | 2021-08-09T16:06:31Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/tcp_input.c | log | diff | annotate |
message | Fix white spaces. |
date | 2021-08-09T17:03:08Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/netinet/tcp_input.c | log | diff | annotate |
message |
During unidirectional data transmission, a TCP connection may stall. The sending machine is doing zero window probes, but is not sending any more data although the other machine announced that it has space again. The header prediction code did not update snd_wl2. If there was a sequence number wrap, the send window update block is not reached. Update snd_wl2 when receiving predicted ACKs and and update snd_wl1 and rcv_up for predicted pure data. from FreeBSD; OK sashan@ claudio@ |
date | 2021-08-09T18:13:09Z | |||
---|---|---|---|---|
author | jan | |||
files | src/sys/dev/pci/if_vmx.c | log | diff | annotate |
message |
Remove useless code. The driver_data is ignored by the host system. Set the pointer to all 1s as linux do. OK patrick@ |