Re: [PATCH] fuse: use min_t() instead of ternary operator
From: Miklos Szeredi
Date: Tue Jun 09 2026 - 10:55:45 EST
On Sun, 7 Jun 2026 at 19:58, Mahad Ibrahim <mahad.ibrahim.dev@xxxxxxxxx> wrote:
>
> Replace existing ternary operators for finding minimum value with min_t
> macro to adhere to kernel coding standards and improve readability.
Doesn't improve readability, on the contrary, it obfuscates the real
meaning (return error or zero).
Thanks,
Miklos