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.14 22 lines 452 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)