created | 2019-05-08T04:35:32Z |
---|---|
begin | 2018-01-14T00:00:00Z |
end | 2018-01-15T00:00:00Z |
path | src/sys |
commits | 3 |
date | 2018-01-14T00:33:09Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/arch/amd64/amd64/powernow-k8.c | log | diff | annotate |
message |
Use signed values to compare absolute difference. The variables fid and cfid are signed, so the FID_TO_VCO_FID() macro creates signed results. Keep the sign when passing to abs() although the implicit conversions created the same binary. OK deraadt@ |
date | 2018-01-14T11:51:34Z | |||
---|---|---|---|---|
author | stsp | |||
files | src/sys/dev/pci/if_iwm.c | log | diff | annotate |
message |
Pass our currently configured SSID to iwm(4) scan commands. This makes connecting to silly "hidden" networks work, which was a long standing problem with iwm(4). My past observations where other SSIDs were filtered from scan results while associated can no longer be reproduced. ok robert phessler |
date | 2018-01-14T20:15:37Z | |||
---|---|---|---|---|
author | bluhm | |||
files | src/sys/arch/amd64/amd64/ucode.c | log | diff | annotate |
message |
Make cpu_ucode_debug non static so it can be changed from ddb. OK patrick@ |