Message ID | 1468487590-12571-1-git-send-email-czuzu@bitdefender.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 14/07/16 10:13, Corneliu ZUZU wrote: > This wouldn't let me make a param of a function that used atomic_read() const. > > Signed-off-by: Corneliu ZUZU <czuzu@bitdefender.com> > Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> You have dropped a Reviewed-by: Stefano Stabellini <sstabellini@kernel.org> from v2. ~Andrew
On 7/14/2016 12:26 PM, Andrew Cooper wrote: > On 14/07/16 10:13, Corneliu ZUZU wrote: >> This wouldn't let me make a param of a function that used atomic_read() const. >> >> Signed-off-by: Corneliu ZUZU <czuzu@bitdefender.com> >> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> > You have dropped a Reviewed-by: Stefano Stabellini > <sstabellini@kernel.org> from v2. > > ~Andrew > Intentionally dropped, he reviewed the empty line fixes in ARM atomic.h - which were now moved to 1/8 (which includes Reviewed-by: [...]). Zuzu C.
On 7/14/2016 12:26 PM, Andrew Cooper wrote: > On 14/07/16 10:13, Corneliu ZUZU wrote: >> This wouldn't let me make a param of a function that used atomic_read() const. >> >> Signed-off-by: Corneliu ZUZU <czuzu@bitdefender.com> >> Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com> > You have dropped a Reviewed-by: Stefano Stabellini > <sstabellini@kernel.org> from v2. > > ~Andrew Oh, that's right, sorry. Zuzu C.
diff --git a/xen/include/asm-arm/atomic.h b/xen/include/asm-arm/atomic.h index a79420a..78dad29 100644 --- a/xen/include/asm-arm/atomic.h +++ b/xen/include/asm-arm/atomic.h @@ -102,7 +102,7 @@ void __bad_atomic_size(void); * strex/ldrex monitor on some implementations. The reason we can use it for * atomic_set() is the clrex or dummy strex done on every exception return. */ -static inline int atomic_read(atomic_t *v) +static inline int atomic_read(const atomic_t *v) { return *(volatile int *)&v->counter; } diff --git a/xen/include/asm-x86/atomic.h b/xen/include/asm-x86/atomic.h index 3e99b03..1729e29 100644 --- a/xen/include/asm-x86/atomic.h +++ b/xen/include/asm-x86/atomic.h @@ -80,7 +80,7 @@ void __bad_atomic_size(void); } \ }) -static inline int atomic_read(atomic_t *v) +static inline int atomic_read(const atomic_t *v) { return read_atomic(&v->counter); } diff --git a/xen/include/xen/atomic.h b/xen/include/xen/atomic.h index d072912..6827468 100644 --- a/xen/include/xen/atomic.h +++ b/xen/include/xen/atomic.h @@ -32,7 +32,7 @@ typedef struct { int counter; } atomic_t; * * Atomically reads the value of @v. */ -static inline int atomic_read(atomic_t *v); +static inline int atomic_read(const atomic_t *v); /** * _atomic_read - read atomic variable non-atomically