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

TOMOYO Linux Cross Reference
Linux/arch/sparc/include/asm/vvar.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 ] ~

  1 /*
  2  * Copyright (c) 2017 Oracle and/or its affiliates. All rights reserved.
  3  */
  4 
  5 #ifndef _ASM_SPARC_VVAR_DATA_H
  6 #define _ASM_SPARC_VVAR_DATA_H
  7 
  8 #include <asm/clocksource.h>
  9 #include <asm/processor.h>
 10 #include <asm/barrier.h>
 11 #include <linux/time.h>
 12 #include <linux/types.h>
 13 
 14 struct vvar_data {
 15         unsigned int seq;
 16 
 17         int vclock_mode;
 18         struct { /* extract of a clocksource struct */
 19                 u64     cycle_last;
 20                 u64     mask;
 21                 int     mult;
 22                 int     shift;
 23         } clock;
 24         /* open coded 'struct timespec' */
 25         u64             wall_time_sec;
 26         u64             wall_time_snsec;
 27         u64             monotonic_time_snsec;
 28         u64             monotonic_time_sec;
 29         u64             monotonic_time_coarse_sec;
 30         u64             monotonic_time_coarse_nsec;
 31         u64             wall_time_coarse_sec;
 32         u64             wall_time_coarse_nsec;
 33 
 34         int             tz_minuteswest;
 35         int             tz_dsttime;
 36 };
 37 
 38 extern struct vvar_data *vvar_data;
 39 extern int vdso_fix_stick;
 40 
 41 static inline unsigned int vvar_read_begin(const struct vvar_data *s)
 42 {
 43         unsigned int ret;
 44 
 45 repeat:
 46         ret = READ_ONCE(s->seq);
 47         if (unlikely(ret & 1)) {
 48                 cpu_relax();
 49                 goto repeat;
 50         }
 51         smp_rmb(); /* Finish all reads before we return seq */
 52         return ret;
 53 }
 54 
 55 static inline int vvar_read_retry(const struct vvar_data *s,
 56                                         unsigned int start)
 57 {
 58         smp_rmb(); /* Finish all reads before checking the value of seq */
 59         return unlikely(s->seq != start);
 60 }
 61 
 62 static inline void vvar_write_begin(struct vvar_data *s)
 63 {
 64         ++s->seq;
 65         smp_wmb(); /* Makes sure that increment of seq is reflected */
 66 }
 67 
 68 static inline void vvar_write_end(struct vvar_data *s)
 69 {
 70         smp_wmb(); /* Makes the value of seq current before we increment */
 71         ++s->seq;
 72 }
 73 
 74 
 75 #endif /* _ASM_SPARC_VVAR_DATA_H */
 76 

~ [ 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