~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/sched_clock.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/sched_clock.h (Version linux-6.11-rc3) and /include/linux/sched_clock.h (Version linux-5.15.164)


  1 /* SPDX-License-Identifier: GPL-2.0-only */         1 /* SPDX-License-Identifier: GPL-2.0-only */
  2 /*                                                  2 /*
  3  * sched_clock.h: support for extending counte      3  * sched_clock.h: support for extending counters to full 64-bit ns counter
  4  */                                                 4  */
  5 #ifndef LINUX_SCHED_CLOCK                           5 #ifndef LINUX_SCHED_CLOCK
  6 #define LINUX_SCHED_CLOCK                           6 #define LINUX_SCHED_CLOCK
  7                                                     7 
  8 #include <linux/types.h>                       << 
  9                                                << 
 10 #ifdef CONFIG_GENERIC_SCHED_CLOCK                   8 #ifdef CONFIG_GENERIC_SCHED_CLOCK
 11 /**                                                 9 /**
 12  * struct clock_read_data - data required to r     10  * struct clock_read_data - data required to read from sched_clock()
 13  *                                                 11  *
 14  * @epoch_ns:           sched_clock() value at     12  * @epoch_ns:           sched_clock() value at last update
 15  * @epoch_cyc:          Clock cycle value at l     13  * @epoch_cyc:          Clock cycle value at last update.
 16  * @sched_clock_mask:   Bitmask for two's comp     14  * @sched_clock_mask:   Bitmask for two's complement subtraction of non 64bit
 17  *                      clocks.                    15  *                      clocks.
 18  * @read_sched_clock:   Current clock source (     16  * @read_sched_clock:   Current clock source (or dummy source when suspended).
 19  * @mult:               Multiplier for scaled      17  * @mult:               Multiplier for scaled math conversion.
 20  * @shift:              Shift value for scaled     18  * @shift:              Shift value for scaled math conversion.
 21  *                                                 19  *
 22  * Care must be taken when updating this struc     20  * Care must be taken when updating this structure; it is read by
 23  * some very hot code paths. It occupies <=40      21  * some very hot code paths. It occupies <=40 bytes and, when combined
 24  * with the seqcount used to synchronize acces     22  * with the seqcount used to synchronize access, comfortably fits into
 25  * a 64 byte cache line.                           23  * a 64 byte cache line.
 26  */                                                24  */
 27 struct clock_read_data {                           25 struct clock_read_data {
 28         u64 epoch_ns;                              26         u64 epoch_ns;
 29         u64 epoch_cyc;                             27         u64 epoch_cyc;
 30         u64 sched_clock_mask;                      28         u64 sched_clock_mask;
 31         u64 (*read_sched_clock)(void);             29         u64 (*read_sched_clock)(void);
 32         u32 mult;                                  30         u32 mult;
 33         u32 shift;                                 31         u32 shift;
 34 };                                                 32 };
 35                                                    33 
 36 extern struct clock_read_data *sched_clock_rea     34 extern struct clock_read_data *sched_clock_read_begin(unsigned int *seq);
 37 extern int sched_clock_read_retry(unsigned int     35 extern int sched_clock_read_retry(unsigned int seq);
 38                                                    36 
 39 extern void generic_sched_clock_init(void);        37 extern void generic_sched_clock_init(void);
 40                                                    38 
 41 extern void sched_clock_register(u64 (*read)(v     39 extern void sched_clock_register(u64 (*read)(void), int bits,
 42                                  unsigned long     40                                  unsigned long rate);
 43 #else                                              41 #else
 44 static inline void generic_sched_clock_init(vo     42 static inline void generic_sched_clock_init(void) { }
 45                                                    43 
 46 static inline void sched_clock_register(u64 (*     44 static inline void sched_clock_register(u64 (*read)(void), int bits,
 47                                         unsign     45                                         unsigned long rate)
 48 {                                                  46 {
 49 }                                                  47 }
 50 #endif                                             48 #endif
 51                                                    49 
 52 #endif                                             50 #endif
 53                                                    51 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php