created | 2018-11-29T16:31:17Z |
---|---|
begin | 2018-05-25T00:00:00Z |
end | 2018-05-26T00:00:00Z |
path | src/sys |
commits | 4 |
date | 2018-05-25T00:04:11Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/fdt/imxesdhc.c | log | diff | annotate |
message |
For SDIO multi-blocks we must not use the AUTO CMD12 feature, this is only for memory card read/writes. ok kettenis@ |
date | 2018-05-25T00:04:12Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/sdhc.c | log | diff | annotate |
message |
For SDIO multi-blocks we must not use the AUTO CMD12 feature, this is only for memory card read/writes. ok kettenis@ |
date | 2018-05-25T00:12:53Z | |||
---|---|---|---|---|
author | patrick | |||
files | src/sys/dev/sdmmc/sdmmc_io.c | log | diff | annotate |
src/sys/dev/sdmmc/sdmmc_ioreg.h | log | diff | annotate | |
message |
So far the SDIO stack issued one transfer for every 64 byte to be copied. This severely limits the speed over the bus. By using block mode we can issue block-sized transfers, which bumps the transfer size to at least 512 bytes. By using multi-block mode we can copy up to 511 blocks per transfer. ok kettenis@ |
date | 2018-05-25T06:05:08Z | |||
---|---|---|---|---|
author | tb | |||
files | src/sys/netinet/in.c | log | diff | annotate |
message |
Prepare in_ioctl() for further refactoring with the goal of merging the two big switches in this function. Error out early in the default case without grabbing the NET_LOCK() and move SIOCSIFNETMASK a bit up. This will reduce the noise in an upcoming diff. ok visa |