1
2#ifndef _LINUX_U64_STATS_SYNC_H
3#define _LINUX_U64_STATS_SYNC_H
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66#include <linux/seqlock.h>
67
68struct u64_stats_sync {
69#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
70 seqcount_t seq;
71#endif
72};
73
74#if BITS_PER_LONG == 64
75#include <asm/local64.h>
76
77typedef struct {
78 local64_t v;
79} u64_stats_t ;
80
81static inline u64 u64_stats_read(const u64_stats_t *p)
82{
83 return local64_read(&p->v);
84}
85
86static inline void u64_stats_set(u64_stats_t *p, u64 val)
87{
88 local64_set(&p->v, val);
89}
90
91static inline void u64_stats_add(u64_stats_t *p, unsigned long val)
92{
93 local64_add(val, &p->v);
94}
95
96static inline void u64_stats_inc(u64_stats_t *p)
97{
98 local64_inc(&p->v);
99}
100
101#else
102
103typedef struct {
104 u64 v;
105} u64_stats_t;
106
107static inline u64 u64_stats_read(const u64_stats_t *p)
108{
109 return p->v;
110}
111
112static inline void u64_stats_set(u64_stats_t *p, u64 val)
113{
114 p->v = val;
115}
116
117static inline void u64_stats_add(u64_stats_t *p, unsigned long val)
118{
119 p->v += val;
120}
121
122static inline void u64_stats_inc(u64_stats_t *p)
123{
124 p->v++;
125}
126#endif
127
128#if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
129#define u64_stats_init(syncp) seqcount_init(&(syncp)->seq)
130#else
131static inline void u64_stats_init(struct u64_stats_sync *syncp)
132{
133}
134#endif
135
136static inline void u64_stats_update_begin(struct u64_stats_sync *syncp)
137{
138#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
139 write_seqcount_begin(&syncp->seq);
140#endif
141}
142
143static inline void u64_stats_update_end(struct u64_stats_sync *syncp)
144{
145#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
146 write_seqcount_end(&syncp->seq);
147#endif
148}
149
150static inline unsigned long
151u64_stats_update_begin_irqsave(struct u64_stats_sync *syncp)
152{
153 unsigned long flags = 0;
154
155#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
156 local_irq_save(flags);
157 write_seqcount_begin(&syncp->seq);
158#endif
159 return flags;
160}
161
162static inline void
163u64_stats_update_end_irqrestore(struct u64_stats_sync *syncp,
164 unsigned long flags)
165{
166#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
167 write_seqcount_end(&syncp->seq);
168 local_irq_restore(flags);
169#endif
170}
171
172static inline unsigned int __u64_stats_fetch_begin(const struct u64_stats_sync *syncp)
173{
174#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
175 return read_seqcount_begin(&syncp->seq);
176#else
177 return 0;
178#endif
179}
180
181static inline unsigned int u64_stats_fetch_begin(const struct u64_stats_sync *syncp)
182{
183#if BITS_PER_LONG==32 && !defined(CONFIG_SMP)
184 preempt_disable();
185#endif
186 return __u64_stats_fetch_begin(syncp);
187}
188
189static inline bool __u64_stats_fetch_retry(const struct u64_stats_sync *syncp,
190 unsigned int start)
191{
192#if BITS_PER_LONG==32 && defined(CONFIG_SMP)
193 return read_seqcount_retry(&syncp->seq, start);
194#else
195 return false;
196#endif
197}
198
199static inline bool u64_stats_fetch_retry(const struct u64_stats_sync *syncp,
200 unsigned int start)
201{
202#if BITS_PER_LONG==32 && !defined(CONFIG_SMP)
203 preempt_enable();
204#endif
205 return __u64_stats_fetch_retry(syncp, start);
206}
207
208
209
210
211
212
213
214static inline unsigned int u64_stats_fetch_begin_irq(const struct u64_stats_sync *syncp)
215{
216#if BITS_PER_LONG==32 && !defined(CONFIG_SMP)
217 local_irq_disable();
218#endif
219 return __u64_stats_fetch_begin(syncp);
220}
221
222static inline bool u64_stats_fetch_retry_irq(const struct u64_stats_sync *syncp,
223 unsigned int start)
224{
225#if BITS_PER_LONG==32 && !defined(CONFIG_SMP)
226 local_irq_enable();
227#endif
228 return __u64_stats_fetch_retry(syncp, start);
229}
230
231#endif
232