From: Easwar Hariharan <eahariha@linux.microsoft.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: eahariha@linux.microsoft.com,
"Yaron Avizrat" <yaron.avizrat@intel.com>,
"Oded Gabbay" <ogabbay@kernel.org>,
"Julia Lawall" <Julia.Lawall@inria.fr>,
"Nicolas Palix" <nicolas.palix@imag.fr>,
"James Smart" <james.smart@broadcom.com>,
"Dick Kennedy" <dick.kennedy@broadcom.com>,
"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
"Jaroslav Kysela" <perex@perex.cz>,
"Takashi Iwai" <tiwai@suse.com>, "Chris Mason" <clm@fb.com>,
"Josef Bacik" <josef@toxicpanda.com>,
"David Sterba" <dsterba@suse.com>,
"Ilya Dryomov" <idryomov@gmail.com>,
"Dongsheng Yang" <dongsheng.yang@easystack.cn>,
"Jens Axboe" <axboe@kernel.dk>, "Xiubo Li" <xiubli@redhat.com>,
"Damien Le Moal" <dlemoal@kernel.org>,
"Niklas Cassel" <cassel@kernel.org>,
"Carlos Maiolino" <cem@kernel.org>,
"Darrick J. Wong" <djwong@kernel.org>,
"Sebastian Reichel" <sre@kernel.org>,
"Keith Busch" <kbusch@kernel.org>,
"Christoph Hellwig" <hch@lst.de>,
"Sagi Grimberg" <sagi@grimberg.me>, "Frank Li" <Frank.Li@nxp.com>,
"Mark Brown" <broonie@kernel.org>,
"Shawn Guo" <shawnguo@kernel.org>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Pengutronix Kernel Team" <kernel@pengutronix.de>,
"Fabio Estevam" <festevam@gmail.com>,
"Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>,
"Hans de Goede" <hdegoede@redhat.com>,
"Ilpo Järvinen" <ilpo.jarvinen@linux.intel.com>,
"Henrique de Moraes Holschuh" <hmh@hmh.eng.br>,
"Selvin Xavier" <selvin.xavier@broadcom.com>,
"Kalesh AP" <kalesh-anakkur.purayil@broadcom.com>,
"Jason Gunthorpe" <jgg@ziepe.ca>,
"Leon Romanovsky" <leon@kernel.org>,
cocci@inria.fr, linux-kernel@vger.kernel.org,
linux-scsi@vger.kernel.org, dri-devel@lists.freedesktop.org,
linux-sound@vger.kernel.org, linux-btrfs@vger.kernel.org,
ceph-devel@vger.kernel.org, linux-block@vger.kernel.org,
linux-ide@vger.kernel.org, linux-xfs@vger.kernel.org,
linux-pm@vger.kernel.org, linux-nvme@lists.infradead.org,
linux-spi@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
platform-driver-x86@vger.kernel.org,
ibm-acpi-devel@lists.sourceforge.net, linux-rdma@vger.kernel.org,
"Thomas Gleixner" <tglx@linutronix.de>
Subject: Re: [PATCH 00/16] Converge on using secs_to_jiffies() part two
Date: Thu, 13 Feb 2025 09:45:41 -0800 [thread overview]
Message-ID: <8f80b65e-724c-439c-a094-4bfbb1e296f1@linux.microsoft.com> (raw)
In-Reply-To: <20250128161643.289d9fe705ef2fdba0b82a52@linux-foundation.org>
On 1/28/2025 4:16 PM, Andrew Morton wrote:
> On Tue, 28 Jan 2025 18:21:45 +0000 Easwar Hariharan <eahariha@linux.microsoft.com> 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 expression, to avoid the multiplication.
>>
>> The conversion is made with Coccinelle with the secs_to_jiffies() script
>> in scripts/coccinelle/misc. Attention is paid to what the best change
>> can be rather than restricting to what the tool provides.
>>
>> Andrew has kindly agreed to take the series through mm.git modulo the
>> patches maintainers want to pick through their own trees.
>
> I added patches 2-16 to mm.git. If any of these later get merged into
> a subsystem tree, Stephen will tell us and I'll drop the mm.git copy.
Hi Andrew, I don't see these in mm-nonmm-unstable. Did these get dropped in the confusion around
casting secs_to_jiffies() to unsigned long[1]? That has since been merged in 6.14-rc2 via tglx' tree,
and I have a v2 for just the ceph patches that needed some fixups at [2].
[1] https://lore.kernel.org/all/20250130192701.99626-1-eahariha@linux.microsoft.com/
[2] https://lore.kernel.org/all/20250203-converge-secs-to-jiffies-part-two-v2-0-d7058a01fd0e@linux.microsoft.com/
Thanks,
Easwar (he/him)
prev parent reply other threads:[~2025-02-13 17:45 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-01-28 18:21 [PATCH 00/16] Converge on using secs_to_jiffies() part two Easwar Hariharan
2025-01-28 18:21 ` [PATCH 01/16] coccinelle: misc: secs_to_jiffies: Patch expressions too Easwar Hariharan
2025-01-28 21:02 ` Markus Elfring
2025-01-29 5:05 ` Easwar Hariharan
2025-01-29 9:40 ` [01/16] " Markus Elfring
2025-01-30 11:01 ` [PATCH 01/16] " Markus Elfring
2025-02-01 0:11 ` Easwar Hariharan
2025-02-03 7:22 ` [01/16] " Markus Elfring
2025-01-28 18:21 ` [PATCH 02/16] scsi: lpfc: convert timeouts to secs_to_jiffies() Easwar Hariharan
2025-01-28 18:21 ` [PATCH 03/16] accel/habanalabs: " Easwar Hariharan
2025-01-28 18:21 ` [PATCH 04/16] ALSA: ac97: " Easwar Hariharan
2025-01-29 9:46 ` Takashi Iwai
2025-01-28 18:21 ` [PATCH 05/16] btrfs: " Easwar Hariharan
2025-01-28 19:28 ` David Sterba
2025-01-28 18:21 ` [PATCH 06/16] rbd: " Easwar Hariharan
2025-01-29 21:03 ` Easwar Hariharan
2025-02-03 21:19 ` Ilya Dryomov
2025-01-28 18:21 ` [PATCH 07/16] libceph: " Easwar Hariharan
2025-01-28 18:21 ` [PATCH 08/16] libata: zpodd: " Easwar Hariharan
2025-01-29 0:21 ` Damien Le Moal
2025-01-29 17:36 ` Easwar Hariharan
2025-01-28 18:21 ` [PATCH 09/16] xfs: " Easwar Hariharan
2025-01-28 19:32 ` Darrick J. Wong
2025-01-29 5:21 ` Christoph Hellwig
2025-01-29 17:12 ` Easwar Hariharan
2025-01-29 18:14 ` Easwar Hariharan
2025-01-29 6:27 ` Carlos Maiolino
2025-01-28 18:21 ` [PATCH 10/16] power: supply: da9030: " Easwar Hariharan
2025-01-28 18:21 ` [PATCH 11/16] nvme: " Easwar Hariharan
2025-01-28 18:28 ` Keith Busch
2025-01-28 18:21 ` [PATCH 12/16] spi: spi-fsl-lpspi: " Easwar Hariharan
2025-01-29 11:28 ` Mark Brown
2025-01-28 18:21 ` [PATCH 13/16] spi: spi-imx: " Easwar Hariharan
2025-01-29 11:30 ` Mark Brown
2025-01-28 18:21 ` [PATCH 14/16] platform/x86/amd/pmf: " Easwar Hariharan
2025-01-29 13:12 ` Ilpo Järvinen
2025-01-29 17:12 ` Easwar Hariharan
2025-01-28 18:22 ` [PATCH 15/16] platform/x86: thinkpad_acpi: " Easwar Hariharan
2025-01-28 18:22 ` [PATCH 16/16] RDMA/bnxt_re: " Easwar Hariharan
2025-01-29 0:16 ` [PATCH 00/16] Converge on using secs_to_jiffies() part two Andrew Morton
2025-02-13 17:45 ` Easwar Hariharan [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8f80b65e-724c-439c-a094-4bfbb1e296f1@linux.microsoft.com \
--to=eahariha@linux.microsoft.com \
--cc=Frank.Li@nxp.com \
--cc=James.Bottomley@HansenPartnership.com \
--cc=Julia.Lawall@inria.fr \
--cc=Shyam-sundar.S-k@amd.com \
--cc=akpm@linux-foundation.org \
--cc=axboe@kernel.dk \
--cc=broonie@kernel.org \
--cc=cassel@kernel.org \
--cc=cem@kernel.org \
--cc=ceph-devel@vger.kernel.org \
--cc=clm@fb.com \
--cc=cocci@inria.fr \
--cc=dick.kennedy@broadcom.com \
--cc=djwong@kernel.org \
--cc=dlemoal@kernel.org \
--cc=dongsheng.yang@easystack.cn \
--cc=dri-devel@lists.freedesktop.org \
--cc=dsterba@suse.com \
--cc=festevam@gmail.com \
--cc=hch@lst.de \
--cc=hdegoede@redhat.com \
--cc=hmh@hmh.eng.br \
--cc=ibm-acpi-devel@lists.sourceforge.net \
--cc=idryomov@gmail.com \
--cc=ilpo.jarvinen@linux.intel.com \
--cc=imx@lists.linux.dev \
--cc=james.smart@broadcom.com \
--cc=jgg@ziepe.ca \
--cc=josef@toxicpanda.com \
--cc=kalesh-anakkur.purayil@broadcom.com \
--cc=kbusch@kernel.org \
--cc=kernel@pengutronix.de \
--cc=leon@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-block@vger.kernel.org \
--cc=linux-btrfs@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-nvme@lists.infradead.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-rdma@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux-spi@vger.kernel.org \
--cc=linux-xfs@vger.kernel.org \
--cc=martin.petersen@oracle.com \
--cc=nicolas.palix@imag.fr \
--cc=ogabbay@kernel.org \
--cc=perex@perex.cz \
--cc=platform-driver-x86@vger.kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=sagi@grimberg.me \
--cc=selvin.xavier@broadcom.com \
--cc=shawnguo@kernel.org \
--cc=sre@kernel.org \
--cc=tglx@linutronix.de \
--cc=tiwai@suse.com \
--cc=xiubli@redhat.com \
--cc=yaron.avizrat@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).