On 3/16/2025 10:32 PM, Andrew Morton wrote: > The quilt patch titled > Subject: libceph: convert timeouts to secs_to_jiffies() > has been removed from the -mm tree. Its filename was > libceph-convert-timeouts-to-secs_to_jiffies.patch > > This patch was dropped because it was merged into the mm-nonmm-stable branch > of git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm > > ------------------------------------------------------ > From: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> > Subject: libceph: convert timeouts to secs_to_jiffies() > Date: Tue, 25 Feb 2025 20:17:21 +0000 > > Commit b35108a51cf7 ("jiffies: Define secs_to_jiffies()") introduced > secs_to_jiffies(). As the value here is a multiple of 1000, use > secs_to_jiffies() instead of msecs_to_jiffies() to avoid the > multiplication > > This is converted using scripts/coccinelle/misc/secs_to_jiffies.cocci with > the following Coccinelle rules: > > @depends on patch@ expression E; @@ > > -msecs_to_jiffies(E * 1000) > +secs_to_jiffies(E) > > @depends on patch@ expression E; @@ > > -msecs_to_jiffies(E * MSEC_PER_SEC) > +secs_to_jiffies(E) > > While here, remove the no-longer necessary checks for range since there's > no multiplication involved. > > Link: https://lkml.kernel.org/r/20250225-converge-secs-to-jiffies-part-two-v3-7-a43967e36c88@xxxxxxxxxxxxxxxxxxx > Signed-off-by: Easwar Hariharan <eahariha@xxxxxxxxxxxxxxxxxxx> > Acked-by: Ilya Dryomov <idryomov@xxxxxxxxx> Hi Andrew, Please drop this patch as requested here: https://lore.kernel.org/all/d5035d88-f714-47c2-ace6-8bd609d84633@xxxxxxxxxxxxxxxxxxx/ Also, the scsi: lpfc patch was also queued by Martin: https://web.git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git/commit/?id=a131f20804d6 <snip> Thanks, Easwar