Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

locking/atomics/arm64, arm64/bitops: Include <asm-generic/bitops/ext2-atomic-setbit.h>

<asm-generic/bitops/ext2-atomic-setbit.h> provides the ext2 atomic bitop
definitions, so we don't need to define our own.

Signed-off-by: Will Deacon <will.deacon@arm.com>
Acked-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-arm-kernel@lists.infradead.org
Cc: yamada.masahiro@socionext.com
Link: https://lore.kernel.org/lkml/1529412794-17720-10-git-send-email-will.deacon@arm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by

Will Deacon and committed by
Ingo Molnar
356c6fe7 7c8fc35d

+1 -6
+1 -6
arch/arm64/include/asm/bitops.h
··· 38 38 #include <asm-generic/bitops/lock.h> 39 39 #include <asm-generic/bitops/non-atomic.h> 40 40 #include <asm-generic/bitops/le.h> 41 - 42 - /* 43 - * Ext2 is defined to use little-endian byte ordering. 44 - */ 45 - #define ext2_set_bit_atomic(lock, nr, p) test_and_set_bit_le(nr, p) 46 - #define ext2_clear_bit_atomic(lock, nr, p) test_and_clear_bit_le(nr, p) 41 + #include <asm-generic/bitops/ext2-atomic-setbit.h> 47 42 48 43 #endif /* __ASM_BITOPS_H */