Select the types of activity you want to include in your feed.
Add update_col and delete_col to csvt
Typed column updates: decode → transform → re-encode a specific column by name. delete_col removes a column from header and row. 4 new tests (50 total).
···216216 /* AMD Ryzen 3000 bug where RDRAND always returns -1
217217 https://arstechnica.com/gadgets/2019/10/how-a-months-old-amd-microcode-bug-destroyed-my-weekend/ */
218218 for (int i = 0; i < 10; i++)
219219- if (_rdrand_step(&r) == 1 && r != (random_t) (-1)) {
219219+ if (_rdrand_step(&r) == 1 && r != (random_t) (-1) && r != 0) {
220220 __cpu_rng = RNG_RDRAND;
221221 break;
222222 }
223223224224 if (mc_detected_cpu_features.rdseed)
225225- /* RDSEED could return -1, thus we test it here
225225+ /* RDSEED could return -1 or stuck-at-zero, thus we test it here
226226 https://www.reddit.com/r/Amd/comments/cmza34/agesa_1003_abb_fixes_rdrandrdseed/ */
227227 for (int i = 0; i < 100; i++)
228228- if (_rdseed_step(&r) == 1 && r != (random_t) (-1)) {
228228+ if (_rdseed_step(&r) == 1 && r != (random_t) (-1) && r != 0) {
229229 __cpu_rng |= RNG_RDSEED;
230230 break;
231231 }