Skip to content

Commit

Permalink
bitops: wrap non-atomic bitops with a transparent macro
Browse files Browse the repository at this point in the history
In preparation for altering the non-atomic bitops with a macro, wrap
them in a transparent definition. This requires prepending one more
'_' to their names in order to be able to do that seamlessly. It is
a simple change, given that all the non-prefixed definitions are now
in asm-generic.
sparc32 already has several triple-underscored functions, so I had
to rename them ('___' -> 'sp32_').

Signed-off-by: Alexander Lobakin <alexandr.lobakin@intel.com>
Reviewed-by: Marco Elver <elver@google.com>
Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Yury Norov <yury.norov@gmail.com>
  • Loading branch information
Alexander Lobakin authored and Yury Norov committed Jul 1, 2022
1 parent bb7379b commit e69eb9c
Show file tree
Hide file tree
Showing 7 changed files with 81 additions and 49 deletions.
18 changes: 9 additions & 9 deletions arch/sparc/include/asm/bitops_32.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@
#error only <linux/bitops.h> can be included directly
#endif

unsigned long ___set_bit(unsigned long *addr, unsigned long mask);
unsigned long ___clear_bit(unsigned long *addr, unsigned long mask);
unsigned long ___change_bit(unsigned long *addr, unsigned long mask);
unsigned long sp32___set_bit(unsigned long *addr, unsigned long mask);
unsigned long sp32___clear_bit(unsigned long *addr, unsigned long mask);
unsigned long sp32___change_bit(unsigned long *addr, unsigned long mask);

/*
* Set bit 'nr' in 32-bit quantity at address 'addr' where bit '0'
Expand All @@ -36,7 +36,7 @@ static inline int test_and_set_bit(unsigned long nr, volatile unsigned long *add
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

return ___set_bit(ADDR, mask) != 0;
return sp32___set_bit(ADDR, mask) != 0;
}

static inline void set_bit(unsigned long nr, volatile unsigned long *addr)
Expand All @@ -46,7 +46,7 @@ static inline void set_bit(unsigned long nr, volatile unsigned long *addr)
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

(void) ___set_bit(ADDR, mask);
(void) sp32___set_bit(ADDR, mask);
}

static inline int test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
Expand All @@ -56,7 +56,7 @@ static inline int test_and_clear_bit(unsigned long nr, volatile unsigned long *a
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

return ___clear_bit(ADDR, mask) != 0;
return sp32___clear_bit(ADDR, mask) != 0;
}

static inline void clear_bit(unsigned long nr, volatile unsigned long *addr)
Expand All @@ -66,7 +66,7 @@ static inline void clear_bit(unsigned long nr, volatile unsigned long *addr)
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

(void) ___clear_bit(ADDR, mask);
(void) sp32___clear_bit(ADDR, mask);
}

static inline int test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
Expand All @@ -76,7 +76,7 @@ static inline int test_and_change_bit(unsigned long nr, volatile unsigned long *
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

return ___change_bit(ADDR, mask) != 0;
return sp32___change_bit(ADDR, mask) != 0;
}

static inline void change_bit(unsigned long nr, volatile unsigned long *addr)
Expand All @@ -86,7 +86,7 @@ static inline void change_bit(unsigned long nr, volatile unsigned long *addr)
ADDR = ((unsigned long *) addr) + (nr >> 5);
mask = 1 << (nr & 31);

(void) ___change_bit(ADDR, mask);
(void) sp32___change_bit(ADDR, mask);
}

#include <asm-generic/bitops/non-atomic.h>
Expand Down
12 changes: 6 additions & 6 deletions arch/sparc/lib/atomic32.c
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ void arch_atomic_set(atomic_t *v, int i)
}
EXPORT_SYMBOL(arch_atomic_set);

unsigned long ___set_bit(unsigned long *addr, unsigned long mask)
unsigned long sp32___set_bit(unsigned long *addr, unsigned long mask)
{
unsigned long old, flags;

Expand All @@ -131,9 +131,9 @@ unsigned long ___set_bit(unsigned long *addr, unsigned long mask)

return old & mask;
}
EXPORT_SYMBOL(___set_bit);
EXPORT_SYMBOL(sp32___set_bit);

unsigned long ___clear_bit(unsigned long *addr, unsigned long mask)
unsigned long sp32___clear_bit(unsigned long *addr, unsigned long mask)
{
unsigned long old, flags;

Expand All @@ -144,9 +144,9 @@ unsigned long ___clear_bit(unsigned long *addr, unsigned long mask)

return old & mask;
}
EXPORT_SYMBOL(___clear_bit);
EXPORT_SYMBOL(sp32___clear_bit);

unsigned long ___change_bit(unsigned long *addr, unsigned long mask)
unsigned long sp32___change_bit(unsigned long *addr, unsigned long mask)
{
unsigned long old, flags;

Expand All @@ -157,7 +157,7 @@ unsigned long ___change_bit(unsigned long *addr, unsigned long mask)

return old & mask;
}
EXPORT_SYMBOL(___change_bit);
EXPORT_SYMBOL(sp32___change_bit);

unsigned long __cmpxchg_u32(volatile u32 *ptr, u32 old, u32 new)
{
Expand Down
28 changes: 14 additions & 14 deletions include/asm-generic/bitops/instrumented-non-atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#include <linux/instrumented.h>

/**
* __set_bit - Set a bit in memory
* ___set_bit - Set a bit in memory
* @nr: the bit to set
* @addr: the address to start counting from
*
Expand All @@ -23,14 +23,14 @@
* succeeds.
*/
static __always_inline void
__set_bit(unsigned long nr, volatile unsigned long *addr)
___set_bit(unsigned long nr, volatile unsigned long *addr)
{
instrument_write(addr + BIT_WORD(nr), sizeof(long));
arch___set_bit(nr, addr);
}

