wl.c 52 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. /*
  2. * Copyright (c) International Business Machines Corp., 2006
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License as published by
  6. * the Free Software Foundation; either version 2 of the License, or
  7. * (at your option) any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
  12. * the GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. *
  18. * Authors: Artem Bityutskiy (Битюцкий Артём), Thomas Gleixner
  19. */
  20. /*
  21. * UBI wear-leveling sub-system.
  22. *
  23. * This sub-system is responsible for wear-leveling. It works in terms of
  24. * physical eraseblocks and erase counters and knows nothing about logical
  25. * eraseblocks, volumes, etc. From this sub-system's perspective all physical
  26. * eraseblocks are of two types - used and free. Used physical eraseblocks are
  27. * those that were "get" by the 'ubi_wl_get_peb()' function, and free physical
  28. * eraseblocks are those that were put by the 'ubi_wl_put_peb()' function.
  29. *
  30. * Physical eraseblocks returned by 'ubi_wl_get_peb()' have only erase counter
  31. * header. The rest of the physical eraseblock contains only %0xFF bytes.
  32. *
  33. * When physical eraseblocks are returned to the WL sub-system by means of the
  34. * 'ubi_wl_put_peb()' function, they are scheduled for erasure. The erasure is
  35. * done asynchronously in context of the per-UBI device background thread,
  36. * which is also managed by the WL sub-system.
  37. *
  38. * The wear-leveling is ensured by means of moving the contents of used
  39. * physical eraseblocks with low erase counter to free physical eraseblocks
  40. * with high erase counter.
  41. *
  42. * If the WL sub-system fails to erase a physical eraseblock, it marks it as
  43. * bad.
  44. *
  45. * This sub-system is also responsible for scrubbing. If a bit-flip is detected
  46. * in a physical eraseblock, it has to be moved. Technically this is the same
  47. * as moving it for wear-leveling reasons.
  48. *
  49. * As it was said, for the UBI sub-system all physical eraseblocks are either
  50. * "free" or "used". Free eraseblock are kept in the @wl->free RB-tree, while
  51. * used eraseblocks are kept in @wl->used, @wl->erroneous, or @wl->scrub
  52. * RB-trees, as well as (temporarily) in the @wl->pq queue.
  53. *
  54. * When the WL sub-system returns a physical eraseblock, the physical
  55. * eraseblock is protected from being moved for some "time". For this reason,
  56. * the physical eraseblock is not directly moved from the @wl->free tree to the
  57. * @wl->used tree. There is a protection queue in between where this
  58. * physical eraseblock is temporarily stored (@wl->pq).
  59. *
  60. * All this protection stuff is needed because:
  61. * o we don't want to move physical eraseblocks just after we have given them
  62. * to the user; instead, we first want to let users fill them up with data;
  63. *
  64. * o there is a chance that the user will put the physical eraseblock very
  65. * soon, so it makes sense not to move it for some time, but wait.
  66. *
  67. * Physical eraseblocks stay protected only for limited time. But the "time" is
  68. * measured in erase cycles in this case. This is implemented with help of the
  69. * protection queue. Eraseblocks are put to the tail of this queue when they
  70. * are returned by the 'ubi_wl_get_peb()', and eraseblocks are removed from the
  71. * head of the queue on each erase operation (for any eraseblock). So the
  72. * length of the queue defines how may (global) erase cycles PEBs are protected.
  73. *
  74. * To put it differently, each physical eraseblock has 2 main states: free and
  75. * used. The former state corresponds to the @wl->free tree. The latter state
  76. * is split up on several sub-states:
  77. * o the WL movement is allowed (@wl->used tree);
  78. * o the WL movement is disallowed (@wl->erroneous) because the PEB is
  79. * erroneous - e.g., there was a read error;
  80. * o the WL movement is temporarily prohibited (@wl->pq queue);
  81. * o scrubbing is needed (@wl->scrub tree).
  82. *
  83. * Depending on the sub-state, wear-leveling entries of the used physical
  84. * eraseblocks may be kept in one of those structures.
  85. *
  86. * Note, in this implementation, we keep a small in-RAM object for each physical
  87. * eraseblock. This is surely not a scalable solution. But it appears to be good
  88. * enough for moderately large flashes and it is simple. In future, one may
  89. * re-work this sub-system and make it more scalable.
  90. *
  91. * At the moment this sub-system does not utilize the sequence number, which
  92. * was introduced relatively recently. But it would be wise to do this because
  93. * the sequence number of a logical eraseblock characterizes how old is it. For
  94. * example, when we move a PEB with low erase counter, and we need to pick the
  95. * target PEB, we pick a PEB with the highest EC if our PEB is "old" and we
  96. * pick target PEB with an average EC if our PEB is not very "old". This is a
  97. * room for future re-works of the WL sub-system.
  98. */
  99. #include <linux/slab.h>
  100. #include <linux/crc32.h>
  101. #include <linux/freezer.h>
  102. #include <linux/kthread.h>
  103. #include "ubi.h"
  104. #include "wl.h"
  105. /* Number of physical eraseblocks reserved for wear-leveling purposes */
  106. #define WL_RESERVED_PEBS 1
  107. /*
  108. * Maximum difference between two erase counters. If this threshold is
  109. * exceeded, the WL sub-system starts moving data from used physical
  110. * eraseblocks with low erase counter to free physical eraseblocks with high
  111. * erase counter.
  112. */
  113. #define UBI_WL_THRESHOLD CONFIG_MTD_UBI_WL_THRESHOLD
  114. /*
  115. * When a physical eraseblock is moved, the WL sub-system has to pick the target
  116. * physical eraseblock to move to. The simplest way would be just to pick the
  117. * one with the highest erase counter. But in certain workloads this could lead
  118. * to an unlimited wear of one or few physical eraseblock. Indeed, imagine a
  119. * situation when the picked physical eraseblock is constantly erased after the
  120. * data is written to it. So, we have a constant which limits the highest erase
  121. * counter of the free physical eraseblock to pick. Namely, the WL sub-system
  122. * does not pick eraseblocks with erase counter greater than the lowest erase
  123. * counter plus %WL_FREE_MAX_DIFF.
  124. */
  125. #define WL_FREE_MAX_DIFF (2*UBI_WL_THRESHOLD)
  126. /*
  127. * Maximum number of consecutive background thread failures which is enough to
  128. * switch to read-only mode.
  129. */
  130. #define WL_MAX_FAILURES 32
  131. static int self_check_ec(struct ubi_device *ubi, int pnum, int ec);
  132. static int self_check_in_wl_tree(const struct ubi_device *ubi,
  133. struct ubi_wl_entry *e, struct rb_root *root);
  134. static int self_check_in_pq(const struct ubi_device *ubi,
  135. struct ubi_wl_entry *e);
  136. /**
  137. * wl_tree_add - add a wear-leveling entry to a WL RB-tree.
  138. * @e: the wear-leveling entry to add
  139. * @root: the root of the tree
  140. *
  141. * Note, we use (erase counter, physical eraseblock number) pairs as keys in
  142. * the @ubi->used and @ubi->free RB-trees.
  143. */
  144. static void wl_tree_add(struct ubi_wl_entry *e, struct rb_root *root)
  145. {
  146. struct rb_node **p, *parent = NULL;
  147. p = &root->rb_node;
  148. while (*p) {
  149. struct ubi_wl_entry *e1;
  150. parent = *p;
  151. e1 = rb_entry(parent, struct ubi_wl_entry, u.rb);
  152. if (e->ec < e1->ec)
  153. p = &(*p)->rb_left;
  154. else if (e->ec > e1->ec)
  155. p = &(*p)->rb_right;
  156. else {
  157. ubi_assert(e->pnum != e1->pnum);
  158. if (e->pnum < e1->pnum)
  159. p = &(*p)->rb_left;
  160. else
  161. p = &(*p)->rb_right;
  162. }
  163. }
  164. rb_link_node(&e->u.rb, parent, p);
  165. rb_insert_color(&e->u.rb, root);
  166. }
  167. /**
  168. * wl_tree_destroy - destroy a wear-leveling entry.
  169. * @ubi: UBI device description object
  170. * @e: the wear-leveling entry to add
  171. *
  172. * This function destroys a wear leveling entry and removes
  173. * the reference from the lookup table.
  174. */
  175. static void wl_entry_destroy(struct ubi_device *ubi, struct ubi_wl_entry *e)
  176. {
  177. ubi->lookuptbl[e->pnum] = NULL;
  178. kmem_cache_free(ubi_wl_entry_slab, e);
  179. }
  180. /**
  181. * do_work - do one pending work.
  182. * @ubi: UBI device description object
  183. *
  184. * This function returns zero in case of success and a negative error code in
  185. * case of failure.
  186. */
  187. static int do_work(struct ubi_device *ubi)
  188. {
  189. int err;
  190. struct ubi_work *wrk;
  191. cond_resched();
  192. /*
  193. * @ubi->work_sem is used to synchronize with the workers. Workers take
  194. * it in read mode, so many of them may be doing works at a time. But
  195. * the queue flush code has to be sure the whole queue of works is
  196. * done, and it takes the mutex in write mode.
  197. */
  198. down_read(&ubi->work_sem);
  199. spin_lock(&ubi->wl_lock);
  200. if (list_empty(&ubi->works)) {
  201. spin_unlock(&ubi->wl_lock);
  202. up_read(&ubi->work_sem);
  203. return 0;
  204. }
  205. wrk = list_entry(ubi->works.next, struct ubi_work, list);
  206. list_del(&wrk->list);
  207. ubi->works_count -= 1;
  208. ubi_assert(ubi->works_count >= 0);
  209. spin_unlock(&ubi->wl_lock);
  210. /*
  211. * Call the worker function. Do not touch the work structure
  212. * after this call as it will have been freed or reused by that
  213. * time by the worker function.
  214. */
  215. err = wrk->func(ubi, wrk, 0);
  216. if (err)
  217. ubi_err(ubi, "work failed with error code %d", err);
  218. up_read(&ubi->work_sem);
  219. return err;
  220. }
  221. /**
  222. * in_wl_tree - check if wear-leveling entry is present in a WL RB-tree.
  223. * @e: the wear-leveling entry to check
  224. * @root: the root of the tree
  225. *
  226. * This function returns non-zero if @e is in the @root RB-tree and zero if it
  227. * is not.
  228. */
  229. static int in_wl_tree(struct ubi_wl_entry *e, struct rb_root *root)
  230. {
  231. struct rb_node *p;
  232. p = root->rb_node;
  233. while (p) {
  234. struct ubi_wl_entry *e1;
  235. e1 = rb_entry(p, struct ubi_wl_entry, u.rb);
  236. if (e->pnum == e1->pnum) {
  237. ubi_assert(e == e1);
  238. return 1;
  239. }
  240. if (e->ec < e1->ec)
  241. p = p->rb_left;
  242. else if (e->ec > e1->ec)
  243. p = p->rb_right;
  244. else {
  245. ubi_assert(e->pnum != e1->pnum);
  246. if (e->pnum < e1->pnum)
  247. p = p->rb_left;
  248. else
  249. p = p->rb_right;
  250. }
  251. }
  252. return 0;
  253. }
  254. /**
  255. * prot_queue_add - add physical eraseblock to the protection queue.
  256. * @ubi: UBI device description object
  257. * @e: the physical eraseblock to add
  258. *
  259. * This function adds @e to the tail of the protection queue @ubi->pq, where
  260. * @e will stay for %UBI_PROT_QUEUE_LEN erase operations and will be
  261. * temporarily protected from the wear-leveling worker. Note, @wl->lock has to
  262. * be locked.
  263. */
  264. static void prot_queue_add(struct ubi_device *ubi, struct ubi_wl_entry *e)
  265. {
  266. int pq_tail = ubi->pq_head - 1;
  267. if (pq_tail < 0)
  268. pq_tail = UBI_PROT_QUEUE_LEN - 1;
  269. ubi_assert(pq_tail >= 0 && pq_tail < UBI_PROT_QUEUE_LEN);
  270. list_add_tail(&e->u.list, &ubi->pq[pq_tail]);
  271. dbg_wl("added PEB %d EC %d to the protection queue", e->pnum, e->ec);
  272. }
  273. /**
  274. * find_wl_entry - find wear-leveling entry closest to certain erase counter.
  275. * @ubi: UBI device description object
  276. * @root: the RB-tree where to look for
  277. * @diff: maximum possible difference from the smallest erase counter
  278. *
  279. * This function looks for a wear leveling entry with erase counter closest to
  280. * min + @diff, where min is the smallest erase counter.
  281. */
  282. static struct ubi_wl_entry *find_wl_entry(struct ubi_device *ubi,
  283. struct rb_root *root, int diff)
  284. {
  285. struct rb_node *p;
  286. struct ubi_wl_entry *e, *prev_e = NULL;
  287. int max;
  288. e = rb_entry(rb_first(root), struct ubi_wl_entry, u.rb);
  289. max = e->ec + diff;
  290. p = root->rb_node;
  291. while (p) {
  292. struct ubi_wl_entry *e1;
  293. e1 = rb_entry(p, struct ubi_wl_entry, u.rb);
  294. if (e1->ec >= max)
  295. p = p->rb_left;
  296. else {
  297. p = p->rb_right;
  298. prev_e = e;
  299. e = e1;
  300. }
  301. }
  302. /* If no fastmap has been written and this WL entry can be used
  303. * as anchor PEB, hold it back and return the second best WL entry
  304. * such that fastmap can use the anchor PEB later. */
  305. if (prev_e && !ubi->fm_disabled &&
  306. !ubi->fm && e->pnum < UBI_FM_MAX_START)
  307. return prev_e;
  308. return e;
  309. }
  310. /**
  311. * find_mean_wl_entry - find wear-leveling entry with medium erase counter.
  312. * @ubi: UBI device description object
  313. * @root: the RB-tree where to look for
  314. *
  315. * This function looks for a wear leveling entry with medium erase counter,
  316. * but not greater or equivalent than the lowest erase counter plus
  317. * %WL_FREE_MAX_DIFF/2.
  318. */
  319. static struct ubi_wl_entry *find_mean_wl_entry(struct ubi_device *ubi,
  320. struct rb_root *root)
  321. {
  322. struct ubi_wl_entry *e, *first, *last;
  323. first = rb_entry(rb_first(root), struct ubi_wl_entry, u.rb);
  324. last = rb_entry(rb_last(root), struct ubi_wl_entry, u.rb);
  325. if (last->ec - first->ec < WL_FREE_MAX_DIFF) {
  326. e = rb_entry(root->rb_node, struct ubi_wl_entry, u.rb);
  327. /* If no fastmap has been written and this WL entry can be used
  328. * as anchor PEB, hold it back and return the second best
  329. * WL entry such that fastmap can use the anchor PEB later. */
  330. e = may_reserve_for_fm(ubi, e, root);
  331. } else
  332. e = find_wl_entry(ubi, root, WL_FREE_MAX_DIFF/2);
  333. return e;
  334. }
  335. /**
  336. * wl_get_wle - get a mean wl entry to be used by ubi_wl_get_peb() or
  337. * refill_wl_user_pool().
  338. * @ubi: UBI device description object
  339. *
  340. * This function returns a a wear leveling entry in case of success and
  341. * NULL in case of failure.
  342. */
  343. static struct ubi_wl_entry *wl_get_wle(struct ubi_device *ubi)
  344. {
  345. struct ubi_wl_entry *e;
  346. e = find_mean_wl_entry(ubi, &ubi->free);
  347. if (!e) {
  348. ubi_err(ubi, "no free eraseblocks");
  349. return NULL;
  350. }
  351. self_check_in_wl_tree(ubi, e, &ubi->free);
  352. /*
  353. * Move the physical eraseblock to the protection queue where it will
  354. * be protected from being moved for some time.
  355. */
  356. rb_erase(&e->u.rb, &ubi->free);
  357. ubi->free_count--;
  358. dbg_wl("PEB %d EC %d", e->pnum, e->ec);
  359. return e;
  360. }
  361. /**
  362. * prot_queue_del - remove a physical eraseblock from the protection queue.
  363. * @ubi: UBI device description object
  364. * @pnum: the physical eraseblock to remove
  365. *
  366. * This function deletes PEB @pnum from the protection queue and returns zero
  367. * in case of success and %-ENODEV if the PEB was not found.
  368. */
  369. static int prot_queue_del(struct ubi_device *ubi, int pnum)
  370. {
  371. struct ubi_wl_entry *e;
  372. e = ubi->lookuptbl[pnum];
  373. if (!e)
  374. return -ENODEV;
  375. if (self_check_in_pq(ubi, e))
  376. return -ENODEV;
  377. list_del(&e->u.list);
  378. dbg_wl("deleted PEB %d from the protection queue", e->pnum);
  379. return 0;
  380. }
  381. /**
  382. * sync_erase - synchronously erase a physical eraseblock.
  383. * @ubi: UBI device description object
  384. * @e: the the physical eraseblock to erase
  385. * @torture: if the physical eraseblock has to be tortured
  386. *
  387. * This function returns zero in case of success and a negative error code in
  388. * case of failure.
  389. */
  390. static int sync_erase(struct ubi_device *ubi, struct ubi_wl_entry *e,
  391. int torture)
  392. {
  393. int err;
  394. struct ubi_ec_hdr *ec_hdr;
  395. unsigned long long ec = e->ec;
  396. dbg_wl("erase PEB %d, old EC %llu", e->pnum, ec);
  397. err = self_check_ec(ubi, e->pnum, e->ec);
  398. if (err)
  399. return -EINVAL;
  400. ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_NOFS);
  401. if (!ec_hdr)
  402. return -ENOMEM;
  403. err = ubi_io_sync_erase(ubi, e->pnum, torture);
  404. if (err < 0)
  405. goto out_free;
  406. ec += err;
  407. if (ec > UBI_MAX_ERASECOUNTER) {
  408. /*
  409. * Erase counter overflow. Upgrade UBI and use 64-bit
  410. * erase counters internally.
  411. */
  412. ubi_err(ubi, "erase counter overflow at PEB %d, EC %llu",
  413. e->pnum, ec);
  414. err = -EINVAL;
  415. goto out_free;
  416. }
  417. dbg_wl("erased PEB %d, new EC %llu", e->pnum, ec);
  418. ec_hdr->ec = cpu_to_be64(ec);
  419. err = ubi_io_write_ec_hdr(ubi, e->pnum, ec_hdr);
  420. if (err)
  421. goto out_free;
  422. e->ec = ec;
  423. spin_lock(&ubi->wl_lock);
  424. if (e->ec > ubi->max_ec)
  425. ubi->max_ec = e->ec;
  426. spin_unlock(&ubi->wl_lock);
  427. out_free:
  428. kfree(ec_hdr);
  429. return err;
  430. }
  431. /**
  432. * serve_prot_queue - check if it is time to stop protecting PEBs.
  433. * @ubi: UBI device description object
  434. *
  435. * This function is called after each erase operation and removes PEBs from the
  436. * tail of the protection queue. These PEBs have been protected for long enough
  437. * and should be moved to the used tree.
  438. */
  439. static void serve_prot_queue(struct ubi_device *ubi)
  440. {
  441. struct ubi_wl_entry *e, *tmp;
  442. int count;
  443. /*
  444. * There may be several protected physical eraseblock to remove,
  445. * process them all.
  446. */
  447. repeat:
  448. count = 0;
  449. spin_lock(&ubi->wl_lock);
  450. list_for_each_entry_safe(e, tmp, &ubi->pq[ubi->pq_head], u.list) {
  451. dbg_wl("PEB %d EC %d protection over, move to used tree",
  452. e->pnum, e->ec);
  453. list_del(&e->u.list);
  454. wl_tree_add(e, &ubi->used);
  455. if (count++ > 32) {
  456. /*
  457. * Let's be nice and avoid holding the spinlock for
  458. * too long.
  459. */
  460. spin_unlock(&ubi->wl_lock);
  461. cond_resched();
  462. goto repeat;
  463. }
  464. }
  465. ubi->pq_head += 1;
  466. if (ubi->pq_head == UBI_PROT_QUEUE_LEN)
  467. ubi->pq_head = 0;
  468. ubi_assert(ubi->pq_head >= 0 && ubi->pq_head < UBI_PROT_QUEUE_LEN);
  469. spin_unlock(&ubi->wl_lock);
  470. }
  471. /**
  472. * __schedule_ubi_work - schedule a work.
  473. * @ubi: UBI device description object
  474. * @wrk: the work to schedule
  475. *
  476. * This function adds a work defined by @wrk to the tail of the pending works
  477. * list. Can only be used if ubi->work_sem is already held in read mode!
  478. */
  479. static void __schedule_ubi_work(struct ubi_device *ubi, struct ubi_work *wrk)
  480. {
  481. spin_lock(&ubi->wl_lock);
  482. list_add_tail(&wrk->list, &ubi->works);
  483. ubi_assert(ubi->works_count >= 0);
  484. ubi->works_count += 1;
  485. if (ubi->thread_enabled && !ubi_dbg_is_bgt_disabled(ubi))
  486. wake_up_process(ubi->bgt_thread);
  487. spin_unlock(&ubi->wl_lock);
  488. }
  489. /**
  490. * schedule_ubi_work - schedule a work.
  491. * @ubi: UBI device description object
  492. * @wrk: the work to schedule
  493. *
  494. * This function adds a work defined by @wrk to the tail of the pending works
  495. * list.
  496. */
  497. static void schedule_ubi_work(struct ubi_device *ubi, struct ubi_work *wrk)
  498. {
  499. down_read(&ubi->work_sem);
  500. __schedule_ubi_work(ubi, wrk);
  501. up_read(&ubi->work_sem);
  502. }
  503. static int erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk,
  504. int shutdown);
  505. /**
  506. * schedule_erase - schedule an erase work.
  507. * @ubi: UBI device description object
  508. * @e: the WL entry of the physical eraseblock to erase
  509. * @vol_id: the volume ID that last used this PEB
  510. * @lnum: the last used logical eraseblock number for the PEB
  511. * @torture: if the physical eraseblock has to be tortured
  512. *
  513. * This function returns zero in case of success and a %-ENOMEM in case of
  514. * failure.
  515. */
  516. static int schedule_erase(struct ubi_device *ubi, struct ubi_wl_entry *e,
  517. int vol_id, int lnum, int torture, bool nested)
  518. {
  519. struct ubi_work *wl_wrk;
  520. ubi_assert(e);
  521. dbg_wl("schedule erasure of PEB %d, EC %d, torture %d",
  522. e->pnum, e->ec, torture);
  523. wl_wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS);
  524. if (!wl_wrk)
  525. return -ENOMEM;
  526. wl_wrk->func = &erase_worker;
  527. wl_wrk->e = e;
  528. wl_wrk->vol_id = vol_id;
  529. wl_wrk->lnum = lnum;
  530. wl_wrk->torture = torture;
  531. if (nested)
  532. __schedule_ubi_work(ubi, wl_wrk);
  533. else
  534. schedule_ubi_work(ubi, wl_wrk);
  535. return 0;
  536. }
  537. static int __erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk);
  538. /**
  539. * do_sync_erase - run the erase worker synchronously.
  540. * @ubi: UBI device description object
  541. * @e: the WL entry of the physical eraseblock to erase
  542. * @vol_id: the volume ID that last used this PEB
  543. * @lnum: the last used logical eraseblock number for the PEB
  544. * @torture: if the physical eraseblock has to be tortured
  545. *
  546. */
  547. static int do_sync_erase(struct ubi_device *ubi, struct ubi_wl_entry *e,
  548. int vol_id, int lnum, int torture)
  549. {
  550. struct ubi_work wl_wrk;
  551. dbg_wl("sync erase of PEB %i", e->pnum);
  552. wl_wrk.e = e;
  553. wl_wrk.vol_id = vol_id;
  554. wl_wrk.lnum = lnum;
  555. wl_wrk.torture = torture;
  556. return __erase_worker(ubi, &wl_wrk);
  557. }
  558. static int ensure_wear_leveling(struct ubi_device *ubi, int nested);
  559. /**
  560. * wear_leveling_worker - wear-leveling worker function.
  561. * @ubi: UBI device description object
  562. * @wrk: the work object
  563. * @shutdown: non-zero if the worker has to free memory and exit
  564. * because the WL-subsystem is shutting down
  565. *
  566. * This function copies a more worn out physical eraseblock to a less worn out
  567. * one. Returns zero in case of success and a negative error code in case of
  568. * failure.
  569. */
  570. static int wear_leveling_worker(struct ubi_device *ubi, struct ubi_work *wrk,
  571. int shutdown)
  572. {
  573. int err, scrubbing = 0, torture = 0, protect = 0, erroneous = 0;
  574. int erase = 0, keep = 0, vol_id = -1, lnum = -1;
  575. #ifdef CONFIG_MTD_UBI_FASTMAP
  576. int anchor = wrk->anchor;
  577. #endif
  578. struct ubi_wl_entry *e1, *e2;
  579. struct ubi_vid_io_buf *vidb;
  580. struct ubi_vid_hdr *vid_hdr;
  581. int dst_leb_clean = 0;
  582. kfree(wrk);
  583. if (shutdown)
  584. return 0;
  585. vidb = ubi_alloc_vid_buf(ubi, GFP_NOFS);
  586. if (!vidb)
  587. return -ENOMEM;
  588. vid_hdr = ubi_get_vid_hdr(vidb);
  589. down_read(&ubi->fm_eba_sem);
  590. mutex_lock(&ubi->move_mutex);
  591. spin_lock(&ubi->wl_lock);
  592. ubi_assert(!ubi->move_from && !ubi->move_to);
  593. ubi_assert(!ubi->move_to_put);
  594. if (!ubi->free.rb_node ||
  595. (!ubi->used.rb_node && !ubi->scrub.rb_node)) {
  596. /*
  597. * No free physical eraseblocks? Well, they must be waiting in
  598. * the queue to be erased. Cancel movement - it will be
  599. * triggered again when a free physical eraseblock appears.
  600. *
  601. * No used physical eraseblocks? They must be temporarily
  602. * protected from being moved. They will be moved to the
  603. * @ubi->used tree later and the wear-leveling will be
  604. * triggered again.
  605. */
  606. dbg_wl("cancel WL, a list is empty: free %d, used %d",
  607. !ubi->free.rb_node, !ubi->used.rb_node);
  608. goto out_cancel;
  609. }
  610. #ifdef CONFIG_MTD_UBI_FASTMAP
  611. /* Check whether we need to produce an anchor PEB */
  612. if (!anchor)
  613. anchor = !anchor_pebs_avalible(&ubi->free);
  614. if (anchor) {
  615. e1 = find_anchor_wl_entry(&ubi->used);
  616. if (!e1)
  617. goto out_cancel;
  618. e2 = get_peb_for_wl(ubi);
  619. if (!e2)
  620. goto out_cancel;
  621. self_check_in_wl_tree(ubi, e1, &ubi->used);
  622. rb_erase(&e1->u.rb, &ubi->used);
  623. dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
  624. } else if (!ubi->scrub.rb_node) {
  625. #else
  626. if (!ubi->scrub.rb_node) {
  627. #endif
  628. /*
  629. * Now pick the least worn-out used physical eraseblock and a
  630. * highly worn-out free physical eraseblock. If the erase
  631. * counters differ much enough, start wear-leveling.
  632. */
  633. e1 = rb_entry(rb_first(&ubi->used), struct ubi_wl_entry, u.rb);
  634. e2 = get_peb_for_wl(ubi);
  635. if (!e2)
  636. goto out_cancel;
  637. if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
  638. dbg_wl("no WL needed: min used EC %d, max free EC %d",
  639. e1->ec, e2->ec);
  640. /* Give the unused PEB back */
  641. wl_tree_add(e2, &ubi->free);
  642. ubi->free_count++;
  643. goto out_cancel;
  644. }
  645. self_check_in_wl_tree(ubi, e1, &ubi->used);
  646. rb_erase(&e1->u.rb, &ubi->used);
  647. dbg_wl("move PEB %d EC %d to PEB %d EC %d",
  648. e1->pnum, e1->ec, e2->pnum, e2->ec);
  649. } else {
  650. /* Perform scrubbing */
  651. scrubbing = 1;
  652. e1 = rb_entry(rb_first(&ubi->scrub), struct ubi_wl_entry, u.rb);
  653. e2 = get_peb_for_wl(ubi);
  654. if (!e2)
  655. goto out_cancel;
  656. self_check_in_wl_tree(ubi, e1, &ubi->scrub);
  657. rb_erase(&e1->u.rb, &ubi->scrub);
  658. dbg_wl("scrub PEB %d to PEB %d", e1->pnum, e2->pnum);
  659. }
  660. ubi->move_from = e1;
  661. ubi->move_to = e2;
  662. spin_unlock(&ubi->wl_lock);
  663. /*
  664. * Now we are going to copy physical eraseblock @e1->pnum to @e2->pnum.
  665. * We so far do not know which logical eraseblock our physical
  666. * eraseblock (@e1) belongs to. We have to read the volume identifier
  667. * header first.
  668. *
  669. * Note, we are protected from this PEB being unmapped and erased. The
  670. * 'ubi_wl_put_peb()' would wait for moving to be finished if the PEB
  671. * which is being moved was unmapped.
  672. */
  673. err = ubi_io_read_vid_hdr(ubi, e1->pnum, vidb, 0);
  674. if (err && err != UBI_IO_BITFLIPS) {
  675. dst_leb_clean = 1;
  676. if (err == UBI_IO_FF) {
  677. /*
  678. * We are trying to move PEB without a VID header. UBI
  679. * always write VID headers shortly after the PEB was
  680. * given, so we have a situation when it has not yet
  681. * had a chance to write it, because it was preempted.
  682. * So add this PEB to the protection queue so far,
  683. * because presumably more data will be written there
  684. * (including the missing VID header), and then we'll
  685. * move it.
  686. */
  687. dbg_wl("PEB %d has no VID header", e1->pnum);
  688. protect = 1;
  689. goto out_not_moved;
  690. } else if (err == UBI_IO_FF_BITFLIPS) {
  691. /*
  692. * The same situation as %UBI_IO_FF, but bit-flips were
  693. * detected. It is better to schedule this PEB for
  694. * scrubbing.
  695. */
  696. dbg_wl("PEB %d has no VID header but has bit-flips",
  697. e1->pnum);
  698. scrubbing = 1;
  699. goto out_not_moved;
  700. } else if (ubi->fast_attach && err == UBI_IO_BAD_HDR_EBADMSG) {
  701. /*
  702. * While a full scan would detect interrupted erasures
  703. * at attach time we can face them here when attached from
  704. * Fastmap.
  705. */
  706. dbg_wl("PEB %d has ECC errors, maybe from an interrupted erasure",
  707. e1->pnum);
  708. erase = 1;
  709. goto out_not_moved;
  710. }
  711. ubi_err(ubi, "error %d while reading VID header from PEB %d",
  712. err, e1->pnum);
  713. goto out_error;
  714. }
  715. vol_id = be32_to_cpu(vid_hdr->vol_id);
  716. lnum = be32_to_cpu(vid_hdr->lnum);
  717. err = ubi_eba_copy_leb(ubi, e1->pnum, e2->pnum, vidb);
  718. if (err) {
  719. if (err == MOVE_CANCEL_RACE) {
  720. /*
  721. * The LEB has not been moved because the volume is
  722. * being deleted or the PEB has been put meanwhile. We
  723. * should prevent this PEB from being selected for
  724. * wear-leveling movement again, so put it to the
  725. * protection queue.
  726. */
  727. protect = 1;
  728. dst_leb_clean = 1;
  729. goto out_not_moved;
  730. }
  731. if (err == MOVE_RETRY) {
  732. scrubbing = 1;
  733. dst_leb_clean = 1;
  734. goto out_not_moved;
  735. }
  736. if (err == MOVE_TARGET_BITFLIPS || err == MOVE_TARGET_WR_ERR ||
  737. err == MOVE_TARGET_RD_ERR) {
  738. /*
  739. * Target PEB had bit-flips or write error - torture it.
  740. */
  741. torture = 1;
  742. keep = 1;
  743. goto out_not_moved;
  744. }
  745. if (err == MOVE_SOURCE_RD_ERR) {
  746. /*
  747. * An error happened while reading the source PEB. Do
  748. * not switch to R/O mode in this case, and give the
  749. * upper layers a possibility to recover from this,
  750. * e.g. by unmapping corresponding LEB. Instead, just
  751. * put this PEB to the @ubi->erroneous list to prevent
  752. * UBI from trying to move it over and over again.
  753. */
  754. if (ubi->erroneous_peb_count > ubi->max_erroneous) {
  755. ubi_err(ubi, "too many erroneous eraseblocks (%d)",
  756. ubi->erroneous_peb_count);
  757. goto out_error;
  758. }
  759. dst_leb_clean = 1;
  760. erroneous = 1;
  761. goto out_not_moved;
  762. }
  763. if (err < 0)
  764. goto out_error;
  765. ubi_assert(0);
  766. }
  767. /* The PEB has been successfully moved */
  768. if (scrubbing)
  769. ubi_msg(ubi, "scrubbed PEB %d (LEB %d:%d), data moved to PEB %d",
  770. e1->pnum, vol_id, lnum, e2->pnum);
  771. ubi_free_vid_buf(vidb);
  772. spin_lock(&ubi->wl_lock);
  773. if (!ubi->move_to_put) {
  774. wl_tree_add(e2, &ubi->used);
  775. e2 = NULL;
  776. }
  777. ubi->move_from = ubi->move_to = NULL;
  778. ubi->move_to_put = ubi->wl_scheduled = 0;
  779. spin_unlock(&ubi->wl_lock);
  780. err = do_sync_erase(ubi, e1, vol_id, lnum, 0);
  781. if (err) {
  782. if (e2)
  783. wl_entry_destroy(ubi, e2);
  784. goto out_ro;
  785. }
  786. if (e2) {
  787. /*
  788. * Well, the target PEB was put meanwhile, schedule it for
  789. * erasure.
  790. */
  791. dbg_wl("PEB %d (LEB %d:%d) was put meanwhile, erase",
  792. e2->pnum, vol_id, lnum);
  793. err = do_sync_erase(ubi, e2, vol_id, lnum, 0);
  794. if (err)
  795. goto out_ro;
  796. }
  797. dbg_wl("done");
  798. mutex_unlock(&ubi->move_mutex);
  799. up_read(&ubi->fm_eba_sem);
  800. return 0;
  801. /*
  802. * For some reasons the LEB was not moved, might be an error, might be
  803. * something else. @e1 was not changed, so return it back. @e2 might
  804. * have been changed, schedule it for erasure.
  805. */
  806. out_not_moved:
  807. if (vol_id != -1)
  808. dbg_wl("cancel moving PEB %d (LEB %d:%d) to PEB %d (%d)",
  809. e1->pnum, vol_id, lnum, e2->pnum, err);
  810. else
  811. dbg_wl("cancel moving PEB %d to PEB %d (%d)",
  812. e1->pnum, e2->pnum, err);
  813. spin_lock(&ubi->wl_lock);
  814. if (protect)
  815. prot_queue_add(ubi, e1);
  816. else if (erroneous) {
  817. wl_tree_add(e1, &ubi->erroneous);
  818. ubi->erroneous_peb_count += 1;
  819. } else if (scrubbing)
  820. wl_tree_add(e1, &ubi->scrub);
  821. else if (keep)
  822. wl_tree_add(e1, &ubi->used);
  823. if (dst_leb_clean) {
  824. wl_tree_add(e2, &ubi->free);
  825. ubi->free_count++;
  826. }
  827. ubi_assert(!ubi->move_to_put);
  828. ubi->move_from = ubi->move_to = NULL;
  829. ubi->wl_scheduled = 0;
  830. spin_unlock(&ubi->wl_lock);
  831. ubi_free_vid_buf(vidb);
  832. if (dst_leb_clean) {
  833. ensure_wear_leveling(ubi, 1);
  834. } else {
  835. err = do_sync_erase(ubi, e2, vol_id, lnum, torture);
  836. if (err)
  837. goto out_ro;
  838. }
  839. if (erase) {
  840. err = do_sync_erase(ubi, e1, vol_id, lnum, 1);
  841. if (err)
  842. goto out_ro;
  843. }
  844. mutex_unlock(&ubi->move_mutex);
  845. up_read(&ubi->fm_eba_sem);
  846. return 0;
  847. out_error:
  848. if (vol_id != -1)
  849. ubi_err(ubi, "error %d while moving PEB %d to PEB %d",
  850. err, e1->pnum, e2->pnum);
  851. else
  852. ubi_err(ubi, "error %d while moving PEB %d (LEB %d:%d) to PEB %d",
  853. err, e1->pnum, vol_id, lnum, e2->pnum);
  854. spin_lock(&ubi->wl_lock);
  855. ubi->move_from = ubi->move_to = NULL;
  856. ubi->move_to_put = ubi->wl_scheduled = 0;
  857. spin_unlock(&ubi->wl_lock);
  858. ubi_free_vid_buf(vidb);
  859. wl_entry_destroy(ubi, e1);
  860. wl_entry_destroy(ubi, e2);
  861. out_ro:
  862. ubi_ro_mode(ubi);
  863. mutex_unlock(&ubi->move_mutex);
  864. up_read(&ubi->fm_eba_sem);
  865. ubi_assert(err != 0);
  866. return err < 0 ? err : -EIO;
  867. out_cancel:
  868. ubi->wl_scheduled = 0;
  869. spin_unlock(&ubi->wl_lock);
  870. mutex_unlock(&ubi->move_mutex);
  871. up_read(&ubi->fm_eba_sem);
  872. ubi_free_vid_buf(vidb);
  873. return 0;
  874. }
  875. /**
  876. * ensure_wear_leveling - schedule wear-leveling if it is needed.
  877. * @ubi: UBI device description object
  878. * @nested: set to non-zero if this function is called from UBI worker
  879. *
  880. * This function checks if it is time to start wear-leveling and schedules it
  881. * if yes. This function returns zero in case of success and a negative error
  882. * code in case of failure.
  883. */
  884. static int ensure_wear_leveling(struct ubi_device *ubi, int nested)
  885. {
  886. int err = 0;
  887. struct ubi_wl_entry *e1;
  888. struct ubi_wl_entry *e2;
  889. struct ubi_work *wrk;
  890. spin_lock(&ubi->wl_lock);
  891. if (ubi->wl_scheduled)
  892. /* Wear-leveling is already in the work queue */
  893. goto out_unlock;
  894. /*
  895. * If the ubi->scrub tree is not empty, scrubbing is needed, and the
  896. * the WL worker has to be scheduled anyway.
  897. */
  898. if (!ubi->scrub.rb_node) {
  899. if (!ubi->used.rb_node || !ubi->free.rb_node)
  900. /* No physical eraseblocks - no deal */
  901. goto out_unlock;
  902. /*
  903. * We schedule wear-leveling only if the difference between the
  904. * lowest erase counter of used physical eraseblocks and a high
  905. * erase counter of free physical eraseblocks is greater than
  906. * %UBI_WL_THRESHOLD.
  907. */
  908. e1 = rb_entry(rb_first(&ubi->used), struct ubi_wl_entry, u.rb);
  909. e2 = find_wl_entry(ubi, &ubi->free, WL_FREE_MAX_DIFF);
  910. if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD))
  911. goto out_unlock;
  912. dbg_wl("schedule wear-leveling");
  913. } else
  914. dbg_wl("schedule scrubbing");
  915. ubi->wl_scheduled = 1;
  916. spin_unlock(&ubi->wl_lock);
  917. wrk = kmalloc(sizeof(struct ubi_work), GFP_NOFS);
  918. if (!wrk) {
  919. err = -ENOMEM;
  920. goto out_cancel;
  921. }
  922. wrk->anchor = 0;
  923. wrk->func = &wear_leveling_worker;
  924. if (nested)
  925. __schedule_ubi_work(ubi, wrk);
  926. else
  927. schedule_ubi_work(ubi, wrk);
  928. return err;
  929. out_cancel:
  930. spin_lock(&ubi->wl_lock);
  931. ubi->wl_scheduled = 0;
  932. out_unlock:
  933. spin_unlock(&ubi->wl_lock);
  934. return err;
  935. }
  936. /**
  937. * __erase_worker - physical eraseblock erase worker function.
  938. * @ubi: UBI device description object
  939. * @wl_wrk: the work object
  940. * @shutdown: non-zero if the worker has to free memory and exit
  941. * because the WL sub-system is shutting down
  942. *
  943. * This function erases a physical eraseblock and perform torture testing if
  944. * needed. It also takes care about marking the physical eraseblock bad if
  945. * needed. Returns zero in case of success and a negative error code in case of
  946. * failure.
  947. */
  948. static int __erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk)
  949. {
  950. struct ubi_wl_entry *e = wl_wrk->e;
  951. int pnum = e->pnum;
  952. int vol_id = wl_wrk->vol_id;
  953. int lnum = wl_wrk->lnum;
  954. int err, available_consumed = 0;
  955. dbg_wl("erase PEB %d EC %d LEB %d:%d",
  956. pnum, e->ec, wl_wrk->vol_id, wl_wrk->lnum);
  957. err = sync_erase(ubi, e, wl_wrk->torture);
  958. if (!err) {
  959. spin_lock(&ubi->wl_lock);
  960. wl_tree_add(e, &ubi->free);
  961. ubi->free_count++;
  962. spin_unlock(&ubi->wl_lock);
  963. /*
  964. * One more erase operation has happened, take care about
  965. * protected physical eraseblocks.
  966. */
  967. serve_prot_queue(ubi);
  968. /* And take care about wear-leveling */
  969. err = ensure_wear_leveling(ubi, 1);
  970. return err;
  971. }
  972. ubi_err(ubi, "failed to erase PEB %d, error %d", pnum, err);
  973. if (err == -EINTR || err == -ENOMEM || err == -EAGAIN ||
  974. err == -EBUSY) {
  975. int err1;
  976. /* Re-schedule the LEB for erasure */
  977. err1 = schedule_erase(ubi, e, vol_id, lnum, 0, false);
  978. if (err1) {
  979. wl_entry_destroy(ubi, e);
  980. err = err1;
  981. goto out_ro;
  982. }
  983. return err;
  984. }
  985. wl_entry_destroy(ubi, e);
  986. if (err != -EIO)
  987. /*
  988. * If this is not %-EIO, we have no idea what to do. Scheduling
  989. * this physical eraseblock for erasure again would cause
  990. * errors again and again. Well, lets switch to R/O mode.
  991. */
  992. goto out_ro;
  993. /* It is %-EIO, the PEB went bad */
  994. if (!ubi->bad_allowed) {
  995. ubi_err(ubi, "bad physical eraseblock %d detected", pnum);
  996. goto out_ro;
  997. }
  998. spin_lock(&ubi->volumes_lock);
  999. if (ubi->beb_rsvd_pebs == 0) {
  1000. if (ubi->avail_pebs == 0) {
  1001. spin_unlock(&ubi->volumes_lock);
  1002. ubi_err(ubi, "no reserved/available physical eraseblocks");
  1003. goto out_ro;
  1004. }
  1005. ubi->avail_pebs -= 1;
  1006. available_consumed = 1;
  1007. }
  1008. spin_unlock(&ubi->volumes_lock);
  1009. ubi_msg(ubi, "mark PEB %d as bad", pnum);
  1010. err = ubi_io_mark_bad(ubi, pnum);
  1011. if (err)
  1012. goto out_ro;
  1013. spin_lock(&ubi->volumes_lock);
  1014. if (ubi->beb_rsvd_pebs > 0) {
  1015. if (available_consumed) {
  1016. /*
  1017. * The amount of reserved PEBs increased since we last
  1018. * checked.
  1019. */
  1020. ubi->avail_pebs += 1;
  1021. available_consumed = 0;
  1022. }
  1023. ubi->beb_rsvd_pebs -= 1;
  1024. }
  1025. ubi->bad_peb_count += 1;
  1026. ubi->good_peb_count -= 1;
  1027. ubi_calculate_reserved(ubi);
  1028. if (available_consumed)
  1029. ubi_warn(ubi, "no PEBs in the reserved pool, used an available PEB");
  1030. else if (ubi->beb_rsvd_pebs)
  1031. ubi_msg(ubi, "%d PEBs left in the reserve",
  1032. ubi->beb_rsvd_pebs);
  1033. else
  1034. ubi_warn(ubi, "last PEB from the reserve was used");
  1035. spin_unlock(&ubi->volumes_lock);
  1036. return err;
  1037. out_ro:
  1038. if (available_consumed) {
  1039. spin_lock(&ubi->volumes_lock);
  1040. ubi->avail_pebs += 1;
  1041. spin_unlock(&ubi->volumes_lock);
  1042. }
  1043. ubi_ro_mode(ubi);
  1044. return err;
  1045. }
  1046. static int erase_worker(struct ubi_device *ubi, struct ubi_work *wl_wrk,
  1047. int shutdown)
  1048. {
  1049. int ret;
  1050. if (shutdown) {
  1051. struct ubi_wl_entry *e = wl_wrk->e;
  1052. dbg_wl("cancel erasure of PEB %d EC %d", e->pnum, e->ec);
  1053. kfree(wl_wrk);
  1054. wl_entry_destroy(ubi, e);
  1055. return 0;
  1056. }
  1057. ret = __erase_worker(ubi, wl_wrk);
  1058. kfree(wl_wrk);
  1059. return ret;
  1060. }
  1061. /**
  1062. * ubi_wl_put_peb - return a PEB to the wear-leveling sub-system.
  1063. * @ubi: UBI device description object
  1064. * @vol_id: the volume ID that last used this PEB
  1065. * @lnum: the last used logical eraseblock number for the PEB
  1066. * @pnum: physical eraseblock to return
  1067. * @torture: if this physical eraseblock has to be tortured
  1068. *
  1069. * This function is called to return physical eraseblock @pnum to the pool of
  1070. * free physical eraseblocks. The @torture flag has to be set if an I/O error
  1071. * occurred to this @pnum and it has to be tested. This function returns zero
  1072. * in case of success, and a negative error code in case of failure.
  1073. */
  1074. int ubi_wl_put_peb(struct ubi_device *ubi, int vol_id, int lnum,
  1075. int pnum, int torture)
  1076. {
  1077. int err;
  1078. struct ubi_wl_entry *e;
  1079. dbg_wl("PEB %d", pnum);
  1080. ubi_assert(pnum >= 0);
  1081. ubi_assert(pnum < ubi->peb_count);
  1082. down_read(&ubi->fm_protect);
  1083. retry:
  1084. spin_lock(&ubi->wl_lock);
  1085. e = ubi->lookuptbl[pnum];
  1086. if (e == ubi->move_from) {
  1087. /*
  1088. * User is putting the physical eraseblock which was selected to
  1089. * be moved. It will be scheduled for erasure in the
  1090. * wear-leveling worker.
  1091. */
  1092. dbg_wl("PEB %d is being moved, wait", pnum);
  1093. spin_unlock(&ubi->wl_lock);
  1094. /* Wait for the WL worker by taking the @ubi->move_mutex */
  1095. mutex_lock(&ubi->move_mutex);
  1096. mutex_unlock(&ubi->move_mutex);
  1097. goto retry;
  1098. } else if (e == ubi->move_to) {
  1099. /*
  1100. * User is putting the physical eraseblock which was selected
  1101. * as the target the data is moved to. It may happen if the EBA
  1102. * sub-system already re-mapped the LEB in 'ubi_eba_copy_leb()'
  1103. * but the WL sub-system has not put the PEB to the "used" tree
  1104. * yet, but it is about to do this. So we just set a flag which
  1105. * will tell the WL worker that the PEB is not needed anymore
  1106. * and should be scheduled for erasure.
  1107. */
  1108. dbg_wl("PEB %d is the target of data moving", pnum);
  1109. ubi_assert(!ubi->move_to_put);
  1110. ubi->move_to_put = 1;
  1111. spin_unlock(&ubi->wl_lock);
  1112. up_read(&ubi->fm_protect);
  1113. return 0;
  1114. } else {
  1115. if (in_wl_tree(e, &ubi->used)) {
  1116. self_check_in_wl_tree(ubi, e, &ubi->used);
  1117. rb_erase(&e->u.rb, &ubi->used);
  1118. } else if (in_wl_tree(e, &ubi->scrub)) {
  1119. self_check_in_wl_tree(ubi, e, &ubi->scrub);
  1120. rb_erase(&e->u.rb, &ubi->scrub);
  1121. } else if (in_wl_tree(e, &ubi->erroneous)) {
  1122. self_check_in_wl_tree(ubi, e, &ubi->erroneous);
  1123. rb_erase(&e->u.rb, &ubi->erroneous);
  1124. ubi->erroneous_peb_count -= 1;
  1125. ubi_assert(ubi->erroneous_peb_count >= 0);
  1126. /* Erroneous PEBs should be tortured */
  1127. torture = 1;
  1128. } else {
  1129. err = prot_queue_del(ubi, e->pnum);
  1130. if (err) {
  1131. ubi_err(ubi, "PEB %d not found", pnum);
  1132. ubi_ro_mode(ubi);
  1133. spin_unlock(&ubi->wl_lock);
  1134. up_read(&ubi->fm_protect);
  1135. return err;
  1136. }
  1137. }
  1138. }
  1139. spin_unlock(&ubi->wl_lock);
  1140. err = schedule_erase(ubi, e, vol_id, lnum, torture, false);
  1141. if (err) {
  1142. spin_lock(&ubi->wl_lock);
  1143. wl_tree_add(e, &ubi->used);
  1144. spin_unlock(&ubi->wl_lock);
  1145. }
  1146. up_read(&ubi->fm_protect);
  1147. return err;
  1148. }
  1149. /**
  1150. * ubi_wl_scrub_peb - schedule a physical eraseblock for scrubbing.
  1151. * @ubi: UBI device description object
  1152. * @pnum: the physical eraseblock to schedule
  1153. *
  1154. * If a bit-flip in a physical eraseblock is detected, this physical eraseblock
  1155. * needs scrubbing. This function schedules a physical eraseblock for
  1156. * scrubbing which is done in background. This function returns zero in case of
  1157. * success and a negative error code in case of failure.
  1158. */
  1159. int ubi_wl_scrub_peb(struct ubi_device *ubi, int pnum)
  1160. {
  1161. struct ubi_wl_entry *e;
  1162. ubi_msg(ubi, "schedule PEB %d for scrubbing", pnum);
  1163. retry:
  1164. spin_lock(&ubi->wl_lock);
  1165. e = ubi->lookuptbl[pnum];
  1166. if (e == ubi->move_from || in_wl_tree(e, &ubi->scrub) ||
  1167. in_wl_tree(e, &ubi->erroneous)) {
  1168. spin_unlock(&ubi->wl_lock);
  1169. return 0;
  1170. }
  1171. if (e == ubi->move_to) {
  1172. /*
  1173. * This physical eraseblock was used to move data to. The data
  1174. * was moved but the PEB was not yet inserted to the proper
  1175. * tree. We should just wait a little and let the WL worker
  1176. * proceed.
  1177. */
  1178. spin_unlock(&ubi->wl_lock);
  1179. dbg_wl("the PEB %d is not in proper tree, retry", pnum);
  1180. yield();
  1181. goto retry;
  1182. }
  1183. if (in_wl_tree(e, &ubi->used)) {
  1184. self_check_in_wl_tree(ubi, e, &ubi->used);
  1185. rb_erase(&e->u.rb, &ubi->used);
  1186. } else {
  1187. int err;
  1188. err = prot_queue_del(ubi, e->pnum);
  1189. if (err) {
  1190. ubi_err(ubi, "PEB %d not found", pnum);
  1191. ubi_ro_mode(ubi);
  1192. spin_unlock(&ubi->wl_lock);
  1193. return err;
  1194. }
  1195. }
  1196. wl_tree_add(e, &ubi->scrub);
  1197. spin_unlock(&ubi->wl_lock);
  1198. /*
  1199. * Technically scrubbing is the same as wear-leveling, so it is done
  1200. * by the WL worker.
  1201. */
  1202. return ensure_wear_leveling(ubi, 0);
  1203. }
  1204. /**
  1205. * ubi_wl_flush - flush all pending works.
  1206. * @ubi: UBI device description object
  1207. * @vol_id: the volume id to flush for
  1208. * @lnum: the logical eraseblock number to flush for
  1209. *
  1210. * This function executes all pending works for a particular volume id /
  1211. * logical eraseblock number pair. If either value is set to %UBI_ALL, then it
  1212. * acts as a wildcard for all of the corresponding volume numbers or logical
  1213. * eraseblock numbers. It returns zero in case of success and a negative error
  1214. * code in case of failure.
  1215. */
  1216. int ubi_wl_flush(struct ubi_device *ubi, int vol_id, int lnum)
  1217. {
  1218. int err = 0;
  1219. int found = 1;
  1220. /*
  1221. * Erase while the pending works queue is not empty, but not more than
  1222. * the number of currently pending works.
  1223. */
  1224. dbg_wl("flush pending work for LEB %d:%d (%d pending works)",
  1225. vol_id, lnum, ubi->works_count);
  1226. while (found) {
  1227. struct ubi_work *wrk, *tmp;
  1228. found = 0;
  1229. down_read(&ubi->work_sem);
  1230. spin_lock(&ubi->wl_lock);
  1231. list_for_each_entry_safe(wrk, tmp, &ubi->works, list) {
  1232. if ((vol_id == UBI_ALL || wrk->vol_id == vol_id) &&
  1233. (lnum == UBI_ALL || wrk->lnum == lnum)) {
  1234. list_del(&wrk->list);
  1235. ubi->works_count -= 1;
  1236. ubi_assert(ubi->works_count >= 0);
  1237. spin_unlock(&ubi->wl_lock);
  1238. err = wrk->func(ubi, wrk, 0);
  1239. if (err) {
  1240. up_read(&ubi->work_sem);
  1241. return err;
  1242. }
  1243. spin_lock(&ubi->wl_lock);
  1244. found = 1;
  1245. break;
  1246. }
  1247. }
  1248. spin_unlock(&ubi->wl_lock);
  1249. up_read(&ubi->work_sem);
  1250. }
  1251. /*
  1252. * Make sure all the works which have been done in parallel are
  1253. * finished.
  1254. */
  1255. down_write(&ubi->work_sem);
  1256. up_write(&ubi->work_sem);
  1257. return err;
  1258. }
  1259. /**
  1260. * tree_destroy - destroy an RB-tree.
  1261. * @ubi: UBI device description object
  1262. * @root: the root of the tree to destroy
  1263. */
  1264. static void tree_destroy(struct ubi_device *ubi, struct rb_root *root)
  1265. {
  1266. struct rb_node *rb;
  1267. struct ubi_wl_entry *e;
  1268. rb = root->rb_node;
  1269. while (rb) {
  1270. if (rb->rb_left)
  1271. rb = rb->rb_left;
  1272. else if (rb->rb_right)
  1273. rb = rb->rb_right;
  1274. else {
  1275. e = rb_entry(rb, struct ubi_wl_entry, u.rb);
  1276. rb = rb_parent(rb);
  1277. if (rb) {
  1278. if (rb->rb_left == &e->u.rb)
  1279. rb->rb_left = NULL;
  1280. else
  1281. rb->rb_right = NULL;
  1282. }
  1283. wl_entry_destroy(ubi, e);
  1284. }
  1285. }
  1286. }
  1287. /**
  1288. * ubi_thread - UBI background thread.
  1289. * @u: the UBI device description object pointer
  1290. */
  1291. int ubi_thread(void *u)
  1292. {
  1293. int failures = 0;
  1294. struct ubi_device *ubi = u;
  1295. ubi_msg(ubi, "background thread \"%s\" started, PID %d",
  1296. ubi->bgt_name, task_pid_nr(current));
  1297. set_freezable();
  1298. for (;;) {
  1299. int err;
  1300. if (kthread_should_stop())
  1301. break;
  1302. if (try_to_freeze())
  1303. continue;
  1304. spin_lock(&ubi->wl_lock);
  1305. if (list_empty(&ubi->works) || ubi->ro_mode ||
  1306. !ubi->thread_enabled || ubi_dbg_is_bgt_disabled(ubi)) {
  1307. set_current_state(TASK_INTERRUPTIBLE);
  1308. spin_unlock(&ubi->wl_lock);
  1309. /*
  1310. * Check kthread_should_stop() after we set the task
  1311. * state to guarantee that we either see the stop bit
  1312. * and exit or the task state is reset to runnable such
  1313. * that it's not scheduled out indefinitely and detects
  1314. * the stop bit at kthread_should_stop().
  1315. */
  1316. if (kthread_should_stop()) {
  1317. set_current_state(TASK_RUNNING);
  1318. break;
  1319. }
  1320. schedule();
  1321. continue;
  1322. }
  1323. spin_unlock(&ubi->wl_lock);
  1324. err = do_work(ubi);
  1325. if (err) {
  1326. ubi_err(ubi, "%s: work failed with error code %d",
  1327. ubi->bgt_name, err);
  1328. if (failures++ > WL_MAX_FAILURES) {
  1329. /*
  1330. * Too many failures, disable the thread and
  1331. * switch to read-only mode.
  1332. */
  1333. ubi_msg(ubi, "%s: %d consecutive failures",
  1334. ubi->bgt_name, WL_MAX_FAILURES);
  1335. ubi_ro_mode(ubi);
  1336. ubi->thread_enabled = 0;
  1337. continue;
  1338. }
  1339. } else
  1340. failures = 0;
  1341. cond_resched();
  1342. }
  1343. dbg_wl("background thread \"%s\" is killed", ubi->bgt_name);
  1344. ubi->thread_enabled = 0;
  1345. return 0;
  1346. }
  1347. /**
  1348. * shutdown_work - shutdown all pending works.
  1349. * @ubi: UBI device description object
  1350. */
  1351. static void shutdown_work(struct ubi_device *ubi)
  1352. {
  1353. while (!list_empty(&ubi->works)) {
  1354. struct ubi_work *wrk;
  1355. wrk = list_entry(ubi->works.next, struct ubi_work, list);
  1356. list_del(&wrk->list);
  1357. wrk->func(ubi, wrk, 1);
  1358. ubi->works_count -= 1;
  1359. ubi_assert(ubi->works_count >= 0);
  1360. }
  1361. }
  1362. /**
  1363. * erase_aeb - erase a PEB given in UBI attach info PEB
  1364. * @ubi: UBI device description object
  1365. * @aeb: UBI attach info PEB
  1366. * @sync: If true, erase synchronously. Otherwise schedule for erasure
  1367. */
  1368. static int erase_aeb(struct ubi_device *ubi, struct ubi_ainf_peb *aeb, bool sync)
  1369. {
  1370. struct ubi_wl_entry *e;
  1371. int err;
  1372. e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
  1373. if (!e)
  1374. return -ENOMEM;
  1375. e->pnum = aeb->pnum;
  1376. e->ec = aeb->ec;
  1377. ubi->lookuptbl[e->pnum] = e;
  1378. if (sync) {
  1379. err = sync_erase(ubi, e, false);
  1380. if (err)
  1381. goto out_free;
  1382. wl_tree_add(e, &ubi->free);
  1383. ubi->free_count++;
  1384. } else {
  1385. err = schedule_erase(ubi, e, aeb->vol_id, aeb->lnum, 0, false);
  1386. if (err)
  1387. goto out_free;
  1388. }
  1389. return 0;
  1390. out_free:
  1391. wl_entry_destroy(ubi, e);
  1392. return err;
  1393. }
  1394. /**
  1395. * ubi_wl_init - initialize the WL sub-system using attaching information.
  1396. * @ubi: UBI device description object
  1397. * @ai: attaching information
  1398. *
  1399. * This function returns zero in case of success, and a negative error code in
  1400. * case of failure.
  1401. */
  1402. int ubi_wl_init(struct ubi_device *ubi, struct ubi_attach_info *ai)
  1403. {
  1404. int err, i, reserved_pebs, found_pebs = 0;
  1405. struct rb_node *rb1, *rb2;
  1406. struct ubi_ainf_volume *av;
  1407. struct ubi_ainf_peb *aeb, *tmp;
  1408. struct ubi_wl_entry *e;
  1409. ubi->used = ubi->erroneous = ubi->free = ubi->scrub = RB_ROOT;
  1410. spin_lock_init(&ubi->wl_lock);
  1411. mutex_init(&ubi->move_mutex);
  1412. init_rwsem(&ubi->work_sem);
  1413. ubi->max_ec = ai->max_ec;
  1414. INIT_LIST_HEAD(&ubi->works);
  1415. sprintf(ubi->bgt_name, UBI_BGT_NAME_PATTERN, ubi->ubi_num);
  1416. err = -ENOMEM;
  1417. ubi->lookuptbl = kzalloc(ubi->peb_count * sizeof(void *), GFP_KERNEL);
  1418. if (!ubi->lookuptbl)
  1419. return err;
  1420. for (i = 0; i < UBI_PROT_QUEUE_LEN; i++)
  1421. INIT_LIST_HEAD(&ubi->pq[i]);
  1422. ubi->pq_head = 0;
  1423. ubi->free_count = 0;
  1424. list_for_each_entry_safe(aeb, tmp, &ai->erase, u.list) {
  1425. cond_resched();
  1426. err = erase_aeb(ubi, aeb, false);
  1427. if (err)
  1428. goto out_free;
  1429. found_pebs++;
  1430. }
  1431. list_for_each_entry(aeb, &ai->free, u.list) {
  1432. cond_resched();
  1433. e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
  1434. if (!e) {
  1435. err = -ENOMEM;
  1436. goto out_free;
  1437. }
  1438. e->pnum = aeb->pnum;
  1439. e->ec = aeb->ec;
  1440. ubi_assert(e->ec >= 0);
  1441. wl_tree_add(e, &ubi->free);
  1442. ubi->free_count++;
  1443. ubi->lookuptbl[e->pnum] = e;
  1444. found_pebs++;
  1445. }
  1446. ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
  1447. ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
  1448. cond_resched();
  1449. e = kmem_cache_alloc(ubi_wl_entry_slab, GFP_KERNEL);
  1450. if (!e) {
  1451. err = -ENOMEM;
  1452. goto out_free;
  1453. }
  1454. e->pnum = aeb->pnum;
  1455. e->ec = aeb->ec;
  1456. ubi->lookuptbl[e->pnum] = e;
  1457. if (!aeb->scrub) {
  1458. dbg_wl("add PEB %d EC %d to the used tree",
  1459. e->pnum, e->ec);
  1460. wl_tree_add(e, &ubi->used);
  1461. } else {
  1462. dbg_wl("add PEB %d EC %d to the scrub tree",
  1463. e->pnum, e->ec);
  1464. wl_tree_add(e, &ubi->scrub);
  1465. }
  1466. found_pebs++;
  1467. }
  1468. }
  1469. list_for_each_entry(aeb, &ai->fastmap, u.list) {
  1470. cond_resched();
  1471. e = ubi_find_fm_block(ubi, aeb->pnum);
  1472. if (e) {
  1473. ubi_assert(!ubi->lookuptbl[e->pnum]);
  1474. ubi->lookuptbl[e->pnum] = e;
  1475. } else {
  1476. bool sync = false;
  1477. /*
  1478. * Usually old Fastmap PEBs are scheduled for erasure
  1479. * and we don't have to care about them but if we face
  1480. * an power cut before scheduling them we need to
  1481. * take care of them here.
  1482. */
  1483. if (ubi->lookuptbl[aeb->pnum])
  1484. continue;
  1485. /*
  1486. * The fastmap update code might not find a free PEB for
  1487. * writing the fastmap anchor to and then reuses the
  1488. * current fastmap anchor PEB. When this PEB gets erased
  1489. * and a power cut happens before it is written again we
  1490. * must make sure that the fastmap attach code doesn't
  1491. * find any outdated fastmap anchors, hence we erase the
  1492. * outdated fastmap anchor PEBs synchronously here.
  1493. */
  1494. if (aeb->vol_id == UBI_FM_SB_VOLUME_ID)
  1495. sync = true;
  1496. err = erase_aeb(ubi, aeb, sync);
  1497. if (err)
  1498. goto out_free;
  1499. }
  1500. found_pebs++;
  1501. }
  1502. dbg_wl("found %i PEBs", found_pebs);
  1503. ubi_assert(ubi->good_peb_count == found_pebs);
  1504. reserved_pebs = WL_RESERVED_PEBS;
  1505. ubi_fastmap_init(ubi, &reserved_pebs);
  1506. if (ubi->avail_pebs < reserved_pebs) {
  1507. ubi_err(ubi, "no enough physical eraseblocks (%d, need %d)",
  1508. ubi->avail_pebs, reserved_pebs);
  1509. if (ubi->corr_peb_count)
  1510. ubi_err(ubi, "%d PEBs are corrupted and not used",
  1511. ubi->corr_peb_count);
  1512. err = -ENOSPC;
  1513. goto out_free;
  1514. }
  1515. ubi->avail_pebs -= reserved_pebs;
  1516. ubi->rsvd_pebs += reserved_pebs;
  1517. /* Schedule wear-leveling if needed */
  1518. err = ensure_wear_leveling(ubi, 0);
  1519. if (err)
  1520. goto out_free;
  1521. return 0;
  1522. out_free:
  1523. shutdown_work(ubi);
  1524. tree_destroy(ubi, &ubi->used);
  1525. tree_destroy(ubi, &ubi->free);
  1526. tree_destroy(ubi, &ubi->scrub);
  1527. kfree(ubi->lookuptbl);
  1528. return err;
  1529. }
  1530. /**
  1531. * protection_queue_destroy - destroy the protection queue.
  1532. * @ubi: UBI device description object
  1533. */
  1534. static void protection_queue_destroy(struct ubi_device *ubi)
  1535. {
  1536. int i;
  1537. struct ubi_wl_entry *e, *tmp;
  1538. for (i = 0; i < UBI_PROT_QUEUE_LEN; ++i) {
  1539. list_for_each_entry_safe(e, tmp, &ubi->pq[i], u.list) {
  1540. list_del(&e->u.list);
  1541. wl_entry_destroy(ubi, e);
  1542. }
  1543. }
  1544. }
  1545. /**
  1546. * ubi_wl_close - close the wear-leveling sub-system.
  1547. * @ubi: UBI device description object
  1548. */
  1549. void ubi_wl_close(struct ubi_device *ubi)
  1550. {
  1551. dbg_wl("close the WL sub-system");
  1552. ubi_fastmap_close(ubi);
  1553. shutdown_work(ubi);
  1554. protection_queue_destroy(ubi);
  1555. tree_destroy(ubi, &ubi->used);
  1556. tree_destroy(ubi, &ubi->erroneous);
  1557. tree_destroy(ubi, &ubi->free);
  1558. tree_destroy(ubi, &ubi->scrub);
  1559. kfree(ubi->lookuptbl);
  1560. }
  1561. /**
  1562. * self_check_ec - make sure that the erase counter of a PEB is correct.
  1563. * @ubi: UBI device description object
  1564. * @pnum: the physical eraseblock number to check
  1565. * @ec: the erase counter to check
  1566. *
  1567. * This function returns zero if the erase counter of physical eraseblock @pnum
  1568. * is equivalent to @ec, and a negative error code if not or if an error
  1569. * occurred.
  1570. */
  1571. static int self_check_ec(struct ubi_device *ubi, int pnum, int ec)
  1572. {
  1573. int err;
  1574. long long read_ec;
  1575. struct ubi_ec_hdr *ec_hdr;
  1576. if (!ubi_dbg_chk_gen(ubi))
  1577. return 0;
  1578. ec_hdr = kzalloc(ubi->ec_hdr_alsize, GFP_NOFS);
  1579. if (!ec_hdr)
  1580. return -ENOMEM;
  1581. err = ubi_io_read_ec_hdr(ubi, pnum, ec_hdr, 0);
  1582. if (err && err != UBI_IO_BITFLIPS) {
  1583. /* The header does not have to exist */
  1584. err = 0;
  1585. goto out_free;
  1586. }
  1587. read_ec = be64_to_cpu(ec_hdr->ec);
  1588. if (ec != read_ec && read_ec - ec > 1) {
  1589. ubi_err(ubi, "self-check failed for PEB %d", pnum);
  1590. ubi_err(ubi, "read EC is %lld, should be %d", read_ec, ec);
  1591. dump_stack();
  1592. err = 1;
  1593. } else
  1594. err = 0;
  1595. out_free:
  1596. kfree(ec_hdr);
  1597. return err;
  1598. }
  1599. /**
  1600. * self_check_in_wl_tree - check that wear-leveling entry is in WL RB-tree.
  1601. * @ubi: UBI device description object
  1602. * @e: the wear-leveling entry to check
  1603. * @root: the root of the tree
  1604. *
  1605. * This function returns zero if @e is in the @root RB-tree and %-EINVAL if it
  1606. * is not.
  1607. */
  1608. static int self_check_in_wl_tree(const struct ubi_device *ubi,
  1609. struct ubi_wl_entry *e, struct rb_root *root)
  1610. {
  1611. if (!ubi_dbg_chk_gen(ubi))
  1612. return 0;
  1613. if (in_wl_tree(e, root))
  1614. return 0;
  1615. ubi_err(ubi, "self-check failed for PEB %d, EC %d, RB-tree %p ",
  1616. e->pnum, e->ec, root);
  1617. dump_stack();
  1618. return -EINVAL;
  1619. }
  1620. /**
  1621. * self_check_in_pq - check if wear-leveling entry is in the protection
  1622. * queue.
  1623. * @ubi: UBI device description object
  1624. * @e: the wear-leveling entry to check
  1625. *
  1626. * This function returns zero if @e is in @ubi->pq and %-EINVAL if it is not.
  1627. */
  1628. static int self_check_in_pq(const struct ubi_device *ubi,
  1629. struct ubi_wl_entry *e)
  1630. {
  1631. struct ubi_wl_entry *p;
  1632. int i;
  1633. if (!ubi_dbg_chk_gen(ubi))
  1634. return 0;
  1635. for (i = 0; i < UBI_PROT_QUEUE_LEN; ++i)
  1636. list_for_each_entry(p, &ubi->pq[i], u.list)
  1637. if (p == e)
  1638. return 0;
  1639. ubi_err(ubi, "self-check failed for PEB %d, EC %d, Protect queue",
  1640. e->pnum, e->ec);
  1641. dump_stack();
  1642. return -EINVAL;
  1643. }
  1644. #ifndef CONFIG_MTD_UBI_FASTMAP
  1645. static struct ubi_wl_entry *get_peb_for_wl(struct ubi_device *ubi)
  1646. {
  1647. struct ubi_wl_entry *e;
  1648. e = find_wl_entry(ubi, &ubi->free, WL_FREE_MAX_DIFF);
  1649. self_check_in_wl_tree(ubi, e, &ubi->free);
  1650. ubi->free_count--;
  1651. ubi_assert(ubi->free_count >= 0);
  1652. rb_erase(&e->u.rb, &ubi->free);
  1653. return e;
  1654. }
  1655. /**
  1656. * produce_free_peb - produce a free physical eraseblock.
  1657. * @ubi: UBI device description object
  1658. *
  1659. * This function tries to make a free PEB by means of synchronous execution of
  1660. * pending works. This may be needed if, for example the background thread is
  1661. * disabled. Returns zero in case of success and a negative error code in case
  1662. * of failure.
  1663. */
  1664. static int produce_free_peb(struct ubi_device *ubi)
  1665. {
  1666. int err;
  1667. while (!ubi->free.rb_node && ubi->works_count) {
  1668. spin_unlock(&ubi->wl_lock);
  1669. dbg_wl("do one work synchronously");
  1670. err = do_work(ubi);
  1671. spin_lock(&ubi->wl_lock);
  1672. if (err)
  1673. return err;
  1674. }
  1675. return 0;
  1676. }
  1677. /**
  1678. * ubi_wl_get_peb - get a physical eraseblock.
  1679. * @ubi: UBI device description object
  1680. *
  1681. * This function returns a physical eraseblock in case of success and a
  1682. * negative error code in case of failure.
  1683. * Returns with ubi->fm_eba_sem held in read mode!
  1684. */
  1685. int ubi_wl_get_peb(struct ubi_device *ubi)
  1686. {
  1687. int err;
  1688. struct ubi_wl_entry *e;
  1689. retry:
  1690. down_read(&ubi->fm_eba_sem);
  1691. spin_lock(&ubi->wl_lock);
  1692. if (!ubi->free.rb_node) {
  1693. if (ubi->works_count == 0) {
  1694. ubi_err(ubi, "no free eraseblocks");
  1695. ubi_assert(list_empty(&ubi->works));
  1696. spin_unlock(&ubi->wl_lock);
  1697. return -ENOSPC;
  1698. }
  1699. err = produce_free_peb(ubi);
  1700. if (err < 0) {
  1701. spin_unlock(&ubi->wl_lock);
  1702. return err;
  1703. }
  1704. spin_unlock(&ubi->wl_lock);
  1705. up_read(&ubi->fm_eba_sem);
  1706. goto retry;
  1707. }
  1708. e = wl_get_wle(ubi);
  1709. prot_queue_add(ubi, e);
  1710. spin_unlock(&ubi->wl_lock);
  1711. err = ubi_self_check_all_ff(ubi, e->pnum, ubi->vid_hdr_aloffset,
  1712. ubi->peb_size - ubi->vid_hdr_aloffset);
  1713. if (err) {
  1714. ubi_err(ubi, "new PEB %d does not contain all 0xFF bytes", e->pnum);
  1715. return err;
  1716. }
  1717. return e->pnum;
  1718. }
  1719. #else
  1720. #include "fastmap-wl.c"
  1721. #endif