memory-barriers.txt 115 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216
  1. ============================
  2. LINUX KERNEL MEMORY BARRIERS
  3. ============================
  4. By: David Howells <dhowells@redhat.com>
  5. Paul E. McKenney <paulmck@linux.vnet.ibm.com>
  6. Will Deacon <will.deacon@arm.com>
  7. Peter Zijlstra <peterz@infradead.org>
  8. ==========
  9. DISCLAIMER
  10. ==========
  11. This document is not a specification; it is intentionally (for the sake of
  12. brevity) and unintentionally (due to being human) incomplete. This document is
  13. meant as a guide to using the various memory barriers provided by Linux, but
  14. in case of any doubt (and there are many) please ask.
  15. To repeat, this document is not a specification of what Linux expects from
  16. hardware.
  17. The purpose of this document is twofold:
  18. (1) to specify the minimum functionality that one can rely on for any
  19. particular barrier, and
  20. (2) to provide a guide as to how to use the barriers that are available.
  21. Note that an architecture can provide more than the minimum requirement
  22. for any particular barrier, but if the architecure provides less than
  23. that, that architecture is incorrect.
  24. Note also that it is possible that a barrier may be a no-op for an
  25. architecture because the way that arch works renders an explicit barrier
  26. unnecessary in that case.
  27. ========
  28. CONTENTS
  29. ========
  30. (*) Abstract memory access model.
  31. - Device operations.
  32. - Guarantees.
  33. (*) What are memory barriers?
  34. - Varieties of memory barrier.
  35. - What may not be assumed about memory barriers?
  36. - Data dependency barriers.
  37. - Control dependencies.
  38. - SMP barrier pairing.
  39. - Examples of memory barrier sequences.
  40. - Read memory barriers vs load speculation.
  41. - Transitivity
  42. (*) Explicit kernel barriers.
  43. - Compiler barrier.
  44. - CPU memory barriers.
  45. - MMIO write barrier.
  46. (*) Implicit kernel memory barriers.
  47. - Lock acquisition functions.
  48. - Interrupt disabling functions.
  49. - Sleep and wake-up functions.
  50. - Miscellaneous functions.
  51. (*) Inter-CPU acquiring barrier effects.
  52. - Acquires vs memory accesses.
  53. - Acquires vs I/O accesses.
  54. (*) Where are memory barriers needed?
  55. - Interprocessor interaction.
  56. - Atomic operations.
  57. - Accessing devices.
  58. - Interrupts.
  59. (*) Kernel I/O barrier effects.
  60. (*) Assumed minimum execution ordering model.
  61. (*) The effects of the cpu cache.
  62. - Cache coherency.
  63. - Cache coherency vs DMA.
  64. - Cache coherency vs MMIO.
  65. (*) The things CPUs get up to.
  66. - And then there's the Alpha.
  67. - Virtual Machine Guests.
  68. (*) Example uses.
  69. - Circular buffers.
  70. (*) References.
  71. ============================
  72. ABSTRACT MEMORY ACCESS MODEL
  73. ============================
  74. Consider the following abstract model of the system:
  75. : :
  76. : :
  77. : :
  78. +-------+ : +--------+ : +-------+
  79. | | : | | : | |
  80. | | : | | : | |
  81. | CPU 1 |<----->| Memory |<----->| CPU 2 |
  82. | | : | | : | |
  83. | | : | | : | |
  84. +-------+ : +--------+ : +-------+
  85. ^ : ^ : ^
  86. | : | : |
  87. | : | : |
  88. | : v : |
  89. | : +--------+ : |
  90. | : | | : |
  91. | : | | : |
  92. +---------->| Device |<----------+
  93. : | | :
  94. : | | :
  95. : +--------+ :
  96. : :
  97. Each CPU executes a program that generates memory access operations. In the
  98. abstract CPU, memory operation ordering is very relaxed, and a CPU may actually
  99. perform the memory operations in any order it likes, provided program causality
  100. appears to be maintained. Similarly, the compiler may also arrange the
  101. instructions it emits in any order it likes, provided it doesn't affect the
  102. apparent operation of the program.
  103. So in the above diagram, the effects of the memory operations performed by a
  104. CPU are perceived by the rest of the system as the operations cross the
  105. interface between the CPU and rest of the system (the dotted lines).
  106. For example, consider the following sequence of events:
  107. CPU 1 CPU 2
  108. =============== ===============
  109. { A == 1; B == 2 }
  110. A = 3; x = B;
  111. B = 4; y = A;
  112. The set of accesses as seen by the memory system in the middle can be arranged
  113. in 24 different combinations:
  114. STORE A=3, STORE B=4, y=LOAD A->3, x=LOAD B->4
  115. STORE A=3, STORE B=4, x=LOAD B->4, y=LOAD A->3
  116. STORE A=3, y=LOAD A->3, STORE B=4, x=LOAD B->4
  117. STORE A=3, y=LOAD A->3, x=LOAD B->2, STORE B=4
  118. STORE A=3, x=LOAD B->2, STORE B=4, y=LOAD A->3
  119. STORE A=3, x=LOAD B->2, y=LOAD A->3, STORE B=4
  120. STORE B=4, STORE A=3, y=LOAD A->3, x=LOAD B->4
  121. STORE B=4, ...
  122. ...
  123. and can thus result in four different combinations of values:
  124. x == 2, y == 1
  125. x == 2, y == 3
  126. x == 4, y == 1
  127. x == 4, y == 3
  128. Furthermore, the stores committed by a CPU to the memory system may not be
  129. perceived by the loads made by another CPU in the same order as the stores were
  130. committed.
  131. As a further example, consider this sequence of events:
  132. CPU 1 CPU 2
  133. =============== ===============
  134. { A == 1, B == 2, C == 3, P == &A, Q == &C }
  135. B = 4; Q = P;
  136. P = &B D = *Q;
  137. There is an obvious data dependency here, as the value loaded into D depends on
  138. the address retrieved from P by CPU 2. At the end of the sequence, any of the
  139. following results are possible:
  140. (Q == &A) and (D == 1)
  141. (Q == &B) and (D == 2)
  142. (Q == &B) and (D == 4)
  143. Note that CPU 2 will never try and load C into D because the CPU will load P
  144. into Q before issuing the load of *Q.
  145. DEVICE OPERATIONS
  146. -----------------
  147. Some devices present their control interfaces as collections of memory
  148. locations, but the order in which the control registers are accessed is very
  149. important. For instance, imagine an ethernet card with a set of internal
  150. registers that are accessed through an address port register (A) and a data
  151. port register (D). To read internal register 5, the following code might then
  152. be used:
  153. *A = 5;
  154. x = *D;
  155. but this might show up as either of the following two sequences:
  156. STORE *A = 5, x = LOAD *D
  157. x = LOAD *D, STORE *A = 5
  158. the second of which will almost certainly result in a malfunction, since it set
  159. the address _after_ attempting to read the register.
  160. GUARANTEES
  161. ----------
  162. There are some minimal guarantees that may be expected of a CPU:
  163. (*) On any given CPU, dependent memory accesses will be issued in order, with
  164. respect to itself. This means that for:
  165. Q = READ_ONCE(P); smp_read_barrier_depends(); D = READ_ONCE(*Q);
  166. the CPU will issue the following memory operations:
  167. Q = LOAD P, D = LOAD *Q
  168. and always in that order. On most systems, smp_read_barrier_depends()
  169. does nothing, but it is required for DEC Alpha. The READ_ONCE()
  170. is required to prevent compiler mischief. Please note that you
  171. should normally use something like rcu_dereference() instead of
  172. open-coding smp_read_barrier_depends().
  173. (*) Overlapping loads and stores within a particular CPU will appear to be
  174. ordered within that CPU. This means that for:
  175. a = READ_ONCE(*X); WRITE_ONCE(*X, b);
  176. the CPU will only issue the following sequence of memory operations:
  177. a = LOAD *X, STORE *X = b
  178. And for:
  179. WRITE_ONCE(*X, c); d = READ_ONCE(*X);
  180. the CPU will only issue:
  181. STORE *X = c, d = LOAD *X
  182. (Loads and stores overlap if they are targeted at overlapping pieces of
  183. memory).
  184. And there are a number of things that _must_ or _must_not_ be assumed:
  185. (*) It _must_not_ be assumed that the compiler will do what you want
  186. with memory references that are not protected by READ_ONCE() and
  187. WRITE_ONCE(). Without them, the compiler is within its rights to
  188. do all sorts of "creative" transformations, which are covered in
  189. the COMPILER BARRIER section.
  190. (*) It _must_not_ be assumed that independent loads and stores will be issued
  191. in the order given. This means that for:
  192. X = *A; Y = *B; *D = Z;
  193. we may get any of the following sequences:
  194. X = LOAD *A, Y = LOAD *B, STORE *D = Z
  195. X = LOAD *A, STORE *D = Z, Y = LOAD *B
  196. Y = LOAD *B, X = LOAD *A, STORE *D = Z
  197. Y = LOAD *B, STORE *D = Z, X = LOAD *A
  198. STORE *D = Z, X = LOAD *A, Y = LOAD *B
  199. STORE *D = Z, Y = LOAD *B, X = LOAD *A
  200. (*) It _must_ be assumed that overlapping memory accesses may be merged or
  201. discarded. This means that for:
  202. X = *A; Y = *(A + 4);
  203. we may get any one of the following sequences:
  204. X = LOAD *A; Y = LOAD *(A + 4);
  205. Y = LOAD *(A + 4); X = LOAD *A;
  206. {X, Y} = LOAD {*A, *(A + 4) };
  207. And for:
  208. *A = X; *(A + 4) = Y;
  209. we may get any of:
  210. STORE *A = X; STORE *(A + 4) = Y;
  211. STORE *(A + 4) = Y; STORE *A = X;
  212. STORE {*A, *(A + 4) } = {X, Y};
  213. And there are anti-guarantees:
  214. (*) These guarantees do not apply to bitfields, because compilers often
  215. generate code to modify these using non-atomic read-modify-write
  216. sequences. Do not attempt to use bitfields to synchronize parallel
  217. algorithms.
  218. (*) Even in cases where bitfields are protected by locks, all fields
  219. in a given bitfield must be protected by one lock. If two fields
  220. in a given bitfield are protected by different locks, the compiler's
  221. non-atomic read-modify-write sequences can cause an update to one
  222. field to corrupt the value of an adjacent field.
  223. (*) These guarantees apply only to properly aligned and sized scalar
  224. variables. "Properly sized" currently means variables that are
  225. the same size as "char", "short", "int" and "long". "Properly
  226. aligned" means the natural alignment, thus no constraints for
  227. "char", two-byte alignment for "short", four-byte alignment for
  228. "int", and either four-byte or eight-byte alignment for "long",
  229. on 32-bit and 64-bit systems, respectively. Note that these
  230. guarantees were introduced into the C11 standard, so beware when
  231. using older pre-C11 compilers (for example, gcc 4.6). The portion
  232. of the standard containing this guarantee is Section 3.14, which
  233. defines "memory location" as follows:
  234. memory location
  235. either an object of scalar type, or a maximal sequence
  236. of adjacent bit-fields all having nonzero width
  237. NOTE 1: Two threads of execution can update and access
  238. separate memory locations without interfering with
  239. each other.
  240. NOTE 2: A bit-field and an adjacent non-bit-field member
  241. are in separate memory locations. The same applies
  242. to two bit-fields, if one is declared inside a nested
  243. structure declaration and the other is not, or if the two
  244. are separated by a zero-length bit-field declaration,
  245. or if they are separated by a non-bit-field member
  246. declaration. It is not safe to concurrently update two
  247. bit-fields in the same structure if all members declared
  248. between them are also bit-fields, no matter what the
  249. sizes of those intervening bit-fields happen to be.
  250. =========================
  251. WHAT ARE MEMORY BARRIERS?
  252. =========================
  253. As can be seen above, independent memory operations are effectively performed
  254. in random order, but this can be a problem for CPU-CPU interaction and for I/O.
  255. What is required is some way of intervening to instruct the compiler and the
  256. CPU to restrict the order.
  257. Memory barriers are such interventions. They impose a perceived partial
  258. ordering over the memory operations on either side of the barrier.
  259. Such enforcement is important because the CPUs and other devices in a system
  260. can use a variety of tricks to improve performance, including reordering,
  261. deferral and combination of memory operations; speculative loads; speculative
  262. branch prediction and various types of caching. Memory barriers are used to
  263. override or suppress these tricks, allowing the code to sanely control the
  264. interaction of multiple CPUs and/or devices.
  265. VARIETIES OF MEMORY BARRIER
  266. ---------------------------
  267. Memory barriers come in four basic varieties:
  268. (1) Write (or store) memory barriers.
  269. A write memory barrier gives a guarantee that all the STORE operations
  270. specified before the barrier will appear to happen before all the STORE
  271. operations specified after the barrier with respect to the other
  272. components of the system.
  273. A write barrier is a partial ordering on stores only; it is not required
  274. to have any effect on loads.
  275. A CPU can be viewed as committing a sequence of store operations to the
  276. memory system as time progresses. All stores before a write barrier will
  277. occur in the sequence _before_ all the stores after the write barrier.
  278. [!] Note that write barriers should normally be paired with read or data
  279. dependency barriers; see the "SMP barrier pairing" subsection.
  280. (2) Data dependency barriers.
  281. A data dependency barrier is a weaker form of read barrier. In the case
  282. where two loads are performed such that the second depends on the result
  283. of the first (eg: the first load retrieves the address to which the second
  284. load will be directed), a data dependency barrier would be required to
  285. make sure that the target of the second load is updated before the address
  286. obtained by the first load is accessed.
  287. A data dependency barrier is a partial ordering on interdependent loads
  288. only; it is not required to have any effect on stores, independent loads
  289. or overlapping loads.
  290. As mentioned in (1), the other CPUs in the system can be viewed as
  291. committing sequences of stores to the memory system that the CPU being
  292. considered can then perceive. A data dependency barrier issued by the CPU
  293. under consideration guarantees that for any load preceding it, if that
  294. load touches one of a sequence of stores from another CPU, then by the
  295. time the barrier completes, the effects of all the stores prior to that
  296. touched by the load will be perceptible to any loads issued after the data
  297. dependency barrier.
  298. See the "Examples of memory barrier sequences" subsection for diagrams
  299. showing the ordering constraints.
  300. [!] Note that the first load really has to have a _data_ dependency and
  301. not a control dependency. If the address for the second load is dependent
  302. on the first load, but the dependency is through a conditional rather than
  303. actually loading the address itself, then it's a _control_ dependency and
  304. a full read barrier or better is required. See the "Control dependencies"
  305. subsection for more information.
  306. [!] Note that data dependency barriers should normally be paired with
  307. write barriers; see the "SMP barrier pairing" subsection.
  308. (3) Read (or load) memory barriers.
  309. A read barrier is a data dependency barrier plus a guarantee that all the
  310. LOAD operations specified before the barrier will appear to happen before
  311. all the LOAD operations specified after the barrier with respect to the
  312. other components of the system.
  313. A read barrier is a partial ordering on loads only; it is not required to
  314. have any effect on stores.
  315. Read memory barriers imply data dependency barriers, and so can substitute
  316. for them.
  317. [!] Note that read barriers should normally be paired with write barriers;
  318. see the "SMP barrier pairing" subsection.
  319. (4) General memory barriers.
  320. A general memory barrier gives a guarantee that all the LOAD and STORE
  321. operations specified before the barrier will appear to happen before all
  322. the LOAD and STORE operations specified after the barrier with respect to
  323. the other components of the system.
  324. A general memory barrier is a partial ordering over both loads and stores.
  325. General memory barriers imply both read and write memory barriers, and so
  326. can substitute for either.
  327. And a couple of implicit varieties:
  328. (5) ACQUIRE operations.
  329. This acts as a one-way permeable barrier. It guarantees that all memory
  330. operations after the ACQUIRE operation will appear to happen after the
  331. ACQUIRE operation with respect to the other components of the system.
  332. ACQUIRE operations include LOCK operations and both smp_load_acquire()
  333. and smp_cond_acquire() operations. The later builds the necessary ACQUIRE
  334. semantics from relying on a control dependency and smp_rmb().
  335. Memory operations that occur before an ACQUIRE operation may appear to
  336. happen after it completes.
  337. An ACQUIRE operation should almost always be paired with a RELEASE
  338. operation.
  339. (6) RELEASE operations.
  340. This also acts as a one-way permeable barrier. It guarantees that all
  341. memory operations before the RELEASE operation will appear to happen
  342. before the RELEASE operation with respect to the other components of the
  343. system. RELEASE operations include UNLOCK operations and
  344. smp_store_release() operations.
  345. Memory operations that occur after a RELEASE operation may appear to
  346. happen before it completes.
  347. The use of ACQUIRE and RELEASE operations generally precludes the need
  348. for other sorts of memory barrier (but note the exceptions mentioned in
  349. the subsection "MMIO write barrier"). In addition, a RELEASE+ACQUIRE
  350. pair is -not- guaranteed to act as a full memory barrier. However, after
  351. an ACQUIRE on a given variable, all memory accesses preceding any prior
  352. RELEASE on that same variable are guaranteed to be visible. In other
  353. words, within a given variable's critical section, all accesses of all
  354. previous critical sections for that variable are guaranteed to have
  355. completed.
  356. This means that ACQUIRE acts as a minimal "acquire" operation and
  357. RELEASE acts as a minimal "release" operation.
  358. A subset of the atomic operations described in atomic_ops.txt have ACQUIRE
  359. and RELEASE variants in addition to fully-ordered and relaxed (no barrier
  360. semantics) definitions. For compound atomics performing both a load and a
  361. store, ACQUIRE semantics apply only to the load and RELEASE semantics apply
  362. only to the store portion of the operation.
  363. Memory barriers are only required where there's a possibility of interaction
  364. between two CPUs or between a CPU and a device. If it can be guaranteed that
  365. there won't be any such interaction in any particular piece of code, then
  366. memory barriers are unnecessary in that piece of code.
  367. Note that these are the _minimum_ guarantees. Different architectures may give
  368. more substantial guarantees, but they may _not_ be relied upon outside of arch
  369. specific code.
  370. WHAT MAY NOT BE ASSUMED ABOUT MEMORY BARRIERS?
  371. ----------------------------------------------
  372. There are certain things that the Linux kernel memory barriers do not guarantee:
  373. (*) There is no guarantee that any of the memory accesses specified before a
  374. memory barrier will be _complete_ by the completion of a memory barrier
  375. instruction; the barrier can be considered to draw a line in that CPU's
  376. access queue that accesses of the appropriate type may not cross.
  377. (*) There is no guarantee that issuing a memory barrier on one CPU will have
  378. any direct effect on another CPU or any other hardware in the system. The
  379. indirect effect will be the order in which the second CPU sees the effects
  380. of the first CPU's accesses occur, but see the next point:
  381. (*) There is no guarantee that a CPU will see the correct order of effects
  382. from a second CPU's accesses, even _if_ the second CPU uses a memory
  383. barrier, unless the first CPU _also_ uses a matching memory barrier (see
  384. the subsection on "SMP Barrier Pairing").
  385. (*) There is no guarantee that some intervening piece of off-the-CPU
  386. hardware[*] will not reorder the memory accesses. CPU cache coherency
  387. mechanisms should propagate the indirect effects of a memory barrier
  388. between CPUs, but might not do so in order.
  389. [*] For information on bus mastering DMA and coherency please read:
  390. Documentation/PCI/pci.txt
  391. Documentation/DMA-API-HOWTO.txt
  392. Documentation/DMA-API.txt
  393. DATA DEPENDENCY BARRIERS
  394. ------------------------
  395. The usage requirements of data dependency barriers are a little subtle, and
  396. it's not always obvious that they're needed. To illustrate, consider the
  397. following sequence of events:
  398. CPU 1 CPU 2
  399. =============== ===============
  400. { A == 1, B == 2, C == 3, P == &A, Q == &C }
  401. B = 4;
  402. <write barrier>
  403. WRITE_ONCE(P, &B)
  404. Q = READ_ONCE(P);
  405. D = *Q;
  406. There's a clear data dependency here, and it would seem that by the end of the
  407. sequence, Q must be either &A or &B, and that:
  408. (Q == &A) implies (D == 1)
  409. (Q == &B) implies (D == 4)
  410. But! CPU 2's perception of P may be updated _before_ its perception of B, thus
  411. leading to the following situation:
  412. (Q == &B) and (D == 2) ????
  413. Whilst this may seem like a failure of coherency or causality maintenance, it
  414. isn't, and this behaviour can be observed on certain real CPUs (such as the DEC
  415. Alpha).
  416. To deal with this, a data dependency barrier or better must be inserted
  417. between the address load and the data load:
  418. CPU 1 CPU 2
  419. =============== ===============
  420. { A == 1, B == 2, C == 3, P == &A, Q == &C }
  421. B = 4;
  422. <write barrier>
  423. WRITE_ONCE(P, &B);
  424. Q = READ_ONCE(P);
  425. <data dependency barrier>
  426. D = *Q;
  427. This enforces the occurrence of one of the two implications, and prevents the
  428. third possibility from arising.
  429. A data-dependency barrier must also order against dependent writes:
  430. CPU 1 CPU 2
  431. =============== ===============
  432. { A == 1, B == 2, C = 3, P == &A, Q == &C }
  433. B = 4;
  434. <write barrier>
  435. WRITE_ONCE(P, &B);
  436. Q = READ_ONCE(P);
  437. <data dependency barrier>
  438. *Q = 5;
  439. The data-dependency barrier must order the read into Q with the store
  440. into *Q. This prohibits this outcome:
  441. (Q == &B) && (B == 4)
  442. Please note that this pattern should be rare. After all, the whole point
  443. of dependency ordering is to -prevent- writes to the data structure, along
  444. with the expensive cache misses associated with those writes. This pattern
  445. can be used to record rare error conditions and the like, and the ordering
  446. prevents such records from being lost.
  447. [!] Note that this extremely counterintuitive situation arises most easily on
  448. machines with split caches, so that, for example, one cache bank processes
  449. even-numbered cache lines and the other bank processes odd-numbered cache
  450. lines. The pointer P might be stored in an odd-numbered cache line, and the
  451. variable B might be stored in an even-numbered cache line. Then, if the
  452. even-numbered bank of the reading CPU's cache is extremely busy while the
  453. odd-numbered bank is idle, one can see the new value of the pointer P (&B),
  454. but the old value of the variable B (2).
  455. The data dependency barrier is very important to the RCU system,
  456. for example. See rcu_assign_pointer() and rcu_dereference() in
  457. include/linux/rcupdate.h. This permits the current target of an RCU'd
  458. pointer to be replaced with a new modified target, without the replacement
  459. target appearing to be incompletely initialised.
  460. See also the subsection on "Cache Coherency" for a more thorough example.
  461. CONTROL DEPENDENCIES
  462. --------------------
  463. A load-load control dependency requires a full read memory barrier, not
  464. simply a data dependency barrier to make it work correctly. Consider the
  465. following bit of code:
  466. q = READ_ONCE(a);
  467. if (q) {
  468. <data dependency barrier> /* BUG: No data dependency!!! */
  469. p = READ_ONCE(b);
  470. }
  471. This will not have the desired effect because there is no actual data
  472. dependency, but rather a control dependency that the CPU may short-circuit
  473. by attempting to predict the outcome in advance, so that other CPUs see
  474. the load from b as having happened before the load from a. In such a
  475. case what's actually required is:
  476. q = READ_ONCE(a);
  477. if (q) {
  478. <read barrier>
  479. p = READ_ONCE(b);
  480. }
  481. However, stores are not speculated. This means that ordering -is- provided
  482. for load-store control dependencies, as in the following example:
  483. q = READ_ONCE(a);
  484. if (q) {
  485. WRITE_ONCE(b, p);
  486. }
  487. Control dependencies pair normally with other types of barriers. That
  488. said, please note that READ_ONCE() is not optional! Without the
  489. READ_ONCE(), the compiler might combine the load from 'a' with other
  490. loads from 'a', and the store to 'b' with other stores to 'b', with
  491. possible highly counterintuitive effects on ordering.
  492. Worse yet, if the compiler is able to prove (say) that the value of
  493. variable 'a' is always non-zero, it would be well within its rights
  494. to optimize the original example by eliminating the "if" statement
  495. as follows:
  496. q = a;
  497. b = p; /* BUG: Compiler and CPU can both reorder!!! */
  498. So don't leave out the READ_ONCE().
  499. It is tempting to try to enforce ordering on identical stores on both
  500. branches of the "if" statement as follows:
  501. q = READ_ONCE(a);
  502. if (q) {
  503. barrier();
  504. WRITE_ONCE(b, p);
  505. do_something();
  506. } else {
  507. barrier();
  508. WRITE_ONCE(b, p);
  509. do_something_else();
  510. }
  511. Unfortunately, current compilers will transform this as follows at high
  512. optimization levels:
  513. q = READ_ONCE(a);
  514. barrier();
  515. WRITE_ONCE(b, p); /* BUG: No ordering vs. load from a!!! */
  516. if (q) {
  517. /* WRITE_ONCE(b, p); -- moved up, BUG!!! */
  518. do_something();
  519. } else {
  520. /* WRITE_ONCE(b, p); -- moved up, BUG!!! */
  521. do_something_else();
  522. }
  523. Now there is no conditional between the load from 'a' and the store to
  524. 'b', which means that the CPU is within its rights to reorder them:
  525. The conditional is absolutely required, and must be present in the
  526. assembly code even after all compiler optimizations have been applied.
  527. Therefore, if you need ordering in this example, you need explicit
  528. memory barriers, for example, smp_store_release():
  529. q = READ_ONCE(a);
  530. if (q) {
  531. smp_store_release(&b, p);
  532. do_something();
  533. } else {
  534. smp_store_release(&b, p);
  535. do_something_else();
  536. }
  537. In contrast, without explicit memory barriers, two-legged-if control
  538. ordering is guaranteed only when the stores differ, for example:
  539. q = READ_ONCE(a);
  540. if (q) {
  541. WRITE_ONCE(b, p);
  542. do_something();
  543. } else {
  544. WRITE_ONCE(b, r);
  545. do_something_else();
  546. }
  547. The initial READ_ONCE() is still required to prevent the compiler from
  548. proving the value of 'a'.
  549. In addition, you need to be careful what you do with the local variable 'q',
  550. otherwise the compiler might be able to guess the value and again remove
  551. the needed conditional. For example:
  552. q = READ_ONCE(a);
  553. if (q % MAX) {
  554. WRITE_ONCE(b, p);
  555. do_something();
  556. } else {
  557. WRITE_ONCE(b, r);
  558. do_something_else();
  559. }
  560. If MAX is defined to be 1, then the compiler knows that (q % MAX) is
  561. equal to zero, in which case the compiler is within its rights to
  562. transform the above code into the following:
  563. q = READ_ONCE(a);
  564. WRITE_ONCE(b, p);
  565. do_something_else();
  566. Given this transformation, the CPU is not required to respect the ordering
  567. between the load from variable 'a' and the store to variable 'b'. It is
  568. tempting to add a barrier(), but this does not help. The conditional
  569. is gone, and the barrier won't bring it back. Therefore, if you are
  570. relying on this ordering, you should make sure that MAX is greater than
  571. one, perhaps as follows:
  572. q = READ_ONCE(a);
  573. BUILD_BUG_ON(MAX <= 1); /* Order load from a with store to b. */
  574. if (q % MAX) {
  575. WRITE_ONCE(b, p);
  576. do_something();
  577. } else {
  578. WRITE_ONCE(b, r);
  579. do_something_else();
  580. }
  581. Please note once again that the stores to 'b' differ. If they were
  582. identical, as noted earlier, the compiler could pull this store outside
  583. of the 'if' statement.
  584. You must also be careful not to rely too much on boolean short-circuit
  585. evaluation. Consider this example:
  586. q = READ_ONCE(a);
  587. if (q || 1 > 0)
  588. WRITE_ONCE(b, 1);
  589. Because the first condition cannot fault and the second condition is
  590. always true, the compiler can transform this example as following,
  591. defeating control dependency:
  592. q = READ_ONCE(a);
  593. WRITE_ONCE(b, 1);
  594. This example underscores the need to ensure that the compiler cannot
  595. out-guess your code. More generally, although READ_ONCE() does force
  596. the compiler to actually emit code for a given load, it does not force
  597. the compiler to use the results.
  598. In addition, control dependencies apply only to the then-clause and
  599. else-clause of the if-statement in question. In particular, it does
  600. not necessarily apply to code following the if-statement:
  601. q = READ_ONCE(a);
  602. if (q) {
  603. WRITE_ONCE(b, p);
  604. } else {
  605. WRITE_ONCE(b, r);
  606. }
  607. WRITE_ONCE(c, 1); /* BUG: No ordering against the read from "a". */
  608. It is tempting to argue that there in fact is ordering because the
  609. compiler cannot reorder volatile accesses and also cannot reorder
  610. the writes to "b" with the condition. Unfortunately for this line
  611. of reasoning, the compiler might compile the two writes to "b" as
  612. conditional-move instructions, as in this fanciful pseudo-assembly
  613. language:
  614. ld r1,a
  615. ld r2,p
  616. ld r3,r
  617. cmp r1,$0
  618. cmov,ne r4,r2
  619. cmov,eq r4,r3
  620. st r4,b
  621. st $1,c
  622. A weakly ordered CPU would have no dependency of any sort between the load
  623. from "a" and the store to "c". The control dependencies would extend
  624. only to the pair of cmov instructions and the store depending on them.
  625. In short, control dependencies apply only to the stores in the then-clause
  626. and else-clause of the if-statement in question (including functions
  627. invoked by those two clauses), not to code following that if-statement.
  628. Finally, control dependencies do -not- provide transitivity. This is
  629. demonstrated by two related examples, with the initial values of
  630. x and y both being zero:
  631. CPU 0 CPU 1
  632. ======================= =======================
  633. r1 = READ_ONCE(x); r2 = READ_ONCE(y);
  634. if (r1 > 0) if (r2 > 0)
  635. WRITE_ONCE(y, 1); WRITE_ONCE(x, 1);
  636. assert(!(r1 == 1 && r2 == 1));
  637. The above two-CPU example will never trigger the assert(). However,
  638. if control dependencies guaranteed transitivity (which they do not),
  639. then adding the following CPU would guarantee a related assertion:
  640. CPU 2
  641. =====================
  642. WRITE_ONCE(x, 2);
  643. assert(!(r1 == 2 && r2 == 1 && x == 2)); /* FAILS!!! */
  644. But because control dependencies do -not- provide transitivity, the above
  645. assertion can fail after the combined three-CPU example completes. If you
  646. need the three-CPU example to provide ordering, you will need smp_mb()
  647. between the loads and stores in the CPU 0 and CPU 1 code fragments,
  648. that is, just before or just after the "if" statements. Furthermore,
  649. the original two-CPU example is very fragile and should be avoided.
  650. These two examples are the LB and WWC litmus tests from this paper:
  651. http://www.cl.cam.ac.uk/users/pes20/ppc-supplemental/test6.pdf and this
  652. site: https://www.cl.cam.ac.uk/~pes20/ppcmem/index.html.
  653. In summary:
  654. (*) Control dependencies can order prior loads against later stores.
  655. However, they do -not- guarantee any other sort of ordering:
  656. Not prior loads against later loads, nor prior stores against
  657. later anything. If you need these other forms of ordering,
  658. use smp_rmb(), smp_wmb(), or, in the case of prior stores and
  659. later loads, smp_mb().
  660. (*) If both legs of the "if" statement begin with identical stores to
  661. the same variable, then those stores must be ordered, either by
  662. preceding both of them with smp_mb() or by using smp_store_release()
  663. to carry out the stores. Please note that it is -not- sufficient
  664. to use barrier() at beginning of each leg of the "if" statement
  665. because, as shown by the example above, optimizing compilers can
  666. destroy the control dependency while respecting the letter of the
  667. barrier() law.
  668. (*) Control dependencies require at least one run-time conditional
  669. between the prior load and the subsequent store, and this
  670. conditional must involve the prior load. If the compiler is able
  671. to optimize the conditional away, it will have also optimized
  672. away the ordering. Careful use of READ_ONCE() and WRITE_ONCE()
  673. can help to preserve the needed conditional.
  674. (*) Control dependencies require that the compiler avoid reordering the
  675. dependency into nonexistence. Careful use of READ_ONCE() or
  676. atomic{,64}_read() can help to preserve your control dependency.
  677. Please see the COMPILER BARRIER section for more information.
  678. (*) Control dependencies apply only to the then-clause and else-clause
  679. of the if-statement containing the control dependency, including
  680. any functions that these two clauses call. Control dependencies
  681. do -not- apply to code following the if-statement containing the
  682. control dependency.
  683. (*) Control dependencies pair normally with other types of barriers.
  684. (*) Control dependencies do -not- provide transitivity. If you
  685. need transitivity, use smp_mb().
  686. SMP BARRIER PAIRING
  687. -------------------
  688. When dealing with CPU-CPU interactions, certain types of memory barrier should
  689. always be paired. A lack of appropriate pairing is almost certainly an error.
  690. General barriers pair with each other, though they also pair with most
  691. other types of barriers, albeit without transitivity. An acquire barrier
  692. pairs with a release barrier, but both may also pair with other barriers,
  693. including of course general barriers. A write barrier pairs with a data
  694. dependency barrier, a control dependency, an acquire barrier, a release
  695. barrier, a read barrier, or a general barrier. Similarly a read barrier,
  696. control dependency, or a data dependency barrier pairs with a write
  697. barrier, an acquire barrier, a release barrier, or a general barrier:
  698. CPU 1 CPU 2
  699. =============== ===============
  700. WRITE_ONCE(a, 1);
  701. <write barrier>
  702. WRITE_ONCE(b, 2); x = READ_ONCE(b);
  703. <read barrier>
  704. y = READ_ONCE(a);
  705. Or:
  706. CPU 1 CPU 2
  707. =============== ===============================
  708. a = 1;
  709. <write barrier>
  710. WRITE_ONCE(b, &a); x = READ_ONCE(b);
  711. <data dependency barrier>
  712. y = *x;
  713. Or even:
  714. CPU 1 CPU 2
  715. =============== ===============================
  716. r1 = READ_ONCE(y);
  717. <general barrier>
  718. WRITE_ONCE(y, 1); if (r2 = READ_ONCE(x)) {
  719. <implicit control dependency>
  720. WRITE_ONCE(y, 1);
  721. }
  722. assert(r1 == 0 || r2 == 0);
  723. Basically, the read barrier always has to be there, even though it can be of
  724. the "weaker" type.
  725. [!] Note that the stores before the write barrier would normally be expected to
  726. match the loads after the read barrier or the data dependency barrier, and vice
  727. versa:
  728. CPU 1 CPU 2
  729. =================== ===================
  730. WRITE_ONCE(a, 1); }---- --->{ v = READ_ONCE(c);
  731. WRITE_ONCE(b, 2); } \ / { w = READ_ONCE(d);
  732. <write barrier> \ <read barrier>
  733. WRITE_ONCE(c, 3); } / \ { x = READ_ONCE(a);
  734. WRITE_ONCE(d, 4); }---- --->{ y = READ_ONCE(b);
  735. EXAMPLES OF MEMORY BARRIER SEQUENCES
  736. ------------------------------------
  737. Firstly, write barriers act as partial orderings on store operations.
  738. Consider the following sequence of events:
  739. CPU 1
  740. =======================
  741. STORE A = 1
  742. STORE B = 2
  743. STORE C = 3
  744. <write barrier>
  745. STORE D = 4
  746. STORE E = 5
  747. This sequence of events is committed to the memory coherence system in an order
  748. that the rest of the system might perceive as the unordered set of { STORE A,
  749. STORE B, STORE C } all occurring before the unordered set of { STORE D, STORE E
  750. }:
  751. +-------+ : :
  752. | | +------+
  753. | |------>| C=3 | } /\
  754. | | : +------+ }----- \ -----> Events perceptible to
  755. | | : | A=1 | } \/ the rest of the system
  756. | | : +------+ }
  757. | CPU 1 | : | B=2 | }
  758. | | +------+ }
  759. | | wwwwwwwwwwwwwwww } <--- At this point the write barrier
  760. | | +------+ } requires all stores prior to the
  761. | | : | E=5 | } barrier to be committed before
  762. | | : +------+ } further stores may take place
  763. | |------>| D=4 | }
  764. | | +------+
  765. +-------+ : :
  766. |
  767. | Sequence in which stores are committed to the
  768. | memory system by CPU 1
  769. V
  770. Secondly, data dependency barriers act as partial orderings on data-dependent
  771. loads. Consider the following sequence of events:
  772. CPU 1 CPU 2
  773. ======================= =======================
  774. { B = 7; X = 9; Y = 8; C = &Y }
  775. STORE A = 1
  776. STORE B = 2
  777. <write barrier>
  778. STORE C = &B LOAD X
  779. STORE D = 4 LOAD C (gets &B)
  780. LOAD *C (reads B)
  781. Without intervention, CPU 2 may perceive the events on CPU 1 in some
  782. effectively random order, despite the write barrier issued by CPU 1:
  783. +-------+ : : : :
  784. | | +------+ +-------+ | Sequence of update
  785. | |------>| B=2 |----- --->| Y->8 | | of perception on
  786. | | : +------+ \ +-------+ | CPU 2
  787. | CPU 1 | : | A=1 | \ --->| C->&Y | V
  788. | | +------+ | +-------+
  789. | | wwwwwwwwwwwwwwww | : :
  790. | | +------+ | : :
  791. | | : | C=&B |--- | : : +-------+
  792. | | : +------+ \ | +-------+ | |
  793. | |------>| D=4 | ----------->| C->&B |------>| |
  794. | | +------+ | +-------+ | |
  795. +-------+ : : | : : | |
  796. | : : | |
  797. | : : | CPU 2 |
  798. | +-------+ | |
  799. Apparently incorrect ---> | | B->7 |------>| |
  800. perception of B (!) | +-------+ | |
  801. | : : | |
  802. | +-------+ | |
  803. The load of X holds ---> \ | X->9 |------>| |
  804. up the maintenance \ +-------+ | |
  805. of coherence of B ----->| B->2 | +-------+
  806. +-------+
  807. : :
  808. In the above example, CPU 2 perceives that B is 7, despite the load of *C
  809. (which would be B) coming after the LOAD of C.
  810. If, however, a data dependency barrier were to be placed between the load of C
  811. and the load of *C (ie: B) on CPU 2:
  812. CPU 1 CPU 2
  813. ======================= =======================
  814. { B = 7; X = 9; Y = 8; C = &Y }
  815. STORE A = 1
  816. STORE B = 2
  817. <write barrier>
  818. STORE C = &B LOAD X
  819. STORE D = 4 LOAD C (gets &B)
  820. <data dependency barrier>
  821. LOAD *C (reads B)
  822. then the following will occur:
  823. +-------+ : : : :
  824. | | +------+ +-------+
  825. | |------>| B=2 |----- --->| Y->8 |
  826. | | : +------+ \ +-------+
  827. | CPU 1 | : | A=1 | \ --->| C->&Y |
  828. | | +------+ | +-------+
  829. | | wwwwwwwwwwwwwwww | : :
  830. | | +------+ | : :
  831. | | : | C=&B |--- | : : +-------+
  832. | | : +------+ \ | +-------+ | |
  833. | |------>| D=4 | ----------->| C->&B |------>| |
  834. | | +------+ | +-------+ | |
  835. +-------+ : : | : : | |
  836. | : : | |
  837. | : : | CPU 2 |
  838. | +-------+ | |
  839. | | X->9 |------>| |
  840. | +-------+ | |
  841. Makes sure all effects ---> \ ddddddddddddddddd | |
  842. prior to the store of C \ +-------+ | |
  843. are perceptible to ----->| B->2 |------>| |
  844. subsequent loads +-------+ | |
  845. : : +-------+
  846. And thirdly, a read barrier acts as a partial order on loads. Consider the
  847. following sequence of events:
  848. CPU 1 CPU 2
  849. ======================= =======================
  850. { A = 0, B = 9 }
  851. STORE A=1
  852. <write barrier>
  853. STORE B=2
  854. LOAD B
  855. LOAD A
  856. Without intervention, CPU 2 may then choose to perceive the events on CPU 1 in
  857. some effectively random order, despite the write barrier issued by CPU 1:
  858. +-------+ : : : :
  859. | | +------+ +-------+
  860. | |------>| A=1 |------ --->| A->0 |
  861. | | +------+ \ +-------+
  862. | CPU 1 | wwwwwwwwwwwwwwww \ --->| B->9 |
  863. | | +------+ | +-------+
  864. | |------>| B=2 |--- | : :
  865. | | +------+ \ | : : +-------+
  866. +-------+ : : \ | +-------+ | |
  867. ---------->| B->2 |------>| |
  868. | +-------+ | CPU 2 |
  869. | | A->0 |------>| |
  870. | +-------+ | |
  871. | : : +-------+
  872. \ : :
  873. \ +-------+
  874. ---->| A->1 |
  875. +-------+
  876. : :
  877. If, however, a read barrier were to be placed between the load of B and the
  878. load of A on CPU 2:
  879. CPU 1 CPU 2
  880. ======================= =======================
  881. { A = 0, B = 9 }
  882. STORE A=1
  883. <write barrier>
  884. STORE B=2
  885. LOAD B
  886. <read barrier>
  887. LOAD A
  888. then the partial ordering imposed by CPU 1 will be perceived correctly by CPU
  889. 2:
  890. +-------+ : : : :
  891. | | +------+ +-------+
  892. | |------>| A=1 |------ --->| A->0 |
  893. | | +------+ \ +-------+
  894. | CPU 1 | wwwwwwwwwwwwwwww \ --->| B->9 |
  895. | | +------+ | +-------+
  896. | |------>| B=2 |--- | : :
  897. | | +------+ \ | : : +-------+
  898. +-------+ : : \ | +-------+ | |
  899. ---------->| B->2 |------>| |
  900. | +-------+ | CPU 2 |
  901. | : : | |
  902. | : : | |
  903. At this point the read ----> \ rrrrrrrrrrrrrrrrr | |
  904. barrier causes all effects \ +-------+ | |
  905. prior to the storage of B ---->| A->1 |------>| |
  906. to be perceptible to CPU 2 +-------+ | |
  907. : : +-------+
  908. To illustrate this more completely, consider what could happen if the code
  909. contained a load of A either side of the read barrier:
  910. CPU 1 CPU 2
  911. ======================= =======================
  912. { A = 0, B = 9 }
  913. STORE A=1
  914. <write barrier>
  915. STORE B=2
  916. LOAD B
  917. LOAD A [first load of A]
  918. <read barrier>
  919. LOAD A [second load of A]
  920. Even though the two loads of A both occur after the load of B, they may both
  921. come up with different values:
  922. +-------+ : : : :
  923. | | +------+ +-------+
  924. | |------>| A=1 |------ --->| A->0 |
  925. | | +------+ \ +-------+
  926. | CPU 1 | wwwwwwwwwwwwwwww \ --->| B->9 |
  927. | | +------+ | +-------+
  928. | |------>| B=2 |--- | : :
  929. | | +------+ \ | : : +-------+
  930. +-------+ : : \ | +-------+ | |
  931. ---------->| B->2 |------>| |
  932. | +-------+ | CPU 2 |
  933. | : : | |
  934. | : : | |
  935. | +-------+ | |
  936. | | A->0 |------>| 1st |
  937. | +-------+ | |
  938. At this point the read ----> \ rrrrrrrrrrrrrrrrr | |
  939. barrier causes all effects \ +-------+ | |
  940. prior to the storage of B ---->| A->1 |------>| 2nd |
  941. to be perceptible to CPU 2 +-------+ | |
  942. : : +-------+
  943. But it may be that the update to A from CPU 1 becomes perceptible to CPU 2
  944. before the read barrier completes anyway:
  945. +-------+ : : : :
  946. | | +------+ +-------+
  947. | |------>| A=1 |------ --->| A->0 |
  948. | | +------+ \ +-------+
  949. | CPU 1 | wwwwwwwwwwwwwwww \ --->| B->9 |
  950. | | +------+ | +-------+
  951. | |------>| B=2 |--- | : :
  952. | | +------+ \ | : : +-------+
  953. +-------+ : : \ | +-------+ | |
  954. ---------->| B->2 |------>| |
  955. | +-------+ | CPU 2 |
  956. | : : | |
  957. \ : : | |
  958. \ +-------+ | |
  959. ---->| A->1 |------>| 1st |
  960. +-------+ | |
  961. rrrrrrrrrrrrrrrrr | |
  962. +-------+ | |
  963. | A->1 |------>| 2nd |
  964. +-------+ | |
  965. : : +-------+
  966. The guarantee is that the second load will always come up with A == 1 if the
  967. load of B came up with B == 2. No such guarantee exists for the first load of
  968. A; that may come up with either A == 0 or A == 1.
  969. READ MEMORY BARRIERS VS LOAD SPECULATION
  970. ----------------------------------------
  971. Many CPUs speculate with loads: that is they see that they will need to load an
  972. item from memory, and they find a time where they're not using the bus for any
  973. other loads, and so do the load in advance - even though they haven't actually
  974. got to that point in the instruction execution flow yet. This permits the
  975. actual load instruction to potentially complete immediately because the CPU
  976. already has the value to hand.
  977. It may turn out that the CPU didn't actually need the value - perhaps because a
  978. branch circumvented the load - in which case it can discard the value or just
  979. cache it for later use.
  980. Consider:
  981. CPU 1 CPU 2
  982. ======================= =======================
  983. LOAD B
  984. DIVIDE } Divide instructions generally
  985. DIVIDE } take a long time to perform
  986. LOAD A
  987. Which might appear as this:
  988. : : +-------+
  989. +-------+ | |
  990. --->| B->2 |------>| |
  991. +-------+ | CPU 2 |
  992. : :DIVIDE | |
  993. +-------+ | |
  994. The CPU being busy doing a ---> --->| A->0 |~~~~ | |
  995. division speculates on the +-------+ ~ | |
  996. LOAD of A : : ~ | |
  997. : :DIVIDE | |
  998. : : ~ | |
  999. Once the divisions are complete --> : : ~-->| |
  1000. the CPU can then perform the : : | |
  1001. LOAD with immediate effect : : +-------+
  1002. Placing a read barrier or a data dependency barrier just before the second
  1003. load:
  1004. CPU 1 CPU 2
  1005. ======================= =======================
  1006. LOAD B
  1007. DIVIDE
  1008. DIVIDE
  1009. <read barrier>
  1010. LOAD A
  1011. will force any value speculatively obtained to be reconsidered to an extent
  1012. dependent on the type of barrier used. If there was no change made to the
  1013. speculated memory location, then the speculated value will just be used:
  1014. : : +-------+
  1015. +-------+ | |
  1016. --->| B->2 |------>| |
  1017. +-------+ | CPU 2 |
  1018. : :DIVIDE | |
  1019. +-------+ | |
  1020. The CPU being busy doing a ---> --->| A->0 |~~~~ | |
  1021. division speculates on the +-------+ ~ | |
  1022. LOAD of A : : ~ | |
  1023. : :DIVIDE | |
  1024. : : ~ | |
  1025. : : ~ | |
  1026. rrrrrrrrrrrrrrrr~ | |
  1027. : : ~ | |
  1028. : : ~-->| |
  1029. : : | |
  1030. : : +-------+
  1031. but if there was an update or an invalidation from another CPU pending, then
  1032. the speculation will be cancelled and the value reloaded:
  1033. : : +-------+
  1034. +-------+ | |
  1035. --->| B->2 |------>| |
  1036. +-------+ | CPU 2 |
  1037. : :DIVIDE | |
  1038. +-------+ | |
  1039. The CPU being busy doing a ---> --->| A->0 |~~~~ | |
  1040. division speculates on the +-------+ ~ | |
  1041. LOAD of A : : ~ | |
  1042. : :DIVIDE | |
  1043. : : ~ | |
  1044. : : ~ | |
  1045. rrrrrrrrrrrrrrrrr | |
  1046. +-------+ | |
  1047. The speculation is discarded ---> --->| A->1 |------>| |
  1048. and an updated value is +-------+ | |
  1049. retrieved : : +-------+
  1050. TRANSITIVITY
  1051. ------------
  1052. Transitivity is a deeply intuitive notion about ordering that is not
  1053. always provided by real computer systems. The following example
  1054. demonstrates transitivity:
  1055. CPU 1 CPU 2 CPU 3
  1056. ======================= ======================= =======================
  1057. { X = 0, Y = 0 }
  1058. STORE X=1 LOAD X STORE Y=1
  1059. <general barrier> <general barrier>
  1060. LOAD Y LOAD X
  1061. Suppose that CPU 2's load from X returns 1 and its load from Y returns 0.
  1062. This indicates that CPU 2's load from X in some sense follows CPU 1's
  1063. store to X and that CPU 2's load from Y in some sense preceded CPU 3's
  1064. store to Y. The question is then "Can CPU 3's load from X return 0?"
  1065. Because CPU 2's load from X in some sense came after CPU 1's store, it
  1066. is natural to expect that CPU 3's load from X must therefore return 1.
  1067. This expectation is an example of transitivity: if a load executing on
  1068. CPU A follows a load from the same variable executing on CPU B, then
  1069. CPU A's load must either return the same value that CPU B's load did,
  1070. or must return some later value.
  1071. In the Linux kernel, use of general memory barriers guarantees
  1072. transitivity. Therefore, in the above example, if CPU 2's load from X
  1073. returns 1 and its load from Y returns 0, then CPU 3's load from X must
  1074. also return 1.
  1075. However, transitivity is -not- guaranteed for read or write barriers.
  1076. For example, suppose that CPU 2's general barrier in the above example
  1077. is changed to a read barrier as shown below:
  1078. CPU 1 CPU 2 CPU 3
  1079. ======================= ======================= =======================
  1080. { X = 0, Y = 0 }
  1081. STORE X=1 LOAD X STORE Y=1
  1082. <read barrier> <general barrier>
  1083. LOAD Y LOAD X
  1084. This substitution destroys transitivity: in this example, it is perfectly
  1085. legal for CPU 2's load from X to return 1, its load from Y to return 0,
  1086. and CPU 3's load from X to return 0.
  1087. The key point is that although CPU 2's read barrier orders its pair
  1088. of loads, it does not guarantee to order CPU 1's store. Therefore, if
  1089. this example runs on a system where CPUs 1 and 2 share a store buffer
  1090. or a level of cache, CPU 2 might have early access to CPU 1's writes.
  1091. General barriers are therefore required to ensure that all CPUs agree
  1092. on the combined order of CPU 1's and CPU 2's accesses.
  1093. General barriers provide "global transitivity", so that all CPUs will
  1094. agree on the order of operations. In contrast, a chain of release-acquire
  1095. pairs provides only "local transitivity", so that only those CPUs on
  1096. the chain are guaranteed to agree on the combined order of the accesses.
  1097. For example, switching to C code in deference to Herman Hollerith:
  1098. int u, v, x, y, z;
  1099. void cpu0(void)
  1100. {
  1101. r0 = smp_load_acquire(&x);
  1102. WRITE_ONCE(u, 1);
  1103. smp_store_release(&y, 1);
  1104. }
  1105. void cpu1(void)
  1106. {
  1107. r1 = smp_load_acquire(&y);
  1108. r4 = READ_ONCE(v);
  1109. r5 = READ_ONCE(u);
  1110. smp_store_release(&z, 1);
  1111. }
  1112. void cpu2(void)
  1113. {
  1114. r2 = smp_load_acquire(&z);
  1115. smp_store_release(&x, 1);
  1116. }
  1117. void cpu3(void)
  1118. {
  1119. WRITE_ONCE(v, 1);
  1120. smp_mb();
  1121. r3 = READ_ONCE(u);
  1122. }
  1123. Because cpu0(), cpu1(), and cpu2() participate in a local transitive
  1124. chain of smp_store_release()/smp_load_acquire() pairs, the following
  1125. outcome is prohibited:
  1126. r0 == 1 && r1 == 1 && r2 == 1
  1127. Furthermore, because of the release-acquire relationship between cpu0()
  1128. and cpu1(), cpu1() must see cpu0()'s writes, so that the following
  1129. outcome is prohibited:
  1130. r1 == 1 && r5 == 0
  1131. However, the transitivity of release-acquire is local to the participating
  1132. CPUs and does not apply to cpu3(). Therefore, the following outcome
  1133. is possible:
  1134. r0 == 0 && r1 == 1 && r2 == 1 && r3 == 0 && r4 == 0
  1135. As an aside, the following outcome is also possible:
  1136. r0 == 0 && r1 == 1 && r2 == 1 && r3 == 0 && r4 == 0 && r5 == 1
  1137. Although cpu0(), cpu1(), and cpu2() will see their respective reads and
  1138. writes in order, CPUs not involved in the release-acquire chain might
  1139. well disagree on the order. This disagreement stems from the fact that
  1140. the weak memory-barrier instructions used to implement smp_load_acquire()
  1141. and smp_store_release() are not required to order prior stores against
  1142. subsequent loads in all cases. This means that cpu3() can see cpu0()'s
  1143. store to u as happening -after- cpu1()'s load from v, even though
  1144. both cpu0() and cpu1() agree that these two operations occurred in the
  1145. intended order.
  1146. However, please keep in mind that smp_load_acquire() is not magic.
  1147. In particular, it simply reads from its argument with ordering. It does
  1148. -not- ensure that any particular value will be read. Therefore, the
  1149. following outcome is possible:
  1150. r0 == 0 && r1 == 0 && r2 == 0 && r5 == 0
  1151. Note that this outcome can happen even on a mythical sequentially
  1152. consistent system where nothing is ever reordered.
  1153. To reiterate, if your code requires global transitivity, use general
  1154. barriers throughout.
  1155. ========================
  1156. EXPLICIT KERNEL BARRIERS
  1157. ========================
  1158. The Linux kernel has a variety of different barriers that act at different
  1159. levels:
  1160. (*) Compiler barrier.
  1161. (*) CPU memory barriers.
  1162. (*) MMIO write barrier.
  1163. COMPILER BARRIER
  1164. ----------------
  1165. The Linux kernel has an explicit compiler barrier function that prevents the
  1166. compiler from moving the memory accesses either side of it to the other side:
  1167. barrier();
  1168. This is a general barrier -- there are no read-read or write-write
  1169. variants of barrier(). However, READ_ONCE() and WRITE_ONCE() can be
  1170. thought of as weak forms of barrier() that affect only the specific
  1171. accesses flagged by the READ_ONCE() or WRITE_ONCE().
  1172. The barrier() function has the following effects:
  1173. (*) Prevents the compiler from reordering accesses following the
  1174. barrier() to precede any accesses preceding the barrier().
  1175. One example use for this property is to ease communication between
  1176. interrupt-handler code and the code that was interrupted.
  1177. (*) Within a loop, forces the compiler to load the variables used
  1178. in that loop's conditional on each pass through that loop.
  1179. The READ_ONCE() and WRITE_ONCE() functions can prevent any number of
  1180. optimizations that, while perfectly safe in single-threaded code, can
  1181. be fatal in concurrent code. Here are some examples of these sorts
  1182. of optimizations:
  1183. (*) The compiler is within its rights to reorder loads and stores
  1184. to the same variable, and in some cases, the CPU is within its
  1185. rights to reorder loads to the same variable. This means that
  1186. the following code:
  1187. a[0] = x;
  1188. a[1] = x;
  1189. Might result in an older value of x stored in a[1] than in a[0].
  1190. Prevent both the compiler and the CPU from doing this as follows:
  1191. a[0] = READ_ONCE(x);
  1192. a[1] = READ_ONCE(x);
  1193. In short, READ_ONCE() and WRITE_ONCE() provide cache coherence for
  1194. accesses from multiple CPUs to a single variable.
  1195. (*) The compiler is within its rights to merge successive loads from
  1196. the same variable. Such merging can cause the compiler to "optimize"
  1197. the following code:
  1198. while (tmp = a)
  1199. do_something_with(tmp);
  1200. into the following code, which, although in some sense legitimate
  1201. for single-threaded code, is almost certainly not what the developer
  1202. intended:
  1203. if (tmp = a)
  1204. for (;;)
  1205. do_something_with(tmp);
  1206. Use READ_ONCE() to prevent the compiler from doing this to you:
  1207. while (tmp = READ_ONCE(a))
  1208. do_something_with(tmp);
  1209. (*) The compiler is within its rights to reload a variable, for example,
  1210. in cases where high register pressure prevents the compiler from
  1211. keeping all data of interest in registers. The compiler might
  1212. therefore optimize the variable 'tmp' out of our previous example:
  1213. while (tmp = a)
  1214. do_something_with(tmp);
  1215. This could result in the following code, which is perfectly safe in
  1216. single-threaded code, but can be fatal in concurrent code:
  1217. while (a)
  1218. do_something_with(a);
  1219. For example, the optimized version of this code could result in
  1220. passing a zero to do_something_with() in the case where the variable
  1221. a was modified by some other CPU between the "while" statement and
  1222. the call to do_something_with().
  1223. Again, use READ_ONCE() to prevent the compiler from doing this:
  1224. while (tmp = READ_ONCE(a))
  1225. do_something_with(tmp);
  1226. Note that if the compiler runs short of registers, it might save
  1227. tmp onto the stack. The overhead of this saving and later restoring
  1228. is why compilers reload variables. Doing so is perfectly safe for
  1229. single-threaded code, so you need to tell the compiler about cases
  1230. where it is not safe.
  1231. (*) The compiler is within its rights to omit a load entirely if it knows
  1232. what the value will be. For example, if the compiler can prove that
  1233. the value of variable 'a' is always zero, it can optimize this code:
  1234. while (tmp = a)
  1235. do_something_with(tmp);
  1236. Into this:
  1237. do { } while (0);
  1238. This transformation is a win for single-threaded code because it
  1239. gets rid of a load and a branch. The problem is that the compiler
  1240. will carry out its proof assuming that the current CPU is the only
  1241. one updating variable 'a'. If variable 'a' is shared, then the
  1242. compiler's proof will be erroneous. Use READ_ONCE() to tell the
  1243. compiler that it doesn't know as much as it thinks it does:
  1244. while (tmp = READ_ONCE(a))
  1245. do_something_with(tmp);
  1246. But please note that the compiler is also closely watching what you
  1247. do with the value after the READ_ONCE(). For example, suppose you
  1248. do the following and MAX is a preprocessor macro with the value 1:
  1249. while ((tmp = READ_ONCE(a)) % MAX)
  1250. do_something_with(tmp);
  1251. Then the compiler knows that the result of the "%" operator applied
  1252. to MAX will always be zero, again allowing the compiler to optimize
  1253. the code into near-nonexistence. (It will still load from the
  1254. variable 'a'.)
  1255. (*) Similarly, the compiler is within its rights to omit a store entirely
  1256. if it knows that the variable already has the value being stored.
  1257. Again, the compiler assumes that the current CPU is the only one
  1258. storing into the variable, which can cause the compiler to do the
  1259. wrong thing for shared variables. For example, suppose you have
  1260. the following:
  1261. a = 0;
  1262. ... Code that does not store to variable a ...
  1263. a = 0;
  1264. The compiler sees that the value of variable 'a' is already zero, so
  1265. it might well omit the second store. This would come as a fatal
  1266. surprise if some other CPU might have stored to variable 'a' in the
  1267. meantime.
  1268. Use WRITE_ONCE() to prevent the compiler from making this sort of
  1269. wrong guess:
  1270. WRITE_ONCE(a, 0);
  1271. ... Code that does not store to variable a ...
  1272. WRITE_ONCE(a, 0);
  1273. (*) The compiler is within its rights to reorder memory accesses unless
  1274. you tell it not to. For example, consider the following interaction
  1275. between process-level code and an interrupt handler:
  1276. void process_level(void)
  1277. {
  1278. msg = get_message();
  1279. flag = true;
  1280. }
  1281. void interrupt_handler(void)
  1282. {
  1283. if (flag)
  1284. process_message(msg);
  1285. }
  1286. There is nothing to prevent the compiler from transforming
  1287. process_level() to the following, in fact, this might well be a
  1288. win for single-threaded code:
  1289. void process_level(void)
  1290. {
  1291. flag = true;
  1292. msg = get_message();
  1293. }
  1294. If the interrupt occurs between these two statement, then
  1295. interrupt_handler() might be passed a garbled msg. Use WRITE_ONCE()
  1296. to prevent this as follows:
  1297. void process_level(void)
  1298. {
  1299. WRITE_ONCE(msg, get_message());
  1300. WRITE_ONCE(flag, true);
  1301. }
  1302. void interrupt_handler(void)
  1303. {
  1304. if (READ_ONCE(flag))
  1305. process_message(READ_ONCE(msg));
  1306. }
  1307. Note that the READ_ONCE() and WRITE_ONCE() wrappers in
  1308. interrupt_handler() are needed if this interrupt handler can itself
  1309. be interrupted by something that also accesses 'flag' and 'msg',
  1310. for example, a nested interrupt or an NMI. Otherwise, READ_ONCE()
  1311. and WRITE_ONCE() are not needed in interrupt_handler() other than
  1312. for documentation purposes. (Note also that nested interrupts
  1313. do not typically occur in modern Linux kernels, in fact, if an
  1314. interrupt handler returns with interrupts enabled, you will get a
  1315. WARN_ONCE() splat.)
  1316. You should assume that the compiler can move READ_ONCE() and
  1317. WRITE_ONCE() past code not containing READ_ONCE(), WRITE_ONCE(),
  1318. barrier(), or similar primitives.
  1319. This effect could also be achieved using barrier(), but READ_ONCE()
  1320. and WRITE_ONCE() are more selective: With READ_ONCE() and
  1321. WRITE_ONCE(), the compiler need only forget the contents of the
  1322. indicated memory locations, while with barrier() the compiler must
  1323. discard the value of all memory locations that it has currented
  1324. cached in any machine registers. Of course, the compiler must also
  1325. respect the order in which the READ_ONCE()s and WRITE_ONCE()s occur,
  1326. though the CPU of course need not do so.
  1327. (*) The compiler is within its rights to invent stores to a variable,
  1328. as in the following example:
  1329. if (a)
  1330. b = a;
  1331. else
  1332. b = 42;
  1333. The compiler might save a branch by optimizing this as follows:
  1334. b = 42;
  1335. if (a)
  1336. b = a;
  1337. In single-threaded code, this is not only safe, but also saves
  1338. a branch. Unfortunately, in concurrent code, this optimization
  1339. could cause some other CPU to see a spurious value of 42 -- even
  1340. if variable 'a' was never zero -- when loading variable 'b'.
  1341. Use WRITE_ONCE() to prevent this as follows:
  1342. if (a)
  1343. WRITE_ONCE(b, a);
  1344. else
  1345. WRITE_ONCE(b, 42);
  1346. The compiler can also invent loads. These are usually less
  1347. damaging, but they can result in cache-line bouncing and thus in
  1348. poor performance and scalability. Use READ_ONCE() to prevent
  1349. invented loads.
  1350. (*) For aligned memory locations whose size allows them to be accessed
  1351. with a single memory-reference instruction, prevents "load tearing"
  1352. and "store tearing," in which a single large access is replaced by
  1353. multiple smaller accesses. For example, given an architecture having
  1354. 16-bit store instructions with 7-bit immediate fields, the compiler
  1355. might be tempted to use two 16-bit store-immediate instructions to
  1356. implement the following 32-bit store:
  1357. p = 0x00010002;
  1358. Please note that GCC really does use this sort of optimization,
  1359. which is not surprising given that it would likely take more
  1360. than two instructions to build the constant and then store it.
  1361. This optimization can therefore be a win in single-threaded code.
  1362. In fact, a recent bug (since fixed) caused GCC to incorrectly use
  1363. this optimization in a volatile store. In the absence of such bugs,
  1364. use of WRITE_ONCE() prevents store tearing in the following example:
  1365. WRITE_ONCE(p, 0x00010002);
  1366. Use of packed structures can also result in load and store tearing,
  1367. as in this example:
  1368. struct __attribute__((__packed__)) foo {
  1369. short a;
  1370. int b;
  1371. short c;
  1372. };
  1373. struct foo foo1, foo2;
  1374. ...
  1375. foo2.a = foo1.a;
  1376. foo2.b = foo1.b;
  1377. foo2.c = foo1.c;
  1378. Because there are no READ_ONCE() or WRITE_ONCE() wrappers and no
  1379. volatile markings, the compiler would be well within its rights to
  1380. implement these three assignment statements as a pair of 32-bit
  1381. loads followed by a pair of 32-bit stores. This would result in
  1382. load tearing on 'foo1.b' and store tearing on 'foo2.b'. READ_ONCE()
  1383. and WRITE_ONCE() again prevent tearing in this example:
  1384. foo2.a = foo1.a;
  1385. WRITE_ONCE(foo2.b, READ_ONCE(foo1.b));
  1386. foo2.c = foo1.c;
  1387. All that aside, it is never necessary to use READ_ONCE() and
  1388. WRITE_ONCE() on a variable that has been marked volatile. For example,
  1389. because 'jiffies' is marked volatile, it is never necessary to
  1390. say READ_ONCE(jiffies). The reason for this is that READ_ONCE() and
  1391. WRITE_ONCE() are implemented as volatile casts, which has no effect when
  1392. its argument is already marked volatile.
  1393. Please note that these compiler barriers have no direct effect on the CPU,
  1394. which may then reorder things however it wishes.
  1395. CPU MEMORY BARRIERS
  1396. -------------------
  1397. The Linux kernel has eight basic CPU memory barriers:
  1398. TYPE MANDATORY SMP CONDITIONAL
  1399. =============== ======================= ===========================
  1400. GENERAL mb() smp_mb()
  1401. WRITE wmb() smp_wmb()
  1402. READ rmb() smp_rmb()
  1403. DATA DEPENDENCY read_barrier_depends() smp_read_barrier_depends()
  1404. All memory barriers except the data dependency barriers imply a compiler
  1405. barrier. Data dependencies do not impose any additional compiler ordering.
  1406. Aside: In the case of data dependencies, the compiler would be expected
  1407. to issue the loads in the correct order (eg. `a[b]` would have to load
  1408. the value of b before loading a[b]), however there is no guarantee in
  1409. the C specification that the compiler may not speculate the value of b
  1410. (eg. is equal to 1) and load a before b (eg. tmp = a[1]; if (b != 1)
  1411. tmp = a[b]; ). There is also the problem of a compiler reloading b after
  1412. having loaded a[b], thus having a newer copy of b than a[b]. A consensus
  1413. has not yet been reached about these problems, however the READ_ONCE()
  1414. macro is a good place to start looking.
  1415. SMP memory barriers are reduced to compiler barriers on uniprocessor compiled
  1416. systems because it is assumed that a CPU will appear to be self-consistent,
  1417. and will order overlapping accesses correctly with respect to itself.
  1418. However, see the subsection on "Virtual Machine Guests" below.
  1419. [!] Note that SMP memory barriers _must_ be used to control the ordering of
  1420. references to shared memory on SMP systems, though the use of locking instead
  1421. is sufficient.
  1422. Mandatory barriers should not be used to control SMP effects, since mandatory
  1423. barriers impose unnecessary overhead on both SMP and UP systems. They may,
  1424. however, be used to control MMIO effects on accesses through relaxed memory I/O
  1425. windows. These barriers are required even on non-SMP systems as they affect
  1426. the order in which memory operations appear to a device by prohibiting both the
  1427. compiler and the CPU from reordering them.
  1428. There are some more advanced barrier functions:
  1429. (*) smp_store_mb(var, value)
  1430. This assigns the value to the variable and then inserts a full memory
  1431. barrier after it. It isn't guaranteed to insert anything more than a
  1432. compiler barrier in a UP compilation.
  1433. (*) smp_mb__before_atomic();
  1434. (*) smp_mb__after_atomic();
  1435. These are for use with atomic (such as add, subtract, increment and
  1436. decrement) functions that don't return a value, especially when used for
  1437. reference counting. These functions do not imply memory barriers.
  1438. These are also used for atomic bitop functions that do not return a
  1439. value (such as set_bit and clear_bit).
  1440. As an example, consider a piece of code that marks an object as being dead
  1441. and then decrements the object's reference count:
  1442. obj->dead = 1;
  1443. smp_mb__before_atomic();
  1444. atomic_dec(&obj->ref_count);
  1445. This makes sure that the death mark on the object is perceived to be set
  1446. *before* the reference counter is decremented.
  1447. See Documentation/atomic_ops.txt for more information. See the "Atomic
  1448. operations" subsection for information on where to use these.
  1449. (*) lockless_dereference();
  1450. This can be thought of as a pointer-fetch wrapper around the
  1451. smp_read_barrier_depends() data-dependency barrier.
  1452. This is also similar to rcu_dereference(), but in cases where
  1453. object lifetime is handled by some mechanism other than RCU, for
  1454. example, when the objects removed only when the system goes down.
  1455. In addition, lockless_dereference() is used in some data structures
  1456. that can be used both with and without RCU.
  1457. (*) dma_wmb();
  1458. (*) dma_rmb();
  1459. These are for use with consistent memory to guarantee the ordering
  1460. of writes or reads of shared memory accessible to both the CPU and a
  1461. DMA capable device.
  1462. For example, consider a device driver that shares memory with a device
  1463. and uses a descriptor status value to indicate if the descriptor belongs
  1464. to the device or the CPU, and a doorbell to notify it when new
  1465. descriptors are available:
  1466. if (desc->status != DEVICE_OWN) {
  1467. /* do not read data until we own descriptor */
  1468. dma_rmb();
  1469. /* read/modify data */
  1470. read_data = desc->data;
  1471. desc->data = write_data;
  1472. /* flush modifications before status update */
  1473. dma_wmb();
  1474. /* assign ownership */
  1475. desc->status = DEVICE_OWN;
  1476. /* force memory to sync before notifying device via MMIO */
  1477. wmb();
  1478. /* notify device of new descriptors */
  1479. writel(DESC_NOTIFY, doorbell);
  1480. }
  1481. The dma_rmb() allows us guarantee the device has released ownership
  1482. before we read the data from the descriptor, and the dma_wmb() allows
  1483. us to guarantee the data is written to the descriptor before the device
  1484. can see it now has ownership. The wmb() is needed to guarantee that the
  1485. cache coherent memory writes have completed before attempting a write to
  1486. the cache incoherent MMIO region.
  1487. See Documentation/DMA-API.txt for more information on consistent memory.
  1488. MMIO WRITE BARRIER
  1489. ------------------
  1490. The Linux kernel also has a special barrier for use with memory-mapped I/O
  1491. writes:
  1492. mmiowb();
  1493. This is a variation on the mandatory write barrier that causes writes to weakly
  1494. ordered I/O regions to be partially ordered. Its effects may go beyond the
  1495. CPU->Hardware interface and actually affect the hardware at some level.
  1496. See the subsection "Acquires vs I/O accesses" for more information.
  1497. ===============================
  1498. IMPLICIT KERNEL MEMORY BARRIERS
  1499. ===============================
  1500. Some of the other functions in the linux kernel imply memory barriers, amongst
  1501. which are locking and scheduling functions.
  1502. This specification is a _minimum_ guarantee; any particular architecture may
  1503. provide more substantial guarantees, but these may not be relied upon outside
  1504. of arch specific code.
  1505. LOCK ACQUISITION FUNCTIONS
  1506. --------------------------
  1507. The Linux kernel has a number of locking constructs:
  1508. (*) spin locks
  1509. (*) R/W spin locks
  1510. (*) mutexes
  1511. (*) semaphores
  1512. (*) R/W semaphores
  1513. In all cases there are variants on "ACQUIRE" operations and "RELEASE" operations
  1514. for each construct. These operations all imply certain barriers:
  1515. (1) ACQUIRE operation implication:
  1516. Memory operations issued after the ACQUIRE will be completed after the
  1517. ACQUIRE operation has completed.
  1518. Memory operations issued before the ACQUIRE may be completed after
  1519. the ACQUIRE operation has completed. An smp_mb__before_spinlock(),
  1520. combined with a following ACQUIRE, orders prior stores against
  1521. subsequent loads and stores. Note that this is weaker than smp_mb()!
  1522. The smp_mb__before_spinlock() primitive is free on many architectures.
  1523. (2) RELEASE operation implication:
  1524. Memory operations issued before the RELEASE will be completed before the
  1525. RELEASE operation has completed.
  1526. Memory operations issued after the RELEASE may be completed before the
  1527. RELEASE operation has completed.
  1528. (3) ACQUIRE vs ACQUIRE implication:
  1529. All ACQUIRE operations issued before another ACQUIRE operation will be
  1530. completed before that ACQUIRE operation.
  1531. (4) ACQUIRE vs RELEASE implication:
  1532. All ACQUIRE operations issued before a RELEASE operation will be
  1533. completed before the RELEASE operation.
  1534. (5) Failed conditional ACQUIRE implication:
  1535. Certain locking variants of the ACQUIRE operation may fail, either due to
  1536. being unable to get the lock immediately, or due to receiving an unblocked
  1537. signal whilst asleep waiting for the lock to become available. Failed
  1538. locks do not imply any sort of barrier.
  1539. [!] Note: one of the consequences of lock ACQUIREs and RELEASEs being only
  1540. one-way barriers is that the effects of instructions outside of a critical
  1541. section may seep into the inside of the critical section.
  1542. An ACQUIRE followed by a RELEASE may not be assumed to be full memory barrier
  1543. because it is possible for an access preceding the ACQUIRE to happen after the
  1544. ACQUIRE, and an access following the RELEASE to happen before the RELEASE, and
  1545. the two accesses can themselves then cross:
  1546. *A = a;
  1547. ACQUIRE M
  1548. RELEASE M
  1549. *B = b;
  1550. may occur as:
  1551. ACQUIRE M, STORE *B, STORE *A, RELEASE M
  1552. When the ACQUIRE and RELEASE are a lock acquisition and release,
  1553. respectively, this same reordering can occur if the lock's ACQUIRE and
  1554. RELEASE are to the same lock variable, but only from the perspective of
  1555. another CPU not holding that lock. In short, a ACQUIRE followed by an
  1556. RELEASE may -not- be assumed to be a full memory barrier.
  1557. Similarly, the reverse case of a RELEASE followed by an ACQUIRE does
  1558. not imply a full memory barrier. Therefore, the CPU's execution of the
  1559. critical sections corresponding to the RELEASE and the ACQUIRE can cross,
  1560. so that:
  1561. *A = a;
  1562. RELEASE M
  1563. ACQUIRE N
  1564. *B = b;
  1565. could occur as:
  1566. ACQUIRE N, STORE *B, STORE *A, RELEASE M
  1567. It might appear that this reordering could introduce a deadlock.
  1568. However, this cannot happen because if such a deadlock threatened,
  1569. the RELEASE would simply complete, thereby avoiding the deadlock.
  1570. Why does this work?
  1571. One key point is that we are only talking about the CPU doing
  1572. the reordering, not the compiler. If the compiler (or, for
  1573. that matter, the developer) switched the operations, deadlock
  1574. -could- occur.
  1575. But suppose the CPU reordered the operations. In this case,
  1576. the unlock precedes the lock in the assembly code. The CPU
  1577. simply elected to try executing the later lock operation first.
  1578. If there is a deadlock, this lock operation will simply spin (or
  1579. try to sleep, but more on that later). The CPU will eventually
  1580. execute the unlock operation (which preceded the lock operation
  1581. in the assembly code), which will unravel the potential deadlock,
  1582. allowing the lock operation to succeed.
  1583. But what if the lock is a sleeplock? In that case, the code will
  1584. try to enter the scheduler, where it will eventually encounter
  1585. a memory barrier, which will force the earlier unlock operation
  1586. to complete, again unraveling the deadlock. There might be
  1587. a sleep-unlock race, but the locking primitive needs to resolve
  1588. such races properly in any case.
  1589. Locks and semaphores may not provide any guarantee of ordering on UP compiled
  1590. systems, and so cannot be counted on in such a situation to actually achieve
  1591. anything at all - especially with respect to I/O accesses - unless combined
  1592. with interrupt disabling operations.
  1593. See also the section on "Inter-CPU acquiring barrier effects".
  1594. As an example, consider the following:
  1595. *A = a;
  1596. *B = b;
  1597. ACQUIRE
  1598. *C = c;
  1599. *D = d;
  1600. RELEASE
  1601. *E = e;
  1602. *F = f;
  1603. The following sequence of events is acceptable:
  1604. ACQUIRE, {*F,*A}, *E, {*C,*D}, *B, RELEASE
  1605. [+] Note that {*F,*A} indicates a combined access.
  1606. But none of the following are:
  1607. {*F,*A}, *B, ACQUIRE, *C, *D, RELEASE, *E
  1608. *A, *B, *C, ACQUIRE, *D, RELEASE, *E, *F
  1609. *A, *B, ACQUIRE, *C, RELEASE, *D, *E, *F
  1610. *B, ACQUIRE, *C, *D, RELEASE, {*F,*A}, *E
  1611. INTERRUPT DISABLING FUNCTIONS
  1612. -----------------------------
  1613. Functions that disable interrupts (ACQUIRE equivalent) and enable interrupts
  1614. (RELEASE equivalent) will act as compiler barriers only. So if memory or I/O
  1615. barriers are required in such a situation, they must be provided from some
  1616. other means.
  1617. SLEEP AND WAKE-UP FUNCTIONS
  1618. ---------------------------
  1619. Sleeping and waking on an event flagged in global data can be viewed as an
  1620. interaction between two pieces of data: the task state of the task waiting for
  1621. the event and the global data used to indicate the event. To make sure that
  1622. these appear to happen in the right order, the primitives to begin the process
  1623. of going to sleep, and the primitives to initiate a wake up imply certain
  1624. barriers.
  1625. Firstly, the sleeper normally follows something like this sequence of events:
  1626. for (;;) {
  1627. set_current_state(TASK_UNINTERRUPTIBLE);
  1628. if (event_indicated)
  1629. break;
  1630. schedule();
  1631. }
  1632. A general memory barrier is interpolated automatically by set_current_state()
  1633. after it has altered the task state:
  1634. CPU 1
  1635. ===============================
  1636. set_current_state();
  1637. smp_store_mb();
  1638. STORE current->state
  1639. <general barrier>
  1640. LOAD event_indicated
  1641. set_current_state() may be wrapped by:
  1642. prepare_to_wait();
  1643. prepare_to_wait_exclusive();
  1644. which therefore also imply a general memory barrier after setting the state.
  1645. The whole sequence above is available in various canned forms, all of which
  1646. interpolate the memory barrier in the right place:
  1647. wait_event();
  1648. wait_event_interruptible();
  1649. wait_event_interruptible_exclusive();
  1650. wait_event_interruptible_timeout();
  1651. wait_event_killable();
  1652. wait_event_timeout();
  1653. wait_on_bit();
  1654. wait_on_bit_lock();
  1655. Secondly, code that performs a wake up normally follows something like this:
  1656. event_indicated = 1;
  1657. wake_up(&event_wait_queue);
  1658. or:
  1659. event_indicated = 1;
  1660. wake_up_process(event_daemon);
  1661. A write memory barrier is implied by wake_up() and co. if and only if they
  1662. wake something up. The barrier occurs before the task state is cleared, and so
  1663. sits between the STORE to indicate the event and the STORE to set TASK_RUNNING:
  1664. CPU 1 CPU 2
  1665. =============================== ===============================
  1666. set_current_state(); STORE event_indicated
  1667. smp_store_mb(); wake_up();
  1668. STORE current->state <write barrier>
  1669. <general barrier> STORE current->state
  1670. LOAD event_indicated
  1671. To repeat, this write memory barrier is present if and only if something
  1672. is actually awakened. To see this, consider the following sequence of
  1673. events, where X and Y are both initially zero:
  1674. CPU 1 CPU 2
  1675. =============================== ===============================
  1676. X = 1; STORE event_indicated
  1677. smp_mb(); wake_up();
  1678. Y = 1; wait_event(wq, Y == 1);
  1679. wake_up(); load from Y sees 1, no memory barrier
  1680. load from X might see 0
  1681. In contrast, if a wakeup does occur, CPU 2's load from X would be guaranteed
  1682. to see 1.
  1683. The available waker functions include:
  1684. complete();
  1685. wake_up();
  1686. wake_up_all();
  1687. wake_up_bit();
  1688. wake_up_interruptible();
  1689. wake_up_interruptible_all();
  1690. wake_up_interruptible_nr();
  1691. wake_up_interruptible_poll();
  1692. wake_up_interruptible_sync();
  1693. wake_up_interruptible_sync_poll();
  1694. wake_up_locked();
  1695. wake_up_locked_poll();
  1696. wake_up_nr();
  1697. wake_up_poll();
  1698. wake_up_process();
  1699. [!] Note that the memory barriers implied by the sleeper and the waker do _not_
  1700. order multiple stores before the wake-up with respect to loads of those stored
  1701. values after the sleeper has called set_current_state(). For instance, if the
  1702. sleeper does:
  1703. set_current_state(TASK_INTERRUPTIBLE);
  1704. if (event_indicated)
  1705. break;
  1706. __set_current_state(TASK_RUNNING);
  1707. do_something(my_data);
  1708. and the waker does:
  1709. my_data = value;
  1710. event_indicated = 1;
  1711. wake_up(&event_wait_queue);
  1712. there's no guarantee that the change to event_indicated will be perceived by
  1713. the sleeper as coming after the change to my_data. In such a circumstance, the
  1714. code on both sides must interpolate its own memory barriers between the
  1715. separate data accesses. Thus the above sleeper ought to do:
  1716. set_current_state(TASK_INTERRUPTIBLE);
  1717. if (event_indicated) {
  1718. smp_rmb();
  1719. do_something(my_data);
  1720. }
  1721. and the waker should do:
  1722. my_data = value;
  1723. smp_wmb();
  1724. event_indicated = 1;
  1725. wake_up(&event_wait_queue);
  1726. MISCELLANEOUS FUNCTIONS
  1727. -----------------------
  1728. Other functions that imply barriers:
  1729. (*) schedule() and similar imply full memory barriers.
  1730. ===================================
  1731. INTER-CPU ACQUIRING BARRIER EFFECTS
  1732. ===================================
  1733. On SMP systems locking primitives give a more substantial form of barrier: one
  1734. that does affect memory access ordering on other CPUs, within the context of
  1735. conflict on any particular lock.
  1736. ACQUIRES VS MEMORY ACCESSES
  1737. ---------------------------
  1738. Consider the following: the system has a pair of spinlocks (M) and (Q), and
  1739. three CPUs; then should the following sequence of events occur:
  1740. CPU 1 CPU 2
  1741. =============================== ===============================
  1742. WRITE_ONCE(*A, a); WRITE_ONCE(*E, e);
  1743. ACQUIRE M ACQUIRE Q
  1744. WRITE_ONCE(*B, b); WRITE_ONCE(*F, f);
  1745. WRITE_ONCE(*C, c); WRITE_ONCE(*G, g);
  1746. RELEASE M RELEASE Q
  1747. WRITE_ONCE(*D, d); WRITE_ONCE(*H, h);
  1748. Then there is no guarantee as to what order CPU 3 will see the accesses to *A
  1749. through *H occur in, other than the constraints imposed by the separate locks
  1750. on the separate CPUs. It might, for example, see:
  1751. *E, ACQUIRE M, ACQUIRE Q, *G, *C, *F, *A, *B, RELEASE Q, *D, *H, RELEASE M
  1752. But it won't see any of:
  1753. *B, *C or *D preceding ACQUIRE M
  1754. *A, *B or *C following RELEASE M
  1755. *F, *G or *H preceding ACQUIRE Q
  1756. *E, *F or *G following RELEASE Q
  1757. ACQUIRES VS I/O ACCESSES
  1758. ------------------------
  1759. Under certain circumstances (especially involving NUMA), I/O accesses within
  1760. two spinlocked sections on two different CPUs may be seen as interleaved by the
  1761. PCI bridge, because the PCI bridge does not necessarily participate in the
  1762. cache-coherence protocol, and is therefore incapable of issuing the required
  1763. read memory barriers.
  1764. For example:
  1765. CPU 1 CPU 2
  1766. =============================== ===============================
  1767. spin_lock(Q)
  1768. writel(0, ADDR)
  1769. writel(1, DATA);
  1770. spin_unlock(Q);
  1771. spin_lock(Q);
  1772. writel(4, ADDR);
  1773. writel(5, DATA);
  1774. spin_unlock(Q);
  1775. may be seen by the PCI bridge as follows:
  1776. STORE *ADDR = 0, STORE *ADDR = 4, STORE *DATA = 1, STORE *DATA = 5
  1777. which would probably cause the hardware to malfunction.
  1778. What is necessary here is to intervene with an mmiowb() before dropping the
  1779. spinlock, for example:
  1780. CPU 1 CPU 2
  1781. =============================== ===============================
  1782. spin_lock(Q)
  1783. writel(0, ADDR)
  1784. writel(1, DATA);
  1785. mmiowb();
  1786. spin_unlock(Q);
  1787. spin_lock(Q);
  1788. writel(4, ADDR);
  1789. writel(5, DATA);
  1790. mmiowb();
  1791. spin_unlock(Q);
  1792. this will ensure that the two stores issued on CPU 1 appear at the PCI bridge
  1793. before either of the stores issued on CPU 2.
  1794. Furthermore, following a store by a load from the same device obviates the need
  1795. for the mmiowb(), because the load forces the store to complete before the load
  1796. is performed:
  1797. CPU 1 CPU 2
  1798. =============================== ===============================
  1799. spin_lock(Q)
  1800. writel(0, ADDR)
  1801. a = readl(DATA);
  1802. spin_unlock(Q);
  1803. spin_lock(Q);
  1804. writel(4, ADDR);
  1805. b = readl(DATA);
  1806. spin_unlock(Q);
  1807. See Documentation/DocBook/deviceiobook.tmpl for more information.
  1808. =================================
  1809. WHERE ARE MEMORY BARRIERS NEEDED?
  1810. =================================
  1811. Under normal operation, memory operation reordering is generally not going to
  1812. be a problem as a single-threaded linear piece of code will still appear to
  1813. work correctly, even if it's in an SMP kernel. There are, however, four
  1814. circumstances in which reordering definitely _could_ be a problem:
  1815. (*) Interprocessor interaction.
  1816. (*) Atomic operations.
  1817. (*) Accessing devices.
  1818. (*) Interrupts.
  1819. INTERPROCESSOR INTERACTION
  1820. --------------------------
  1821. When there's a system with more than one processor, more than one CPU in the
  1822. system may be working on the same data set at the same time. This can cause
  1823. synchronisation problems, and the usual way of dealing with them is to use
  1824. locks. Locks, however, are quite expensive, and so it may be preferable to
  1825. operate without the use of a lock if at all possible. In such a case
  1826. operations that affect both CPUs may have to be carefully ordered to prevent
  1827. a malfunction.
  1828. Consider, for example, the R/W semaphore slow path. Here a waiting process is
  1829. queued on the semaphore, by virtue of it having a piece of its stack linked to
  1830. the semaphore's list of waiting processes:
  1831. struct rw_semaphore {
  1832. ...
  1833. spinlock_t lock;
  1834. struct list_head waiters;
  1835. };
  1836. struct rwsem_waiter {
  1837. struct list_head list;
  1838. struct task_struct *task;
  1839. };
  1840. To wake up a particular waiter, the up_read() or up_write() functions have to:
  1841. (1) read the next pointer from this waiter's record to know as to where the
  1842. next waiter record is;
  1843. (2) read the pointer to the waiter's task structure;
  1844. (3) clear the task pointer to tell the waiter it has been given the semaphore;
  1845. (4) call wake_up_process() on the task; and
  1846. (5) release the reference held on the waiter's task struct.
  1847. In other words, it has to perform this sequence of events:
  1848. LOAD waiter->list.next;
  1849. LOAD waiter->task;
  1850. STORE waiter->task;
  1851. CALL wakeup
  1852. RELEASE task
  1853. and if any of these steps occur out of order, then the whole thing may
  1854. malfunction.
  1855. Once it has queued itself and dropped the semaphore lock, the waiter does not
  1856. get the lock again; it instead just waits for its task pointer to be cleared
  1857. before proceeding. Since the record is on the waiter's stack, this means that
  1858. if the task pointer is cleared _before_ the next pointer in the list is read,
  1859. another CPU might start processing the waiter and might clobber the waiter's
  1860. stack before the up*() function has a chance to read the next pointer.
  1861. Consider then what might happen to the above sequence of events:
  1862. CPU 1 CPU 2
  1863. =============================== ===============================
  1864. down_xxx()
  1865. Queue waiter
  1866. Sleep
  1867. up_yyy()
  1868. LOAD waiter->task;
  1869. STORE waiter->task;
  1870. Woken up by other event
  1871. <preempt>
  1872. Resume processing
  1873. down_xxx() returns
  1874. call foo()
  1875. foo() clobbers *waiter
  1876. </preempt>
  1877. LOAD waiter->list.next;
  1878. --- OOPS ---
  1879. This could be dealt with using the semaphore lock, but then the down_xxx()
  1880. function has to needlessly get the spinlock again after being woken up.
  1881. The way to deal with this is to insert a general SMP memory barrier:
  1882. LOAD waiter->list.next;
  1883. LOAD waiter->task;
  1884. smp_mb();
  1885. STORE waiter->task;
  1886. CALL wakeup
  1887. RELEASE task
  1888. In this case, the barrier makes a guarantee that all memory accesses before the
  1889. barrier will appear to happen before all the memory accesses after the barrier
  1890. with respect to the other CPUs on the system. It does _not_ guarantee that all
  1891. the memory accesses before the barrier will be complete by the time the barrier
  1892. instruction itself is complete.
  1893. On a UP system - where this wouldn't be a problem - the smp_mb() is just a
  1894. compiler barrier, thus making sure the compiler emits the instructions in the
  1895. right order without actually intervening in the CPU. Since there's only one
  1896. CPU, that CPU's dependency ordering logic will take care of everything else.
  1897. ATOMIC OPERATIONS
  1898. -----------------
  1899. Whilst they are technically interprocessor interaction considerations, atomic
  1900. operations are noted specially as some of them imply full memory barriers and
  1901. some don't, but they're very heavily relied on as a group throughout the
  1902. kernel.
  1903. Any atomic operation that modifies some state in memory and returns information
  1904. about the state (old or new) implies an SMP-conditional general memory barrier
  1905. (smp_mb()) on each side of the actual operation (with the exception of
  1906. explicit lock operations, described later). These include:
  1907. xchg();
  1908. atomic_xchg(); atomic_long_xchg();
  1909. atomic_inc_return(); atomic_long_inc_return();
  1910. atomic_dec_return(); atomic_long_dec_return();
  1911. atomic_add_return(); atomic_long_add_return();
  1912. atomic_sub_return(); atomic_long_sub_return();
  1913. atomic_inc_and_test(); atomic_long_inc_and_test();
  1914. atomic_dec_and_test(); atomic_long_dec_and_test();
  1915. atomic_sub_and_test(); atomic_long_sub_and_test();
  1916. atomic_add_negative(); atomic_long_add_negative();
  1917. test_and_set_bit();
  1918. test_and_clear_bit();
  1919. test_and_change_bit();
  1920. /* when succeeds */
  1921. cmpxchg();
  1922. atomic_cmpxchg(); atomic_long_cmpxchg();
  1923. atomic_add_unless(); atomic_long_add_unless();
  1924. These are used for such things as implementing ACQUIRE-class and RELEASE-class
  1925. operations and adjusting reference counters towards object destruction, and as
  1926. such the implicit memory barrier effects are necessary.
  1927. The following operations are potential problems as they do _not_ imply memory
  1928. barriers, but might be used for implementing such things as RELEASE-class
  1929. operations:
  1930. atomic_set();
  1931. set_bit();
  1932. clear_bit();
  1933. change_bit();
  1934. With these the appropriate explicit memory barrier should be used if necessary
  1935. (smp_mb__before_atomic() for instance).
  1936. The following also do _not_ imply memory barriers, and so may require explicit
  1937. memory barriers under some circumstances (smp_mb__before_atomic() for
  1938. instance):
  1939. atomic_add();
  1940. atomic_sub();
  1941. atomic_inc();
  1942. atomic_dec();
  1943. If they're used for statistics generation, then they probably don't need memory
  1944. barriers, unless there's a coupling between statistical data.
  1945. If they're used for reference counting on an object to control its lifetime,
  1946. they probably don't need memory barriers because either the reference count
  1947. will be adjusted inside a locked section, or the caller will already hold
  1948. sufficient references to make the lock, and thus a memory barrier unnecessary.
  1949. If they're used for constructing a lock of some description, then they probably
  1950. do need memory barriers as a lock primitive generally has to do things in a
  1951. specific order.
  1952. Basically, each usage case has to be carefully considered as to whether memory
  1953. barriers are needed or not.
  1954. The following operations are special locking primitives:
  1955. test_and_set_bit_lock();
  1956. clear_bit_unlock();
  1957. __clear_bit_unlock();
  1958. These implement ACQUIRE-class and RELEASE-class operations. These should be
  1959. used in preference to other operations when implementing locking primitives,
  1960. because their implementations can be optimised on many architectures.
  1961. [!] Note that special memory barrier primitives are available for these
  1962. situations because on some CPUs the atomic instructions used imply full memory
  1963. barriers, and so barrier instructions are superfluous in conjunction with them,
  1964. and in such cases the special barrier primitives will be no-ops.
  1965. See Documentation/atomic_ops.txt for more information.
  1966. ACCESSING DEVICES
  1967. -----------------
  1968. Many devices can be memory mapped, and so appear to the CPU as if they're just
  1969. a set of memory locations. To control such a device, the driver usually has to
  1970. make the right memory accesses in exactly the right order.
  1971. However, having a clever CPU or a clever compiler creates a potential problem
  1972. in that the carefully sequenced accesses in the driver code won't reach the
  1973. device in the requisite order if the CPU or the compiler thinks it is more
  1974. efficient to reorder, combine or merge accesses - something that would cause
  1975. the device to malfunction.
  1976. Inside of the Linux kernel, I/O should be done through the appropriate accessor
  1977. routines - such as inb() or writel() - which know how to make such accesses
  1978. appropriately sequential. Whilst this, for the most part, renders the explicit
  1979. use of memory barriers unnecessary, there are a couple of situations where they
  1980. might be needed:
  1981. (1) On some systems, I/O stores are not strongly ordered across all CPUs, and
  1982. so for _all_ general drivers locks should be used and mmiowb() must be
  1983. issued prior to unlocking the critical section.
  1984. (2) If the accessor functions are used to refer to an I/O memory window with
  1985. relaxed memory access properties, then _mandatory_ memory barriers are
  1986. required to enforce ordering.
  1987. See Documentation/DocBook/deviceiobook.tmpl for more information.
  1988. INTERRUPTS
  1989. ----------
  1990. A driver may be interrupted by its own interrupt service routine, and thus the
  1991. two parts of the driver may interfere with each other's attempts to control or
  1992. access the device.
  1993. This may be alleviated - at least in part - by disabling local interrupts (a
  1994. form of locking), such that the critical operations are all contained within
  1995. the interrupt-disabled section in the driver. Whilst the driver's interrupt
  1996. routine is executing, the driver's core may not run on the same CPU, and its
  1997. interrupt is not permitted to happen again until the current interrupt has been
  1998. handled, thus the interrupt handler does not need to lock against that.
  1999. However, consider a driver that was talking to an ethernet card that sports an
  2000. address register and a data register. If that driver's core talks to the card
  2001. under interrupt-disablement and then the driver's interrupt handler is invoked:
  2002. LOCAL IRQ DISABLE
  2003. writew(ADDR, 3);
  2004. writew(DATA, y);
  2005. LOCAL IRQ ENABLE
  2006. <interrupt>
  2007. writew(ADDR, 4);
  2008. q = readw(DATA);
  2009. </interrupt>
  2010. The store to the data register might happen after the second store to the
  2011. address register if ordering rules are sufficiently relaxed:
  2012. STORE *ADDR = 3, STORE *ADDR = 4, STORE *DATA = y, q = LOAD *DATA
  2013. If ordering rules are relaxed, it must be assumed that accesses done inside an
  2014. interrupt disabled section may leak outside of it and may interleave with
  2015. accesses performed in an interrupt - and vice versa - unless implicit or
  2016. explicit barriers are used.
  2017. Normally this won't be a problem because the I/O accesses done inside such
  2018. sections will include synchronous load operations on strictly ordered I/O
  2019. registers that form implicit I/O barriers. If this isn't sufficient then an
  2020. mmiowb() may need to be used explicitly.
  2021. A similar situation may occur between an interrupt routine and two routines
  2022. running on separate CPUs that communicate with each other. If such a case is
  2023. likely, then interrupt-disabling locks should be used to guarantee ordering.
  2024. ==========================
  2025. KERNEL I/O BARRIER EFFECTS
  2026. ==========================
  2027. When accessing I/O memory, drivers should use the appropriate accessor
  2028. functions:
  2029. (*) inX(), outX():
  2030. These are intended to talk to I/O space rather than memory space, but
  2031. that's primarily a CPU-specific concept. The i386 and x86_64 processors
  2032. do indeed have special I/O space access cycles and instructions, but many
  2033. CPUs don't have such a concept.
  2034. The PCI bus, amongst others, defines an I/O space concept which - on such
  2035. CPUs as i386 and x86_64 - readily maps to the CPU's concept of I/O
  2036. space. However, it may also be mapped as a virtual I/O space in the CPU's
  2037. memory map, particularly on those CPUs that don't support alternate I/O
  2038. spaces.
  2039. Accesses to this space may be fully synchronous (as on i386), but
  2040. intermediary bridges (such as the PCI host bridge) may not fully honour
  2041. that.
  2042. They are guaranteed to be fully ordered with respect to each other.
  2043. They are not guaranteed to be fully ordered with respect to other types of
  2044. memory and I/O operation.
  2045. (*) readX(), writeX():
  2046. Whether these are guaranteed to be fully ordered and uncombined with
  2047. respect to each other on the issuing CPU depends on the characteristics
  2048. defined for the memory window through which they're accessing. On later
  2049. i386 architecture machines, for example, this is controlled by way of the
  2050. MTRR registers.
  2051. Ordinarily, these will be guaranteed to be fully ordered and uncombined,
  2052. provided they're not accessing a prefetchable device.
  2053. However, intermediary hardware (such as a PCI bridge) may indulge in
  2054. deferral if it so wishes; to flush a store, a load from the same location
  2055. is preferred[*], but a load from the same device or from configuration
  2056. space should suffice for PCI.
  2057. [*] NOTE! attempting to load from the same location as was written to may
  2058. cause a malfunction - consider the 16550 Rx/Tx serial registers for
  2059. example.
  2060. Used with prefetchable I/O memory, an mmiowb() barrier may be required to
  2061. force stores to be ordered.
  2062. Please refer to the PCI specification for more information on interactions
  2063. between PCI transactions.
  2064. (*) readX_relaxed(), writeX_relaxed()
  2065. These are similar to readX() and writeX(), but provide weaker memory
  2066. ordering guarantees. Specifically, they do not guarantee ordering with
  2067. respect to normal memory accesses (e.g. DMA buffers) nor do they guarantee
  2068. ordering with respect to LOCK or UNLOCK operations. If the latter is
  2069. required, an mmiowb() barrier can be used. Note that relaxed accesses to
  2070. the same peripheral are guaranteed to be ordered with respect to each
  2071. other.
  2072. (*) ioreadX(), iowriteX()
  2073. These will perform appropriately for the type of access they're actually
  2074. doing, be it inX()/outX() or readX()/writeX().
  2075. ========================================
  2076. ASSUMED MINIMUM EXECUTION ORDERING MODEL
  2077. ========================================
  2078. It has to be assumed that the conceptual CPU is weakly-ordered but that it will
  2079. maintain the appearance of program causality with respect to itself. Some CPUs
  2080. (such as i386 or x86_64) are more constrained than others (such as powerpc or
  2081. frv), and so the most relaxed case (namely DEC Alpha) must be assumed outside
  2082. of arch-specific code.
  2083. This means that it must be considered that the CPU will execute its instruction
  2084. stream in any order it feels like - or even in parallel - provided that if an
  2085. instruction in the stream depends on an earlier instruction, then that
  2086. earlier instruction must be sufficiently complete[*] before the later
  2087. instruction may proceed; in other words: provided that the appearance of
  2088. causality is maintained.
  2089. [*] Some instructions have more than one effect - such as changing the
  2090. condition codes, changing registers or changing memory - and different
  2091. instructions may depend on different effects.
  2092. A CPU may also discard any instruction sequence that winds up having no
  2093. ultimate effect. For example, if two adjacent instructions both load an
  2094. immediate value into the same register, the first may be discarded.
  2095. Similarly, it has to be assumed that compiler might reorder the instruction
  2096. stream in any way it sees fit, again provided the appearance of causality is
  2097. maintained.
  2098. ============================
  2099. THE EFFECTS OF THE CPU CACHE
  2100. ============================
  2101. The way cached memory operations are perceived across the system is affected to
  2102. a certain extent by the caches that lie between CPUs and memory, and by the
  2103. memory coherence system that maintains the consistency of state in the system.
  2104. As far as the way a CPU interacts with another part of the system through the
  2105. caches goes, the memory system has to include the CPU's caches, and memory
  2106. barriers for the most part act at the interface between the CPU and its cache
  2107. (memory barriers logically act on the dotted line in the following diagram):
  2108. <--- CPU ---> : <----------- Memory ----------->
  2109. :
  2110. +--------+ +--------+ : +--------+ +-----------+
  2111. | | | | : | | | | +--------+
  2112. | CPU | | Memory | : | CPU | | | | |
  2113. | Core |--->| Access |----->| Cache |<-->| | | |
  2114. | | | Queue | : | | | |--->| Memory |
  2115. | | | | : | | | | | |
  2116. +--------+ +--------+ : +--------+ | | | |
  2117. : | Cache | +--------+
  2118. : | Coherency |
  2119. : | Mechanism | +--------+
  2120. +--------+ +--------+ : +--------+ | | | |
  2121. | | | | : | | | | | |
  2122. | CPU | | Memory | : | CPU | | |--->| Device |
  2123. | Core |--->| Access |----->| Cache |<-->| | | |
  2124. | | | Queue | : | | | | | |
  2125. | | | | : | | | | +--------+
  2126. +--------+ +--------+ : +--------+ +-----------+
  2127. :
  2128. :
  2129. Although any particular load or store may not actually appear outside of the
  2130. CPU that issued it since it may have been satisfied within the CPU's own cache,
  2131. it will still appear as if the full memory access had taken place as far as the
  2132. other CPUs are concerned since the cache coherency mechanisms will migrate the
  2133. cacheline over to the accessing CPU and propagate the effects upon conflict.
  2134. The CPU core may execute instructions in any order it deems fit, provided the
  2135. expected program causality appears to be maintained. Some of the instructions
  2136. generate load and store operations which then go into the queue of memory
  2137. accesses to be performed. The core may place these in the queue in any order
  2138. it wishes, and continue execution until it is forced to wait for an instruction
  2139. to complete.
  2140. What memory barriers are concerned with is controlling the order in which
  2141. accesses cross from the CPU side of things to the memory side of things, and
  2142. the order in which the effects are perceived to happen by the other observers
  2143. in the system.
  2144. [!] Memory barriers are _not_ needed within a given CPU, as CPUs always see
  2145. their own loads and stores as if they had happened in program order.
  2146. [!] MMIO or other device accesses may bypass the cache system. This depends on
  2147. the properties of the memory window through which devices are accessed and/or
  2148. the use of any special device communication instructions the CPU may have.
  2149. CACHE COHERENCY
  2150. ---------------
  2151. Life isn't quite as simple as it may appear above, however: for while the
  2152. caches are expected to be coherent, there's no guarantee that that coherency
  2153. will be ordered. This means that whilst changes made on one CPU will
  2154. eventually become visible on all CPUs, there's no guarantee that they will
  2155. become apparent in the same order on those other CPUs.
  2156. Consider dealing with a system that has a pair of CPUs (1 & 2), each of which
  2157. has a pair of parallel data caches (CPU 1 has A/B, and CPU 2 has C/D):
  2158. :
  2159. : +--------+
  2160. : +---------+ | |
  2161. +--------+ : +--->| Cache A |<------->| |
  2162. | | : | +---------+ | |
  2163. | CPU 1 |<---+ | |
  2164. | | : | +---------+ | |
  2165. +--------+ : +--->| Cache B |<------->| |
  2166. : +---------+ | |
  2167. : | Memory |
  2168. : +---------+ | System |
  2169. +--------+ : +--->| Cache C |<------->| |
  2170. | | : | +---------+ | |
  2171. | CPU 2 |<---+ | |
  2172. | | : | +---------+ | |
  2173. +--------+ : +--->| Cache D |<------->| |
  2174. : +---------+ | |
  2175. : +--------+
  2176. :
  2177. Imagine the system has the following properties:
  2178. (*) an odd-numbered cache line may be in cache A, cache C or it may still be
  2179. resident in memory;
  2180. (*) an even-numbered cache line may be in cache B, cache D or it may still be
  2181. resident in memory;
  2182. (*) whilst the CPU core is interrogating one cache, the other cache may be
  2183. making use of the bus to access the rest of the system - perhaps to
  2184. displace a dirty cacheline or to do a speculative load;
  2185. (*) each cache has a queue of operations that need to be applied to that cache
  2186. to maintain coherency with the rest of the system;
  2187. (*) the coherency queue is not flushed by normal loads to lines already
  2188. present in the cache, even though the contents of the queue may
  2189. potentially affect those loads.
  2190. Imagine, then, that two writes are made on the first CPU, with a write barrier
  2191. between them to guarantee that they will appear to reach that CPU's caches in
  2192. the requisite order:
  2193. CPU 1 CPU 2 COMMENT
  2194. =============== =============== =======================================
  2195. u == 0, v == 1 and p == &u, q == &u
  2196. v = 2;
  2197. smp_wmb(); Make sure change to v is visible before
  2198. change to p
  2199. <A:modify v=2> v is now in cache A exclusively
  2200. p = &v;
  2201. <B:modify p=&v> p is now in cache B exclusively
  2202. The write memory barrier forces the other CPUs in the system to perceive that
  2203. the local CPU's caches have apparently been updated in the correct order. But
  2204. now imagine that the second CPU wants to read those values:
  2205. CPU 1 CPU 2 COMMENT
  2206. =============== =============== =======================================
  2207. ...
  2208. q = p;
  2209. x = *q;
  2210. The above pair of reads may then fail to happen in the expected order, as the
  2211. cacheline holding p may get updated in one of the second CPU's caches whilst
  2212. the update to the cacheline holding v is delayed in the other of the second
  2213. CPU's caches by some other cache event:
  2214. CPU 1 CPU 2 COMMENT
  2215. =============== =============== =======================================
  2216. u == 0, v == 1 and p == &u, q == &u
  2217. v = 2;
  2218. smp_wmb();
  2219. <A:modify v=2> <C:busy>
  2220. <C:queue v=2>
  2221. p = &v; q = p;
  2222. <D:request p>
  2223. <B:modify p=&v> <D:commit p=&v>
  2224. <D:read p>
  2225. x = *q;
  2226. <C:read *q> Reads from v before v updated in cache
  2227. <C:unbusy>
  2228. <C:commit v=2>
  2229. Basically, whilst both cachelines will be updated on CPU 2 eventually, there's
  2230. no guarantee that, without intervention, the order of update will be the same
  2231. as that committed on CPU 1.
  2232. To intervene, we need to interpolate a data dependency barrier or a read
  2233. barrier between the loads. This will force the cache to commit its coherency
  2234. queue before processing any further requests:
  2235. CPU 1 CPU 2 COMMENT
  2236. =============== =============== =======================================
  2237. u == 0, v == 1 and p == &u, q == &u
  2238. v = 2;
  2239. smp_wmb();
  2240. <A:modify v=2> <C:busy>
  2241. <C:queue v=2>
  2242. p = &v; q = p;
  2243. <D:request p>
  2244. <B:modify p=&v> <D:commit p=&v>
  2245. <D:read p>
  2246. smp_read_barrier_depends()
  2247. <C:unbusy>
  2248. <C:commit v=2>
  2249. x = *q;
  2250. <C:read *q> Reads from v after v updated in cache
  2251. This sort of problem can be encountered on DEC Alpha processors as they have a
  2252. split cache that improves performance by making better use of the data bus.
  2253. Whilst most CPUs do imply a data dependency barrier on the read when a memory
  2254. access depends on a read, not all do, so it may not be relied on.
  2255. Other CPUs may also have split caches, but must coordinate between the various
  2256. cachelets for normal memory accesses. The semantics of the Alpha removes the
  2257. need for coordination in the absence of memory barriers.
  2258. CACHE COHERENCY VS DMA
  2259. ----------------------
  2260. Not all systems maintain cache coherency with respect to devices doing DMA. In
  2261. such cases, a device attempting DMA may obtain stale data from RAM because
  2262. dirty cache lines may be resident in the caches of various CPUs, and may not
  2263. have been written back to RAM yet. To deal with this, the appropriate part of
  2264. the kernel must flush the overlapping bits of cache on each CPU (and maybe
  2265. invalidate them as well).
  2266. In addition, the data DMA'd to RAM by a device may be overwritten by dirty
  2267. cache lines being written back to RAM from a CPU's cache after the device has
  2268. installed its own data, or cache lines present in the CPU's cache may simply
  2269. obscure the fact that RAM has been updated, until at such time as the cacheline
  2270. is discarded from the CPU's cache and reloaded. To deal with this, the
  2271. appropriate part of the kernel must invalidate the overlapping bits of the
  2272. cache on each CPU.
  2273. See Documentation/cachetlb.txt for more information on cache management.
  2274. CACHE COHERENCY VS MMIO
  2275. -----------------------
  2276. Memory mapped I/O usually takes place through memory locations that are part of
  2277. a window in the CPU's memory space that has different properties assigned than
  2278. the usual RAM directed window.
  2279. Amongst these properties is usually the fact that such accesses bypass the
  2280. caching entirely and go directly to the device buses. This means MMIO accesses
  2281. may, in effect, overtake accesses to cached memory that were emitted earlier.
  2282. A memory barrier isn't sufficient in such a case, but rather the cache must be
  2283. flushed between the cached memory write and the MMIO access if the two are in
  2284. any way dependent.
  2285. =========================
  2286. THE THINGS CPUS GET UP TO
  2287. =========================
  2288. A programmer might take it for granted that the CPU will perform memory
  2289. operations in exactly the order specified, so that if the CPU is, for example,
  2290. given the following piece of code to execute:
  2291. a = READ_ONCE(*A);
  2292. WRITE_ONCE(*B, b);
  2293. c = READ_ONCE(*C);
  2294. d = READ_ONCE(*D);
  2295. WRITE_ONCE(*E, e);
  2296. they would then expect that the CPU will complete the memory operation for each
  2297. instruction before moving on to the next one, leading to a definite sequence of
  2298. operations as seen by external observers in the system:
  2299. LOAD *A, STORE *B, LOAD *C, LOAD *D, STORE *E.
  2300. Reality is, of course, much messier. With many CPUs and compilers, the above
  2301. assumption doesn't hold because:
  2302. (*) loads are more likely to need to be completed immediately to permit
  2303. execution progress, whereas stores can often be deferred without a
  2304. problem;
  2305. (*) loads may be done speculatively, and the result discarded should it prove
  2306. to have been unnecessary;
  2307. (*) loads may be done speculatively, leading to the result having been fetched
  2308. at the wrong time in the expected sequence of events;
  2309. (*) the order of the memory accesses may be rearranged to promote better use
  2310. of the CPU buses and caches;
  2311. (*) loads and stores may be combined to improve performance when talking to
  2312. memory or I/O hardware that can do batched accesses of adjacent locations,
  2313. thus cutting down on transaction setup costs (memory and PCI devices may
  2314. both be able to do this); and
  2315. (*) the CPU's data cache may affect the ordering, and whilst cache-coherency
  2316. mechanisms may alleviate this - once the store has actually hit the cache
  2317. - there's no guarantee that the coherency management will be propagated in
  2318. order to other CPUs.
  2319. So what another CPU, say, might actually observe from the above piece of code
  2320. is:
  2321. LOAD *A, ..., LOAD {*C,*D}, STORE *E, STORE *B
  2322. (Where "LOAD {*C,*D}" is a combined load)
  2323. However, it is guaranteed that a CPU will be self-consistent: it will see its
  2324. _own_ accesses appear to be correctly ordered, without the need for a memory
  2325. barrier. For instance with the following code:
  2326. U = READ_ONCE(*A);
  2327. WRITE_ONCE(*A, V);
  2328. WRITE_ONCE(*A, W);
  2329. X = READ_ONCE(*A);
  2330. WRITE_ONCE(*A, Y);
  2331. Z = READ_ONCE(*A);
  2332. and assuming no intervention by an external influence, it can be assumed that
  2333. the final result will appear to be:
  2334. U == the original value of *A
  2335. X == W
  2336. Z == Y
  2337. *A == Y
  2338. The code above may cause the CPU to generate the full sequence of memory
  2339. accesses:
  2340. U=LOAD *A, STORE *A=V, STORE *A=W, X=LOAD *A, STORE *A=Y, Z=LOAD *A
  2341. in that order, but, without intervention, the sequence may have almost any
  2342. combination of elements combined or discarded, provided the program's view
  2343. of the world remains consistent. Note that READ_ONCE() and WRITE_ONCE()
  2344. are -not- optional in the above example, as there are architectures
  2345. where a given CPU might reorder successive loads to the same location.
  2346. On such architectures, READ_ONCE() and WRITE_ONCE() do whatever is
  2347. necessary to prevent this, for example, on Itanium the volatile casts
  2348. used by READ_ONCE() and WRITE_ONCE() cause GCC to emit the special ld.acq
  2349. and st.rel instructions (respectively) that prevent such reordering.
  2350. The compiler may also combine, discard or defer elements of the sequence before
  2351. the CPU even sees them.
  2352. For instance:
  2353. *A = V;
  2354. *A = W;
  2355. may be reduced to:
  2356. *A = W;
  2357. since, without either a write barrier or an WRITE_ONCE(), it can be
  2358. assumed that the effect of the storage of V to *A is lost. Similarly:
  2359. *A = Y;
  2360. Z = *A;
  2361. may, without a memory barrier or an READ_ONCE() and WRITE_ONCE(), be
  2362. reduced to:
  2363. *A = Y;
  2364. Z = Y;
  2365. and the LOAD operation never appear outside of the CPU.
  2366. AND THEN THERE'S THE ALPHA
  2367. --------------------------
  2368. The DEC Alpha CPU is one of the most relaxed CPUs there is. Not only that,
  2369. some versions of the Alpha CPU have a split data cache, permitting them to have
  2370. two semantically-related cache lines updated at separate times. This is where
  2371. the data dependency barrier really becomes necessary as this synchronises both
  2372. caches with the memory coherence system, thus making it seem like pointer
  2373. changes vs new data occur in the right order.
  2374. The Alpha defines the Linux kernel's memory barrier model.
  2375. See the subsection on "Cache Coherency" above.
  2376. VIRTUAL MACHINE GUESTS
  2377. ----------------------
  2378. Guests running within virtual machines might be affected by SMP effects even if
  2379. the guest itself is compiled without SMP support. This is an artifact of
  2380. interfacing with an SMP host while running an UP kernel. Using mandatory
  2381. barriers for this use-case would be possible but is often suboptimal.
  2382. To handle this case optimally, low-level virt_mb() etc macros are available.
  2383. These have the same effect as smp_mb() etc when SMP is enabled, but generate
  2384. identical code for SMP and non-SMP systems. For example, virtual machine guests
  2385. should use virt_mb() rather than smp_mb() when synchronizing against a
  2386. (possibly SMP) host.
  2387. These are equivalent to smp_mb() etc counterparts in all other respects,
  2388. in particular, they do not control MMIO effects: to control
  2389. MMIO effects, use mandatory barriers.
  2390. ============
  2391. EXAMPLE USES
  2392. ============
  2393. CIRCULAR BUFFERS
  2394. ----------------
  2395. Memory barriers can be used to implement circular buffering without the need
  2396. of a lock to serialise the producer with the consumer. See:
  2397. Documentation/circular-buffers.txt
  2398. for details.
  2399. ==========
  2400. REFERENCES
  2401. ==========
  2402. Alpha AXP Architecture Reference Manual, Second Edition (Sites & Witek,
  2403. Digital Press)
  2404. Chapter 5.2: Physical Address Space Characteristics
  2405. Chapter 5.4: Caches and Write Buffers
  2406. Chapter 5.5: Data Sharing
  2407. Chapter 5.6: Read/Write Ordering
  2408. AMD64 Architecture Programmer's Manual Volume 2: System Programming
  2409. Chapter 7.1: Memory-Access Ordering
  2410. Chapter 7.4: Buffering and Combining Memory Writes
  2411. IA-32 Intel Architecture Software Developer's Manual, Volume 3:
  2412. System Programming Guide
  2413. Chapter 7.1: Locked Atomic Operations
  2414. Chapter 7.2: Memory Ordering
  2415. Chapter 7.4: Serializing Instructions
  2416. The SPARC Architecture Manual, Version 9
  2417. Chapter 8: Memory Models
  2418. Appendix D: Formal Specification of the Memory Models
  2419. Appendix J: Programming with the Memory Models
  2420. UltraSPARC Programmer Reference Manual
  2421. Chapter 5: Memory Accesses and Cacheability
  2422. Chapter 15: Sparc-V9 Memory Models
  2423. UltraSPARC III Cu User's Manual
  2424. Chapter 9: Memory Models
  2425. UltraSPARC IIIi Processor User's Manual
  2426. Chapter 8: Memory Models
  2427. UltraSPARC Architecture 2005
  2428. Chapter 9: Memory
  2429. Appendix D: Formal Specifications of the Memory Models
  2430. UltraSPARC T1 Supplement to the UltraSPARC Architecture 2005
  2431. Chapter 8: Memory Models
  2432. Appendix F: Caches and Cache Coherency
  2433. Solaris Internals, Core Kernel Architecture, p63-68:
  2434. Chapter 3.3: Hardware Considerations for Locks and
  2435. Synchronization
  2436. Unix Systems for Modern Architectures, Symmetric Multiprocessing and Caching
  2437. for Kernel Programmers:
  2438. Chapter 13: Other Memory Models
  2439. Intel Itanium Architecture Software Developer's Manual: Volume 1:
  2440. Section 2.6: Speculation
  2441. Section 4.4: Memory Access