Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F105757709
D18450.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D18450.diff
View Options
Index: head/sys/arm/include/atomic.h
===================================================================
--- head/sys/arm/include/atomic.h
+++ head/sys/arm/include/atomic.h
@@ -55,6 +55,13 @@
#include <machine/atomic-v4.h>
#endif /* Arch >= v6 */
+static __inline u_long
+atomic_swap_long(volatile u_long *p, u_long v)
+{
+
+ return (atomic_swap_32((volatile uint32_t *)p, v));
+}
+
#define atomic_clear_ptr atomic_clear_32
#define atomic_clear_acq_ptr atomic_clear_acq_32
#define atomic_clear_rel_ptr atomic_clear_rel_32
Index: head/sys/mips/include/atomic.h
===================================================================
--- head/sys/mips/include/atomic.h
+++ head/sys/mips/include/atomic.h
@@ -755,4 +755,68 @@
#define atomic_store_rel_ptr atomic_store_rel_long
#define atomic_readandclear_ptr atomic_readandclear_long
+static __inline unsigned int
+atomic_swap_int(volatile unsigned int *ptr, const unsigned int value)
+{
+ unsigned int retval;
+
+ retval = *ptr;
+
+ while (!atomic_fcmpset_int(ptr, &retval, value))
+ ;
+ return (retval);
+}
+
+static __inline uint32_t
+atomic_swap_32(volatile uint32_t *ptr, const uint32_t value)
+{
+ uint32_t retval;
+
+ retval = *ptr;
+
+ while (!atomic_fcmpset_32(ptr, &retval, value))
+ ;
+ return (retval);
+}
+
+#if defined(__mips_n64) || defined(__mips_n32)
+static __inline uint64_t
+atomic_swap_64(volatile uint64_t *ptr, const uint64_t value)
+{
+ uint64_t retval;
+
+ retval = *ptr;
+
+ while (!atomic_fcmpset_64(ptr, &retval, value))
+ ;
+ return (retval);
+}
+#endif
+
+static __inline unsigned long
+atomic_swap_long(volatile unsigned long *ptr, const unsigned long value)
+{
+ unsigned long retval;
+
+ retval = *ptr;
+
+ while (!atomic_fcmpset_32((volatile uint32_t *)ptr,
+ (uint32_t *)&retval, value))
+ ;
+ return (retval);
+}
+
+static __inline uintptr_t
+atomic_swap_ptr(volatile uintptr_t *ptr, const uintptr_t value)
+{
+ uintptr_t retval;
+
+ retval = *ptr;
+
+ while (!atomic_fcmpset_32((volatile uint32_t *)ptr,
+ (uint32_t *)&retval, value))
+ ;
+ return (retval);
+}
+
#endif /* ! _MACHINE_ATOMIC_H_ */
Index: head/sys/powerpc/include/atomic.h
===================================================================
--- head/sys/powerpc/include/atomic.h
+++ head/sys/powerpc/include/atomic.h
@@ -852,6 +852,9 @@
#define atomic_fetchadd_64 atomic_fetchadd_long
#define atomic_swap_long atomic_swap_64
#define atomic_swap_ptr atomic_swap_64
+#else
+#define atomic_swap_long(p,v) atomic_swap_32((volatile u_int *)(p), v)
+#define atomic_swap_ptr(p,v) atomic_swap_32((volatile u_int *)(p), v)
#endif
#undef __ATOMIC_REL
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Dec 21, 6:14 AM (12 h, 26 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
15538695
Default Alt Text
D18450.diff (2 KB)
Attached To
Mode
D18450: Implement atomic_swap_xxx() for all platforms
Attached
Detach File
Event Timeline
Log In to Comment