/**
* __clear_bit - Clears a bit in memory
* ___clear_bit - Clears a bit in memory
* @nr: the bit to clear
* @addr: the address to start counting from
*
Expand All @@ -39,14 +39,14 @@ __set_bit(unsigned long nr, volatile unsigned long *addr)
* succeeds.
*/
static __always_inline void
__clear_bit(unsigned long nr, volatile unsigned long *addr)
___clear_bit(unsigned long nr, volatile unsigned long *addr)
{
instrument_write(addr + BIT_WORD(nr), sizeof(long));
arch___clear_bit(nr, addr);
}

/**
* __change_bit - Toggle a bit in memory
* ___change_bit - Toggle a bit in memory
* @nr: the bit to change
* @addr: the address to start counting from
*
Expand All @@ -55,7 +55,7 @@ __clear_bit(unsigned long nr, volatile unsigned long *addr)
* succeeds.
*/
static __always_inline void
__change_bit(unsigned long nr, volatile unsigned long *addr)
___change_bit(unsigned long nr, volatile unsigned long *addr)
{
instrument_write(addr + BIT_WORD(nr), sizeof(long));
arch___change_bit(nr, addr);
Expand Down Expand Up @@ -86,57 +86,57 @@ static __always_inline void __instrument_read_write_bitop(long nr, volatile unsi
}

/**
* __test_and_set_bit - Set a bit and return its old value
* ___test_and_set_bit - Set a bit and return its old value
* @nr: Bit to set
* @addr: Address to count from
*
* This operation is non-atomic. If two instances of this operation race, one
* can appear to succeed but actually fail.
*/
static __always_inline bool
__test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
{
__instrument_read_write_bitop(nr, addr);
return arch___test_and_set_bit(nr, addr);
}

/**
* __test_and_clear_bit - Clear a bit and return its old value
* ___test_and_clear_bit - Clear a bit and return its old value
* @nr: Bit to clear
* @addr: Address to count from
*
* This operation is non-atomic. If two instances of this operation race, one
* can appear to succeed but actually fail.
*/
static __always_inline bool
__test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
{
__instrument_read_write_bitop(nr, addr);
return arch___test_and_clear_bit(nr, addr);
}

/**
* __test_and_change_bit - Change a bit and return its old value
* ___test_and_change_bit - Change a bit and return its old value
* @nr: Bit to change
* @addr: Address to count from
*
* This operation is non-atomic. If two instances of this operation race, one
* can appear to succeed but actually fail.
*/
static __always_inline bool
__test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
{
__instrument_read_write_bitop(nr, addr);
return arch___test_and_change_bit(nr, addr);
}

/**
* test_bit - Determine whether a bit is set
* _test_bit - Determine whether a bit is set
* @nr: bit number to test
* @addr: Address to start counting from
*/
static __always_inline bool
test_bit(unsigned long nr, const volatile unsigned long *addr)
_test_bit(unsigned long nr, const volatile unsigned long *addr)
{
instrument_atomic_read(addr + BIT_WORD(nr), sizeof(long));
return arch_test_bit(nr, addr);
Expand Down
14 changes: 7 additions & 7 deletions include/asm-generic/bitops/non-instrumented-non-atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@
#ifndef __ASM_GENERIC_BITOPS_NON_INSTRUMENTED_NON_ATOMIC_H
#define __ASM_GENERIC_BITOPS_NON_INSTRUMENTED_NON_ATOMIC_H

#define __set_bit arch___set_bit
#define __clear_bit arch___clear_bit
#define __change_bit arch___change_bit
#define ___set_bit arch___set_bit
#define ___clear_bit arch___clear_bit
#define ___change_bit arch___change_bit

#define __test_and_set_bit arch___test_and_set_bit
#define __test_and_clear_bit arch___test_and_clear_bit
#define __test_and_change_bit arch___test_and_change_bit
#define ___test_and_set_bit arch___test_and_set_bit
#define ___test_and_clear_bit arch___test_and_clear_bit
#define ___test_and_change_bit arch___test_and_change_bit

#define test_bit arch_test_bit
#define _test_bit arch_test_bit

#endif /* __ASM_GENERIC_BITOPS_NON_INSTRUMENTED_NON_ATOMIC_H */
18 changes: 17 additions & 1 deletion include/linux/bitops.h
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,24 @@ extern unsigned int __sw_hweight16(unsigned int w);
extern unsigned int __sw_hweight32(unsigned int w);
extern unsigned long __sw_hweight64(__u64 w);

/*
* Defined here because those may be needed by architecture-specific static
* inlines.
*/

#include <asm-generic/bitops/generic-non-atomic.h>

#define bitop(op, nr, addr) \
op(nr, addr)

#define __set_bit(nr, addr) bitop(___set_bit, nr, addr)
#define __clear_bit(nr, addr) bitop(___clear_bit, nr, addr)
#define __change_bit(nr, addr) bitop(___change_bit, nr, addr)
#define __test_and_set_bit(nr, addr) bitop(___test_and_set_bit, nr, addr)
#define __test_and_clear_bit(nr, addr) bitop(___test_and_clear_bit, nr, addr)
#define __test_and_change_bit(nr, addr) bitop(___test_and_change_bit, nr, addr)
#define test_bit(nr, addr) bitop(_test_bit, nr, addr)

/*
* Include this here because some architectures need generic_ffs/fls in
* scope
Expand All @@ -38,7 +54,7 @@ extern unsigned long __sw_hweight64(__u64 w);
#define __check_bitop_pr(name) \
static_assert(__same_type(arch_##name, generic_##name) && \
__same_type(const_##name, generic_##name) && \
__same_type(name, generic_##name))
__same_type(_##name, generic_##name))

__check_bitop_pr(__set_bit);
__check_bitop_pr(__clear_bit);
Expand Down
24 changes: 12 additions & 12 deletions tools/include/asm-generic/bitops/non-atomic.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include <linux/bits.h>

/**
* __set_bit - Set a bit in memory
* ___set_bit - Set a bit in memory
* @nr: the bit to set
* @addr: the address to start counting from
*
Expand All @@ -14,7 +14,7 @@
* may be that only one operation succeeds.
*/
static __always_inline void
__set_bit(unsigned long nr, volatile unsigned long *addr)
___set_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -23,7 +23,7 @@ __set_bit(unsigned long nr, volatile unsigned long *addr)
}

static __always_inline void
__clear_bit(unsigned long nr, volatile unsigned long *addr)
___clear_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -32,7 +32,7 @@ __clear_bit(unsigned long nr, volatile unsigned long *addr)
}

