Re: [PATCH 00/16] Converge on using secs_to_jiffies() part two

2025-02-13 Thread Easwar Hariharan
On 1/28/2025 4:16 PM, Andrew Morton wrote: > On Tue, 28 Jan 2025 18:21:45 + Easwar Hariharan > wrote: > >> This is the second series (part 1*) that converts users of >> msecs_to_jiffies() that >> either use the multiply pattern of either of: >> - msecs_to_jiffies(N*1000) or >> - msecs_to_ji

Re: [PATCH 00/16] Converge on using secs_to_jiffies() part two

2025-01-28 Thread Andrew Morton
On Tue, 28 Jan 2025 18:21:45 + Easwar Hariharan wrote: > This is the second series (part 1*) that converts users of msecs_to_jiffies() > that > either use the multiply pattern of either of: > - msecs_to_jiffies(N*1000) or > - msecs_to_jiffies(N*MSEC_PER_SEC) > > where N is a constant or an

[PATCH 00/16] Converge on using secs_to_jiffies() part two

2025-01-28 Thread Easwar Hariharan
This is the second series (part 1*) that converts users of msecs_to_jiffies() that either use the multiply pattern of either of: - msecs_to_jiffies(N*1000) or - msecs_to_jiffies(N*MSEC_PER_SEC) where N is a constant or an expression, to avoid the multiplication. The conversion is made with Cocci