svn commit: r347507 - head/sys/sys

Mateusz Guzik mjg at FreeBSD.org
Sun May 12 07:13:27 UTC 2019


Author: mjg
Date: Sun May 12 07:13:25 2019
New Revision: 347507
URL: https://svnweb.freebsd.org/changeset/base/347507

Log:
  seqc: fix sed-introduced typos (seqcuence -> sequence)
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/sys/sys/seqc.h

Modified: head/sys/sys/seqc.h
==============================================================================
--- head/sys/sys/seqc.h	Sun May 12 07:11:44 2019	(r347506)
+++ head/sys/sys/seqc.h	Sun May 12 07:13:25 2019	(r347507)
@@ -44,9 +44,9 @@ typedef uint32_t seqc_t;
  * seqc allows readers and writers to work with a consistent snapshot. Modifying
  * operations must be enclosed within a transaction delineated by
  * seqc_write_beg/seqc_write_end. The trick works by having the writer increment
- * the seqcuence number twice, at the beginning and end of the transaction.
- * The reader detects that the seqcuence number has not changed between its start
- * and end, and that the seqcuence number is even, to validate consistency.
+ * the sequence number twice, at the beginning and end of the transaction.
+ * The reader detects that the sequence number has not changed between its start
+ * and end, and that the sequence number is even, to validate consistency.
  *
  * Some fencing (both hard fencing and compiler barriers) may be needed,
  * depending on the cpu. Modern AMD cpus provide strong enough guarantees to not


More information about the svn-src-head mailing list