Re: [PATCH 09/16] xfs: convert timeouts to secs_to_jiffies()
From: Christoph Hellwig
Date: Wed Jan 29 2025 - 00:21:41 EST
On Tue, Jan 28, 2025 at 06:21:54PM +0000, Easwar Hariharan wrote:
> else
> - cfg->retry_timeout = msecs_to_jiffies(
> - init[i].retry_timeout * MSEC_PER_SEC);
> + cfg->retry_timeout = secs_to_jiffies(init[i].retry_timeout);
This messes up the formatting by introducing an overly long line.
Otherwise the change looks fine.