On Tue, Dec 7, 2021 at 8:52 AM Peter Zijlstra <peterz@xxxxxxxxxxxxx> wrote: > > How about we do something like the unsafe_ uaccess functions and do it > like so? Look ok by me, but I'd suggest simply making both error cases labels in that case. If somebody wants to distinguish them, it's easy to do, and if not you can just use the same label. Yes, it's a bit unusual, but once you start using labels for the exceptional cases, why not do so consistently? In the case of "dec_and_test" the "decrement to zero" case may not be hugely exceptional, but if you do the same for "increment with overflow protection" you do end up having the two different "zero vs too big", so it would actually be more consistent, I think.. Linus