asm-generic/bitops: Update stale comment
authorWill Deacon <will@kernel.org>
Thu, 13 Feb 2020 09:39:27 +0000 (09:39 +0000)
committerPeter Zijlstra <peterz@infradead.org>
Fri, 6 Mar 2020 10:06:19 +0000 (11:06 +0100)
The comment in 'asm-generic/bitops.h' states that you should "recode
these in the native assembly language, if at all possible". This is
pretty crappy advice now that the generic implementation is defined in
terms of atomic_long_t rather than a spinlock, so update the comment and
hopefully save future architecture maintainers a bit of work.

Reported-by: Stefan Asserhall <stefana@xilinx.com>
Signed-off-by: Will Deacon <will@kernel.org>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200213093927.1836-1-will@kernel.org
include/asm-generic/bitops.h

index bfc96bf6606ed95c89c2d3c3b10314669f843a80..df9b5bc3d2827fa5732fb072a30154a10dce0471 100644 (file)
@@ -4,8 +4,9 @@
 
 /*
  * For the benefit of those who are trying to port Linux to another
- * architecture, here are some C-language equivalents.  You should
- * recode these in the native assembly language, if at all possible.
+ * architecture, here are some C-language equivalents.  They should
+ * generate reasonable code, so take a look at what your compiler spits
+ * out before rolling your own buggy implementation in assembly language.
  *
  * C language equivalents written by Theodore Ts'o, 9/26/92
  */