Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 297f7399 authored by Paul E. McKenney's avatar Paul E. McKenney
Browse files

documentation: Fix spelling of "operators"

parent 21b05de4
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ o You must use one of the rcu_dereference() family of primitives
o	Avoid cancellation when using the "+" and "-" infix arithmetic
	operators.  For example, for a given variable "x", avoid
	"(x-x)".  There are similar arithmetic pitfalls from other
	arithmetic operatiors, such as "(x*0)", "(x/(x+1))" or "(x%1)".
	arithmetic operators, such as "(x*0)", "(x/(x+1))" or "(x%1)".
	The compiler is within its rights to substitute zero for all of
	these expressions, so that subsequent accesses no longer depend
	on the rcu_dereference(), again possibly resulting in bugs due