On Tue, 2018-09-25 at 11:15 +0900, Masashi Honma wrote: > Use array_index_nospec() to sanitize i with respect to speculation. I applied the first patch in the seies, but I don't understand why this patch should be necessary. The value of i isn't controlled by the user, so it shouldn't need to be sanitized? The context was *just* missing, added by me: for (i = 0; i < n; i++) > if (last < wdev->cqm_config->rssi_thresholds[i]) > break; This loop determines i, and the user doesn't even control "last", but even if they did, the possible values of i could only end up being in the range 0..n-1, so no problems? johannes