Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.16-rc1 32 lines 636 B view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/// 3/// Find usages of: 4/// - msecs_to_jiffies(value*1000) 5/// - msecs_to_jiffies(value*MSEC_PER_SEC) 6/// 7// Confidence: High 8// Copyright: (C) 2024 Easwar Hariharan, Microsoft 9// Keywords: secs, seconds, jiffies 10// 11 12virtual patch 13 14@depends on patch@ constant C; @@ 15 16- msecs_to_jiffies(C * 1000) 17+ secs_to_jiffies(C) 18 19@depends on patch@ constant C; @@ 20 21- msecs_to_jiffies(C * MSEC_PER_SEC) 22+ secs_to_jiffies(C) 23 24@depends on patch@ expression E; @@ 25 26- msecs_to_jiffies(E * 1000) 27+ secs_to_jiffies(E) 28 29@depends on patch@ expression E; @@ 30 31- msecs_to_jiffies(E * MSEC_PER_SEC) 32+ secs_to_jiffies(E)