Andy Grover
Andy Grover
in blockdev read_mdax(), we give up if the newest mda data fails crc. We should also look at the tail copy, maybe it is ok.
Right now, blockdev setup() reads metadata from the start of disk and returns an error if the crc is invalid. We should enhance this to read and try the tail...
we want to enable it. to control the TLER (time limited error recovery) behavior
Background: I have a Midi Fighter Twister (16 combination encoders/buttons) that I have fully configured using Flexi to change 16 different values and also as 16 different buttons. But I'd...
Since iter::Sum and iter::Product have been in stable since 1.12, we can move NewtypeSum and NewtypeProduct from std_unstable.rs to lib.rs. Signed-off-by: Andy Grover
fixes #392
Currently on the Komplete Kontrol mk1, when you have a device selected and hit Browse, it attempts to add a new device after the current one. Pressing shift-Browse attempts to...
Being able to deref a `Sectors`, `Datablocks`, or `MetaBlocks` is a hatch for getting around additional (mostly arithmetic) traits being unimplemented for these newtypes. It may be better to add...
If the cmsg buffer is too small, MSG_CTRUNC will be set in the header flags. This should be checked before returning `CmsgIterator`, or else the iterator might return invalid data.
What we have now is the thing we did that was fast to implement, rather than a fully thought-out implementation. We should improve our algorithm, when possible. from https://github.com/mozilla/neqo/pull/726#discussion_r440584070: >...