/**
* __change_bit - Toggle a bit in memory
* ___change_bit - Toggle a bit in memory
* @nr: the bit to change
* @addr: the address to start counting from
*
Expand All @@ -41,7 +41,7 @@ __clear_bit(unsigned long nr, volatile unsigned long *addr)
* may be that only one operation succeeds.
*/
static __always_inline void
__change_bit(unsigned long nr, volatile unsigned long *addr)
___change_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -50,7 +50,7 @@ __change_bit(unsigned long nr, volatile unsigned long *addr)
}

/**
* __test_and_set_bit - Set a bit and return its old value
* ___test_and_set_bit - Set a bit and return its old value
* @nr: Bit to set
* @addr: Address to count from
*
Expand All @@ -59,7 +59,7 @@ __change_bit(unsigned long nr, volatile unsigned long *addr)
* but actually fail. You must protect multiple accesses with a lock.
*/
static __always_inline bool
__test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -70,7 +70,7 @@ __test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
}

/**
* __test_and_clear_bit - Clear a bit and return its old value
* ___test_and_clear_bit - Clear a bit and return its old value
* @nr: Bit to clear
* @addr: Address to count from
*
Expand All @@ -79,7 +79,7 @@ __test_and_set_bit(unsigned long nr, volatile unsigned long *addr)
* but actually fail. You must protect multiple accesses with a lock.
*/
static __always_inline bool
__test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -91,7 +91,7 @@ __test_and_clear_bit(unsigned long nr, volatile unsigned long *addr)

/* WARNING: non atomic and it can be reordered! */
static __always_inline bool
__test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
___test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
{
unsigned long mask = BIT_MASK(nr);
unsigned long *p = ((unsigned long *)addr) + BIT_WORD(nr);
Expand All @@ -102,12 +102,12 @@ __test_and_change_bit(unsigned long nr, volatile unsigned long *addr)
}

/**
* test_bit - Determine whether a bit is set
* _test_bit - Determine whether a bit is set
* @nr: bit number to test
* @addr: Address to start counting from
*/
static __always_inline bool
test_bit(unsigned long nr, const volatile unsigned long *addr)
_test_bit(unsigned long nr, const volatile unsigned long *addr)
{
return 1UL & (addr[BIT_WORD(nr)] >> (nr & (BITS_PER_LONG-1)));
}
Expand Down
Loading

0 comments on commit e69eb9c

Please sign in to comment.