glock.c 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #include <linux/sched.h>
  10. #include <linux/slab.h>
  11. #include <linux/spinlock.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/delay.h>
  14. #include <linux/sort.h>
  15. #include <linux/jhash.h>
  16. #include <linux/kallsyms.h>
  17. #include <linux/gfs2_ondisk.h>
  18. #include <linux/list.h>
  19. #include <linux/wait.h>
  20. #include <linux/module.h>
  21. #include <asm/uaccess.h>
  22. #include <linux/seq_file.h>
  23. #include <linux/debugfs.h>
  24. #include <linux/kthread.h>
  25. #include <linux/freezer.h>
  26. #include <linux/workqueue.h>
  27. #include <linux/jiffies.h>
  28. #include "gfs2.h"
  29. #include "incore.h"
  30. #include "glock.h"
  31. #include "glops.h"
  32. #include "inode.h"
  33. #include "lops.h"
  34. #include "meta_io.h"
  35. #include "quota.h"
  36. #include "super.h"
  37. #include "util.h"
  38. #include "bmap.h"
  39. #define CREATE_TRACE_POINTS
  40. #include "trace_gfs2.h"
  41. struct gfs2_gl_hash_bucket {
  42. struct hlist_head hb_list;
  43. };
  44. struct gfs2_glock_iter {
  45. int hash; /* hash bucket index */
  46. struct gfs2_sbd *sdp; /* incore superblock */
  47. struct gfs2_glock *gl; /* current glock struct */
  48. char string[512]; /* scratch space */
  49. };
  50. typedef void (*glock_examiner) (struct gfs2_glock * gl);
  51. static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
  52. static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl);
  53. #define GLOCK_BUG_ON(gl,x) do { if (unlikely(x)) { __dump_glock(NULL, gl); BUG(); } } while(0)
  54. static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target);
  55. static struct dentry *gfs2_root;
  56. static struct workqueue_struct *glock_workqueue;
  57. struct workqueue_struct *gfs2_delete_workqueue;
  58. static LIST_HEAD(lru_list);
  59. static atomic_t lru_count = ATOMIC_INIT(0);
  60. static DEFINE_SPINLOCK(lru_lock);
  61. #define GFS2_GL_HASH_SHIFT 15
  62. #define GFS2_GL_HASH_SIZE (1 << GFS2_GL_HASH_SHIFT)
  63. #define GFS2_GL_HASH_MASK (GFS2_GL_HASH_SIZE - 1)
  64. static struct gfs2_gl_hash_bucket gl_hash_table[GFS2_GL_HASH_SIZE];
  65. static struct dentry *gfs2_root;
  66. /*
  67. * Despite what you might think, the numbers below are not arbitrary :-)
  68. * They are taken from the ipv4 routing hash code, which is well tested
  69. * and thus should be nearly optimal. Later on we might tweek the numbers
  70. * but for now this should be fine.
  71. *
  72. * The reason for putting the locks in a separate array from the list heads
  73. * is that we can have fewer locks than list heads and save memory. We use
  74. * the same hash function for both, but with a different hash mask.
  75. */
  76. #if defined(CONFIG_SMP) || defined(CONFIG_DEBUG_SPINLOCK) || \
  77. defined(CONFIG_PROVE_LOCKING)
  78. #ifdef CONFIG_LOCKDEP
  79. # define GL_HASH_LOCK_SZ 256
  80. #else
  81. # if NR_CPUS >= 32
  82. # define GL_HASH_LOCK_SZ 4096
  83. # elif NR_CPUS >= 16
  84. # define GL_HASH_LOCK_SZ 2048
  85. # elif NR_CPUS >= 8
  86. # define GL_HASH_LOCK_SZ 1024
  87. # elif NR_CPUS >= 4
  88. # define GL_HASH_LOCK_SZ 512
  89. # else
  90. # define GL_HASH_LOCK_SZ 256
  91. # endif
  92. #endif
  93. /* We never want more locks than chains */
  94. #if GFS2_GL_HASH_SIZE < GL_HASH_LOCK_SZ
  95. # undef GL_HASH_LOCK_SZ
  96. # define GL_HASH_LOCK_SZ GFS2_GL_HASH_SIZE
  97. #endif
  98. static rwlock_t gl_hash_locks[GL_HASH_LOCK_SZ];
  99. static inline rwlock_t *gl_lock_addr(unsigned int x)
  100. {
  101. return &gl_hash_locks[x & (GL_HASH_LOCK_SZ-1)];
  102. }
  103. #else /* not SMP, so no spinlocks required */
  104. static inline rwlock_t *gl_lock_addr(unsigned int x)
  105. {
  106. return NULL;
  107. }
  108. #endif
  109. /**
  110. * gl_hash() - Turn glock number into hash bucket number
  111. * @lock: The glock number
  112. *
  113. * Returns: The number of the corresponding hash bucket
  114. */
  115. static unsigned int gl_hash(const struct gfs2_sbd *sdp,
  116. const struct lm_lockname *name)
  117. {
  118. unsigned int h;
  119. h = jhash(&name->ln_number, sizeof(u64), 0);
  120. h = jhash(&name->ln_type, sizeof(unsigned int), h);
  121. h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
  122. h &= GFS2_GL_HASH_MASK;
  123. return h;
  124. }
  125. /**
  126. * glock_free() - Perform a few checks and then release struct gfs2_glock
  127. * @gl: The glock to release
  128. *
  129. * Also calls lock module to release its internal structure for this glock.
  130. *
  131. */
  132. static void glock_free(struct gfs2_glock *gl)
  133. {
  134. struct gfs2_sbd *sdp = gl->gl_sbd;
  135. struct address_space *mapping = gfs2_glock2aspace(gl);
  136. struct kmem_cache *cachep = gfs2_glock_cachep;
  137. GLOCK_BUG_ON(gl, mapping && mapping->nrpages);
  138. trace_gfs2_glock_put(gl);
  139. if (mapping)
  140. cachep = gfs2_glock_aspace_cachep;
  141. sdp->sd_lockstruct.ls_ops->lm_put_lock(cachep, gl);
  142. }
  143. /**
  144. * gfs2_glock_hold() - increment reference count on glock
  145. * @gl: The glock to hold
  146. *
  147. */
  148. void gfs2_glock_hold(struct gfs2_glock *gl)
  149. {
  150. GLOCK_BUG_ON(gl, atomic_read(&gl->gl_ref) == 0);
  151. atomic_inc(&gl->gl_ref);
  152. }
  153. /**
  154. * demote_ok - Check to see if it's ok to unlock a glock
  155. * @gl: the glock
  156. *
  157. * Returns: 1 if it's ok
  158. */
  159. static int demote_ok(const struct gfs2_glock *gl)
  160. {
  161. const struct gfs2_glock_operations *glops = gl->gl_ops;
  162. if (gl->gl_state == LM_ST_UNLOCKED)
  163. return 0;
  164. if (!list_empty(&gl->gl_holders))
  165. return 0;
  166. if (glops->go_demote_ok)
  167. return glops->go_demote_ok(gl);
  168. return 1;
  169. }
  170. /**
  171. * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
  172. * @gl: the glock
  173. *
  174. */
  175. static void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
  176. {
  177. int may_reclaim;
  178. may_reclaim = (demote_ok(gl) &&
  179. (atomic_read(&gl->gl_ref) == 1 ||
  180. (gl->gl_name.ln_type == LM_TYPE_INODE &&
  181. atomic_read(&gl->gl_ref) <= 2)));
  182. spin_lock(&lru_lock);
  183. if (list_empty(&gl->gl_lru) && may_reclaim) {
  184. list_add_tail(&gl->gl_lru, &lru_list);
  185. atomic_inc(&lru_count);
  186. }
  187. spin_unlock(&lru_lock);
  188. }
  189. /**
  190. * gfs2_glock_put_nolock() - Decrement reference count on glock
  191. * @gl: The glock to put
  192. *
  193. * This function should only be used if the caller has its own reference
  194. * to the glock, in addition to the one it is dropping.
  195. */
  196. void gfs2_glock_put_nolock(struct gfs2_glock *gl)
  197. {
  198. if (atomic_dec_and_test(&gl->gl_ref))
  199. GLOCK_BUG_ON(gl, 1);
  200. gfs2_glock_schedule_for_reclaim(gl);
  201. }
  202. /**
  203. * gfs2_glock_put() - Decrement reference count on glock
  204. * @gl: The glock to put
  205. *
  206. */
  207. int gfs2_glock_put(struct gfs2_glock *gl)
  208. {
  209. int rv = 0;
  210. write_lock(gl_lock_addr(gl->gl_hash));
  211. if (atomic_dec_and_lock(&gl->gl_ref, &lru_lock)) {
  212. hlist_del(&gl->gl_list);
  213. if (!list_empty(&gl->gl_lru)) {
  214. list_del_init(&gl->gl_lru);
  215. atomic_dec(&lru_count);
  216. }
  217. spin_unlock(&lru_lock);
  218. write_unlock(gl_lock_addr(gl->gl_hash));
  219. GLOCK_BUG_ON(gl, !list_empty(&gl->gl_holders));
  220. glock_free(gl);
  221. rv = 1;
  222. goto out;
  223. }
  224. spin_lock(&gl->gl_spin);
  225. gfs2_glock_schedule_for_reclaim(gl);
  226. spin_unlock(&gl->gl_spin);
  227. write_unlock(gl_lock_addr(gl->gl_hash));
  228. out:
  229. return rv;
  230. }
  231. /**
  232. * search_bucket() - Find struct gfs2_glock by lock number
  233. * @bucket: the bucket to search
  234. * @name: The lock name
  235. *
  236. * Returns: NULL, or the struct gfs2_glock with the requested number
  237. */
  238. static struct gfs2_glock *search_bucket(unsigned int hash,
  239. const struct gfs2_sbd *sdp,
  240. const struct lm_lockname *name)
  241. {
  242. struct gfs2_glock *gl;
  243. struct hlist_node *h;
  244. hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
  245. if (!lm_name_equal(&gl->gl_name, name))
  246. continue;
  247. if (gl->gl_sbd != sdp)
  248. continue;
  249. atomic_inc(&gl->gl_ref);
  250. return gl;
  251. }
  252. return NULL;
  253. }
  254. /**
  255. * may_grant - check if its ok to grant a new lock
  256. * @gl: The glock
  257. * @gh: The lock request which we wish to grant
  258. *
  259. * Returns: true if its ok to grant the lock
  260. */
  261. static inline int may_grant(const struct gfs2_glock *gl, const struct gfs2_holder *gh)
  262. {
  263. const struct gfs2_holder *gh_head = list_entry(gl->gl_holders.next, const struct gfs2_holder, gh_list);
  264. if ((gh->gh_state == LM_ST_EXCLUSIVE ||
  265. gh_head->gh_state == LM_ST_EXCLUSIVE) && gh != gh_head)
  266. return 0;
  267. if (gl->gl_state == gh->gh_state)
  268. return 1;
  269. if (gh->gh_flags & GL_EXACT)
  270. return 0;
  271. if (gl->gl_state == LM_ST_EXCLUSIVE) {
  272. if (gh->gh_state == LM_ST_SHARED && gh_head->gh_state == LM_ST_SHARED)
  273. return 1;
  274. if (gh->gh_state == LM_ST_DEFERRED && gh_head->gh_state == LM_ST_DEFERRED)
  275. return 1;
  276. }
  277. if (gl->gl_state != LM_ST_UNLOCKED && (gh->gh_flags & LM_FLAG_ANY))
  278. return 1;
  279. return 0;
  280. }
  281. static void gfs2_holder_wake(struct gfs2_holder *gh)
  282. {
  283. clear_bit(HIF_WAIT, &gh->gh_iflags);
  284. smp_mb__after_clear_bit();
  285. wake_up_bit(&gh->gh_iflags, HIF_WAIT);
  286. }
  287. /**
  288. * do_error - Something unexpected has happened during a lock request
  289. *
  290. */
  291. static inline void do_error(struct gfs2_glock *gl, const int ret)
  292. {
  293. struct gfs2_holder *gh, *tmp;
  294. list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
  295. if (test_bit(HIF_HOLDER, &gh->gh_iflags))
  296. continue;
  297. if (ret & LM_OUT_ERROR)
  298. gh->gh_error = -EIO;
  299. else if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
  300. gh->gh_error = GLR_TRYFAILED;
  301. else
  302. continue;
  303. list_del_init(&gh->gh_list);
  304. trace_gfs2_glock_queue(gh, 0);
  305. gfs2_holder_wake(gh);
  306. }
  307. }
  308. /**
  309. * do_promote - promote as many requests as possible on the current queue
  310. * @gl: The glock
  311. *
  312. * Returns: 1 if there is a blocked holder at the head of the list, or 2
  313. * if a type specific operation is underway.
  314. */
  315. static int do_promote(struct gfs2_glock *gl)
  316. __releases(&gl->gl_spin)
  317. __acquires(&gl->gl_spin)
  318. {
  319. const struct gfs2_glock_operations *glops = gl->gl_ops;
  320. struct gfs2_holder *gh, *tmp;
  321. int ret;
  322. restart:
  323. list_for_each_entry_safe(gh, tmp, &gl->gl_holders, gh_list) {
  324. if (test_bit(HIF_HOLDER, &gh->gh_iflags))
  325. continue;
  326. if (may_grant(gl, gh)) {
  327. if (gh->gh_list.prev == &gl->gl_holders &&
  328. glops->go_lock) {
  329. spin_unlock(&gl->gl_spin);
  330. /* FIXME: eliminate this eventually */
  331. ret = glops->go_lock(gh);
  332. spin_lock(&gl->gl_spin);
  333. if (ret) {
  334. if (ret == 1)
  335. return 2;
  336. gh->gh_error = ret;
  337. list_del_init(&gh->gh_list);
  338. trace_gfs2_glock_queue(gh, 0);
  339. gfs2_holder_wake(gh);
  340. goto restart;
  341. }
  342. set_bit(HIF_HOLDER, &gh->gh_iflags);
  343. trace_gfs2_promote(gh, 1);
  344. gfs2_holder_wake(gh);
  345. goto restart;
  346. }
  347. set_bit(HIF_HOLDER, &gh->gh_iflags);
  348. trace_gfs2_promote(gh, 0);
  349. gfs2_holder_wake(gh);
  350. continue;
  351. }
  352. if (gh->gh_list.prev == &gl->gl_holders)
  353. return 1;
  354. do_error(gl, 0);
  355. break;
  356. }
  357. return 0;
  358. }
  359. /**
  360. * find_first_waiter - find the first gh that's waiting for the glock
  361. * @gl: the glock
  362. */
  363. static inline struct gfs2_holder *find_first_waiter(const struct gfs2_glock *gl)
  364. {
  365. struct gfs2_holder *gh;
  366. list_for_each_entry(gh, &gl->gl_holders, gh_list) {
  367. if (!test_bit(HIF_HOLDER, &gh->gh_iflags))
  368. return gh;
  369. }
  370. return NULL;
  371. }
  372. /**
  373. * state_change - record that the glock is now in a different state
  374. * @gl: the glock
  375. * @new_state the new state
  376. *
  377. */
  378. static void state_change(struct gfs2_glock *gl, unsigned int new_state)
  379. {
  380. int held1, held2;
  381. held1 = (gl->gl_state != LM_ST_UNLOCKED);
  382. held2 = (new_state != LM_ST_UNLOCKED);
  383. if (held1 != held2) {
  384. if (held2)
  385. gfs2_glock_hold(gl);
  386. else
  387. gfs2_glock_put_nolock(gl);
  388. }
  389. if (held1 && held2 && list_empty(&gl->gl_holders))
  390. clear_bit(GLF_QUEUED, &gl->gl_flags);
  391. gl->gl_state = new_state;
  392. gl->gl_tchange = jiffies;
  393. }
  394. static void gfs2_demote_wake(struct gfs2_glock *gl)
  395. {
  396. gl->gl_demote_state = LM_ST_EXCLUSIVE;
  397. clear_bit(GLF_DEMOTE, &gl->gl_flags);
  398. smp_mb__after_clear_bit();
  399. wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
  400. }
  401. /**
  402. * finish_xmote - The DLM has replied to one of our lock requests
  403. * @gl: The glock
  404. * @ret: The status from the DLM
  405. *
  406. */
  407. static void finish_xmote(struct gfs2_glock *gl, unsigned int ret)
  408. {
  409. const struct gfs2_glock_operations *glops = gl->gl_ops;
  410. struct gfs2_holder *gh;
  411. unsigned state = ret & LM_OUT_ST_MASK;
  412. int rv;
  413. spin_lock(&gl->gl_spin);
  414. trace_gfs2_glock_state_change(gl, state);
  415. state_change(gl, state);
  416. gh = find_first_waiter(gl);
  417. /* Demote to UN request arrived during demote to SH or DF */
  418. if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags) &&
  419. state != LM_ST_UNLOCKED && gl->gl_demote_state == LM_ST_UNLOCKED)
  420. gl->gl_target = LM_ST_UNLOCKED;
  421. /* Check for state != intended state */
  422. if (unlikely(state != gl->gl_target)) {
  423. if (gh && !test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags)) {
  424. /* move to back of queue and try next entry */
  425. if (ret & LM_OUT_CANCELED) {
  426. if ((gh->gh_flags & LM_FLAG_PRIORITY) == 0)
  427. list_move_tail(&gh->gh_list, &gl->gl_holders);
  428. gh = find_first_waiter(gl);
  429. gl->gl_target = gh->gh_state;
  430. goto retry;
  431. }
  432. /* Some error or failed "try lock" - report it */
  433. if ((ret & LM_OUT_ERROR) ||
  434. (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))) {
  435. gl->gl_target = gl->gl_state;
  436. do_error(gl, ret);
  437. goto out;
  438. }
  439. }
  440. switch(state) {
  441. /* Unlocked due to conversion deadlock, try again */
  442. case LM_ST_UNLOCKED:
  443. retry:
  444. do_xmote(gl, gh, gl->gl_target);
  445. break;
  446. /* Conversion fails, unlock and try again */
  447. case LM_ST_SHARED:
  448. case LM_ST_DEFERRED:
  449. do_xmote(gl, gh, LM_ST_UNLOCKED);
  450. break;
  451. default: /* Everything else */
  452. printk(KERN_ERR "GFS2: wanted %u got %u\n", gl->gl_target, state);
  453. GLOCK_BUG_ON(gl, 1);
  454. }
  455. spin_unlock(&gl->gl_spin);
  456. return;
  457. }
  458. /* Fast path - we got what we asked for */
  459. if (test_and_clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
  460. gfs2_demote_wake(gl);
  461. if (state != LM_ST_UNLOCKED) {
  462. if (glops->go_xmote_bh) {
  463. spin_unlock(&gl->gl_spin);
  464. rv = glops->go_xmote_bh(gl, gh);
  465. spin_lock(&gl->gl_spin);
  466. if (rv) {
  467. do_error(gl, rv);
  468. goto out;
  469. }
  470. }
  471. rv = do_promote(gl);
  472. if (rv == 2)
  473. goto out_locked;
  474. }
  475. out:
  476. clear_bit(GLF_LOCK, &gl->gl_flags);
  477. out_locked:
  478. spin_unlock(&gl->gl_spin);
  479. }
  480. static unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock,
  481. unsigned int req_state,
  482. unsigned int flags)
  483. {
  484. int ret = LM_OUT_ERROR;
  485. if (!sdp->sd_lockstruct.ls_ops->lm_lock)
  486. return req_state == LM_ST_UNLOCKED ? 0 : req_state;
  487. if (likely(!test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
  488. ret = sdp->sd_lockstruct.ls_ops->lm_lock(lock,
  489. req_state, flags);
  490. return ret;
  491. }
  492. /**
  493. * do_xmote - Calls the DLM to change the state of a lock
  494. * @gl: The lock state
  495. * @gh: The holder (only for promotes)
  496. * @target: The target lock state
  497. *
  498. */
  499. static void do_xmote(struct gfs2_glock *gl, struct gfs2_holder *gh, unsigned int target)
  500. __releases(&gl->gl_spin)
  501. __acquires(&gl->gl_spin)
  502. {
  503. const struct gfs2_glock_operations *glops = gl->gl_ops;
  504. struct gfs2_sbd *sdp = gl->gl_sbd;
  505. unsigned int lck_flags = gh ? gh->gh_flags : 0;
  506. int ret;
  507. lck_flags &= (LM_FLAG_TRY | LM_FLAG_TRY_1CB | LM_FLAG_NOEXP |
  508. LM_FLAG_PRIORITY);
  509. BUG_ON(gl->gl_state == target);
  510. BUG_ON(gl->gl_state == gl->gl_target);
  511. if ((target == LM_ST_UNLOCKED || target == LM_ST_DEFERRED) &&
  512. glops->go_inval) {
  513. set_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
  514. do_error(gl, 0); /* Fail queued try locks */
  515. }
  516. spin_unlock(&gl->gl_spin);
  517. if (glops->go_xmote_th)
  518. glops->go_xmote_th(gl);
  519. if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
  520. glops->go_inval(gl, target == LM_ST_DEFERRED ? 0 : DIO_METADATA);
  521. clear_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags);
  522. gfs2_glock_hold(gl);
  523. if (target != LM_ST_UNLOCKED && (gl->gl_state == LM_ST_SHARED ||
  524. gl->gl_state == LM_ST_DEFERRED) &&
  525. !(lck_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
  526. lck_flags |= LM_FLAG_TRY_1CB;
  527. ret = gfs2_lm_lock(sdp, gl, target, lck_flags);
  528. if (!(ret & LM_OUT_ASYNC)) {
  529. finish_xmote(gl, ret);
  530. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  531. gfs2_glock_put(gl);
  532. } else {
  533. GLOCK_BUG_ON(gl, ret != LM_OUT_ASYNC);
  534. }
  535. spin_lock(&gl->gl_spin);
  536. }
  537. /**
  538. * find_first_holder - find the first "holder" gh
  539. * @gl: the glock
  540. */
  541. static inline struct gfs2_holder *find_first_holder(const struct gfs2_glock *gl)
  542. {
  543. struct gfs2_holder *gh;
  544. if (!list_empty(&gl->gl_holders)) {
  545. gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
  546. if (test_bit(HIF_HOLDER, &gh->gh_iflags))
  547. return gh;
  548. }
  549. return NULL;
  550. }
  551. /**
  552. * run_queue - do all outstanding tasks related to a glock
  553. * @gl: The glock in question
  554. * @nonblock: True if we must not block in run_queue
  555. *
  556. */
  557. static void run_queue(struct gfs2_glock *gl, const int nonblock)
  558. __releases(&gl->gl_spin)
  559. __acquires(&gl->gl_spin)
  560. {
  561. struct gfs2_holder *gh = NULL;
  562. int ret;
  563. if (test_and_set_bit(GLF_LOCK, &gl->gl_flags))
  564. return;
  565. GLOCK_BUG_ON(gl, test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags));
  566. if (test_bit(GLF_DEMOTE, &gl->gl_flags) &&
  567. gl->gl_demote_state != gl->gl_state) {
  568. if (find_first_holder(gl))
  569. goto out_unlock;
  570. if (nonblock)
  571. goto out_sched;
  572. set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
  573. GLOCK_BUG_ON(gl, gl->gl_demote_state == LM_ST_EXCLUSIVE);
  574. gl->gl_target = gl->gl_demote_state;
  575. } else {
  576. if (test_bit(GLF_DEMOTE, &gl->gl_flags))
  577. gfs2_demote_wake(gl);
  578. ret = do_promote(gl);
  579. if (ret == 0)
  580. goto out_unlock;
  581. if (ret == 2)
  582. goto out;
  583. gh = find_first_waiter(gl);
  584. gl->gl_target = gh->gh_state;
  585. if (!(gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)))
  586. do_error(gl, 0); /* Fail queued try locks */
  587. }
  588. do_xmote(gl, gh, gl->gl_target);
  589. out:
  590. return;
  591. out_sched:
  592. clear_bit(GLF_LOCK, &gl->gl_flags);
  593. smp_mb__after_clear_bit();
  594. gfs2_glock_hold(gl);
  595. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  596. gfs2_glock_put_nolock(gl);
  597. return;
  598. out_unlock:
  599. clear_bit(GLF_LOCK, &gl->gl_flags);
  600. smp_mb__after_clear_bit();
  601. return;
  602. }
  603. static void delete_work_func(struct work_struct *work)
  604. {
  605. struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_delete);
  606. struct gfs2_sbd *sdp = gl->gl_sbd;
  607. struct gfs2_inode *ip;
  608. struct inode *inode;
  609. u64 no_addr = gl->gl_name.ln_number;
  610. ip = gl->gl_object;
  611. /* Note: Unsafe to dereference ip as we don't hold right refs/locks */
  612. if (ip)
  613. inode = gfs2_ilookup(sdp->sd_vfs, no_addr);
  614. else
  615. inode = gfs2_lookup_by_inum(sdp, no_addr, NULL, GFS2_BLKST_UNLINKED);
  616. if (inode && !IS_ERR(inode)) {
  617. d_prune_aliases(inode);
  618. iput(inode);
  619. }
  620. gfs2_glock_put(gl);
  621. }
  622. static void glock_work_func(struct work_struct *work)
  623. {
  624. unsigned long delay = 0;
  625. struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
  626. int drop_ref = 0;
  627. if (test_and_clear_bit(GLF_REPLY_PENDING, &gl->gl_flags)) {
  628. finish_xmote(gl, gl->gl_reply);
  629. drop_ref = 1;
  630. }
  631. spin_lock(&gl->gl_spin);
  632. if (test_and_clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
  633. gl->gl_state != LM_ST_UNLOCKED &&
  634. gl->gl_demote_state != LM_ST_EXCLUSIVE) {
  635. unsigned long holdtime, now = jiffies;
  636. holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
  637. if (time_before(now, holdtime))
  638. delay = holdtime - now;
  639. set_bit(delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE, &gl->gl_flags);
  640. }
  641. run_queue(gl, 0);
  642. spin_unlock(&gl->gl_spin);
  643. if (!delay ||
  644. queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
  645. gfs2_glock_put(gl);
  646. if (drop_ref)
  647. gfs2_glock_put(gl);
  648. }
  649. /**
  650. * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
  651. * @sdp: The GFS2 superblock
  652. * @number: the lock number
  653. * @glops: The glock_operations to use
  654. * @create: If 0, don't create the glock if it doesn't exist
  655. * @glp: the glock is returned here
  656. *
  657. * This does not lock a glock, just finds/creates structures for one.
  658. *
  659. * Returns: errno
  660. */
  661. int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
  662. const struct gfs2_glock_operations *glops, int create,
  663. struct gfs2_glock **glp)
  664. {
  665. struct super_block *s = sdp->sd_vfs;
  666. struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
  667. struct gfs2_glock *gl, *tmp;
  668. unsigned int hash = gl_hash(sdp, &name);
  669. struct address_space *mapping;
  670. read_lock(gl_lock_addr(hash));
  671. gl = search_bucket(hash, sdp, &name);
  672. read_unlock(gl_lock_addr(hash));
  673. *glp = gl;
  674. if (gl)
  675. return 0;
  676. if (!create)
  677. return -ENOENT;
  678. if (glops->go_flags & GLOF_ASPACE)
  679. gl = kmem_cache_alloc(gfs2_glock_aspace_cachep, GFP_KERNEL);
  680. else
  681. gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
  682. if (!gl)
  683. return -ENOMEM;
  684. atomic_inc(&sdp->sd_glock_disposal);
  685. gl->gl_flags = 0;
  686. gl->gl_name = name;
  687. atomic_set(&gl->gl_ref, 1);
  688. gl->gl_state = LM_ST_UNLOCKED;
  689. gl->gl_target = LM_ST_UNLOCKED;
  690. gl->gl_demote_state = LM_ST_EXCLUSIVE;
  691. gl->gl_hash = hash;
  692. gl->gl_ops = glops;
  693. snprintf(gl->gl_strname, GDLM_STRNAME_BYTES, "%8x%16llx", name.ln_type, (unsigned long long)number);
  694. memset(&gl->gl_lksb, 0, sizeof(struct dlm_lksb));
  695. gl->gl_lksb.sb_lvbptr = gl->gl_lvb;
  696. gl->gl_tchange = jiffies;
  697. gl->gl_object = NULL;
  698. gl->gl_sbd = sdp;
  699. INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
  700. INIT_WORK(&gl->gl_delete, delete_work_func);
  701. mapping = gfs2_glock2aspace(gl);
  702. if (mapping) {
  703. mapping->a_ops = &gfs2_meta_aops;
  704. mapping->host = s->s_bdev->bd_inode;
  705. mapping->flags = 0;
  706. mapping_set_gfp_mask(mapping, GFP_NOFS);
  707. mapping->assoc_mapping = NULL;
  708. mapping->backing_dev_info = s->s_bdi;
  709. mapping->writeback_index = 0;
  710. }
  711. write_lock(gl_lock_addr(hash));
  712. tmp = search_bucket(hash, sdp, &name);
  713. if (tmp) {
  714. write_unlock(gl_lock_addr(hash));
  715. glock_free(gl);
  716. gl = tmp;
  717. } else {
  718. hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
  719. write_unlock(gl_lock_addr(hash));
  720. }
  721. *glp = gl;
  722. return 0;
  723. }
  724. /**
  725. * gfs2_holder_init - initialize a struct gfs2_holder in the default way
  726. * @gl: the glock
  727. * @state: the state we're requesting
  728. * @flags: the modifier flags
  729. * @gh: the holder structure
  730. *
  731. */
  732. void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
  733. struct gfs2_holder *gh)
  734. {
  735. INIT_LIST_HEAD(&gh->gh_list);
  736. gh->gh_gl = gl;
  737. gh->gh_ip = (unsigned long)__builtin_return_address(0);
  738. gh->gh_owner_pid = get_pid(task_pid(current));
  739. gh->gh_state = state;
  740. gh->gh_flags = flags;
  741. gh->gh_error = 0;
  742. gh->gh_iflags = 0;
  743. gfs2_glock_hold(gl);
  744. }
  745. /**
  746. * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
  747. * @state: the state we're requesting
  748. * @flags: the modifier flags
  749. * @gh: the holder structure
  750. *
  751. * Don't mess with the glock.
  752. *
  753. */
  754. void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
  755. {
  756. gh->gh_state = state;
  757. gh->gh_flags = flags;
  758. gh->gh_iflags = 0;
  759. gh->gh_ip = (unsigned long)__builtin_return_address(0);
  760. if (gh->gh_owner_pid)
  761. put_pid(gh->gh_owner_pid);
  762. gh->gh_owner_pid = get_pid(task_pid(current));
  763. }
  764. /**
  765. * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
  766. * @gh: the holder structure
  767. *
  768. */
  769. void gfs2_holder_uninit(struct gfs2_holder *gh)
  770. {
  771. put_pid(gh->gh_owner_pid);
  772. gfs2_glock_put(gh->gh_gl);
  773. gh->gh_gl = NULL;
  774. gh->gh_ip = 0;
  775. }
  776. /**
  777. * gfs2_glock_holder_wait
  778. * @word: unused
  779. *
  780. * This function and gfs2_glock_demote_wait both show up in the WCHAN
  781. * field. Thus I've separated these otherwise identical functions in
  782. * order to be more informative to the user.
  783. */
  784. static int gfs2_glock_holder_wait(void *word)
  785. {
  786. schedule();
  787. return 0;
  788. }
  789. static int gfs2_glock_demote_wait(void *word)
  790. {
  791. schedule();
  792. return 0;
  793. }
  794. static void wait_on_holder(struct gfs2_holder *gh)
  795. {
  796. might_sleep();
  797. wait_on_bit(&gh->gh_iflags, HIF_WAIT, gfs2_glock_holder_wait, TASK_UNINTERRUPTIBLE);
  798. }
  799. static void wait_on_demote(struct gfs2_glock *gl)
  800. {
  801. might_sleep();
  802. wait_on_bit(&gl->gl_flags, GLF_DEMOTE, gfs2_glock_demote_wait, TASK_UNINTERRUPTIBLE);
  803. }
  804. /**
  805. * handle_callback - process a demote request
  806. * @gl: the glock
  807. * @state: the state the caller wants us to change to
  808. *
  809. * There are only two requests that we are going to see in actual
  810. * practise: LM_ST_SHARED and LM_ST_UNLOCKED
  811. */
  812. static void handle_callback(struct gfs2_glock *gl, unsigned int state,
  813. unsigned long delay)
  814. {
  815. int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
  816. set_bit(bit, &gl->gl_flags);
  817. if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
  818. gl->gl_demote_state = state;
  819. gl->gl_demote_time = jiffies;
  820. } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
  821. gl->gl_demote_state != state) {
  822. gl->gl_demote_state = LM_ST_UNLOCKED;
  823. }
  824. if (gl->gl_ops->go_callback)
  825. gl->gl_ops->go_callback(gl);
  826. trace_gfs2_demote_rq(gl);
  827. }
  828. /**
  829. * gfs2_glock_wait - wait on a glock acquisition
  830. * @gh: the glock holder
  831. *
  832. * Returns: 0 on success
  833. */
  834. int gfs2_glock_wait(struct gfs2_holder *gh)
  835. {
  836. wait_on_holder(gh);
  837. return gh->gh_error;
  838. }
  839. void gfs2_print_dbg(struct seq_file *seq, const char *fmt, ...)
  840. {
  841. va_list args;
  842. va_start(args, fmt);
  843. if (seq) {
  844. struct gfs2_glock_iter *gi = seq->private;
  845. vsprintf(gi->string, fmt, args);
  846. seq_printf(seq, gi->string);
  847. } else {
  848. printk(KERN_ERR " ");
  849. vprintk(fmt, args);
  850. }
  851. va_end(args);
  852. }
  853. /**
  854. * add_to_queue - Add a holder to the wait queue (but look for recursion)
  855. * @gh: the holder structure to add
  856. *
  857. * Eventually we should move the recursive locking trap to a
  858. * debugging option or something like that. This is the fast
  859. * path and needs to have the minimum number of distractions.
  860. *
  861. */
  862. static inline void add_to_queue(struct gfs2_holder *gh)
  863. __releases(&gl->gl_spin)
  864. __acquires(&gl->gl_spin)
  865. {
  866. struct gfs2_glock *gl = gh->gh_gl;
  867. struct gfs2_sbd *sdp = gl->gl_sbd;
  868. struct list_head *insert_pt = NULL;
  869. struct gfs2_holder *gh2;
  870. int try_lock = 0;
  871. BUG_ON(gh->gh_owner_pid == NULL);
  872. if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
  873. BUG();
  874. if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
  875. if (test_bit(GLF_LOCK, &gl->gl_flags))
  876. try_lock = 1;
  877. if (test_bit(GLF_INVALIDATE_IN_PROGRESS, &gl->gl_flags))
  878. goto fail;
  879. }
  880. list_for_each_entry(gh2, &gl->gl_holders, gh_list) {
  881. if (unlikely(gh2->gh_owner_pid == gh->gh_owner_pid &&
  882. (gh->gh_gl->gl_ops->go_type != LM_TYPE_FLOCK)))
  883. goto trap_recursive;
  884. if (try_lock &&
  885. !(gh2->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) &&
  886. !may_grant(gl, gh)) {
  887. fail:
  888. gh->gh_error = GLR_TRYFAILED;
  889. gfs2_holder_wake(gh);
  890. return;
  891. }
  892. if (test_bit(HIF_HOLDER, &gh2->gh_iflags))
  893. continue;
  894. if (unlikely((gh->gh_flags & LM_FLAG_PRIORITY) && !insert_pt))
  895. insert_pt = &gh2->gh_list;
  896. }
  897. set_bit(GLF_QUEUED, &gl->gl_flags);
  898. if (likely(insert_pt == NULL)) {
  899. list_add_tail(&gh->gh_list, &gl->gl_holders);
  900. if (unlikely(gh->gh_flags & LM_FLAG_PRIORITY))
  901. goto do_cancel;
  902. return;
  903. }
  904. trace_gfs2_glock_queue(gh, 1);
  905. list_add_tail(&gh->gh_list, insert_pt);
  906. do_cancel:
  907. gh = list_entry(gl->gl_holders.next, struct gfs2_holder, gh_list);
  908. if (!(gh->gh_flags & LM_FLAG_PRIORITY)) {
  909. spin_unlock(&gl->gl_spin);
  910. if (sdp->sd_lockstruct.ls_ops->lm_cancel)
  911. sdp->sd_lockstruct.ls_ops->lm_cancel(gl);
  912. spin_lock(&gl->gl_spin);
  913. }
  914. return;
  915. trap_recursive:
  916. print_symbol(KERN_ERR "original: %s\n", gh2->gh_ip);
  917. printk(KERN_ERR "pid: %d\n", pid_nr(gh2->gh_owner_pid));
  918. printk(KERN_ERR "lock type: %d req lock state : %d\n",
  919. gh2->gh_gl->gl_name.ln_type, gh2->gh_state);
  920. print_symbol(KERN_ERR "new: %s\n", gh->gh_ip);
  921. printk(KERN_ERR "pid: %d\n", pid_nr(gh->gh_owner_pid));
  922. printk(KERN_ERR "lock type: %d req lock state : %d\n",
  923. gh->gh_gl->gl_name.ln_type, gh->gh_state);
  924. __dump_glock(NULL, gl);
  925. BUG();
  926. }
  927. /**
  928. * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
  929. * @gh: the holder structure
  930. *
  931. * if (gh->gh_flags & GL_ASYNC), this never returns an error
  932. *
  933. * Returns: 0, GLR_TRYFAILED, or errno on failure
  934. */
  935. int gfs2_glock_nq(struct gfs2_holder *gh)
  936. {
  937. struct gfs2_glock *gl = gh->gh_gl;
  938. struct gfs2_sbd *sdp = gl->gl_sbd;
  939. int error = 0;
  940. if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
  941. return -EIO;
  942. spin_lock(&gl->gl_spin);
  943. add_to_queue(gh);
  944. if ((LM_FLAG_NOEXP & gh->gh_flags) &&
  945. test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
  946. set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
  947. run_queue(gl, 1);
  948. spin_unlock(&gl->gl_spin);
  949. if (!(gh->gh_flags & GL_ASYNC))
  950. error = gfs2_glock_wait(gh);
  951. return error;
  952. }
  953. /**
  954. * gfs2_glock_poll - poll to see if an async request has been completed
  955. * @gh: the holder
  956. *
  957. * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
  958. */
  959. int gfs2_glock_poll(struct gfs2_holder *gh)
  960. {
  961. return test_bit(HIF_WAIT, &gh->gh_iflags) ? 0 : 1;
  962. }
  963. /**
  964. * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
  965. * @gh: the glock holder
  966. *
  967. */
  968. void gfs2_glock_dq(struct gfs2_holder *gh)
  969. {
  970. struct gfs2_glock *gl = gh->gh_gl;
  971. const struct gfs2_glock_operations *glops = gl->gl_ops;
  972. unsigned delay = 0;
  973. int fast_path = 0;
  974. spin_lock(&gl->gl_spin);
  975. if (gh->gh_flags & GL_NOCACHE)
  976. handle_callback(gl, LM_ST_UNLOCKED, 0);
  977. list_del_init(&gh->gh_list);
  978. if (find_first_holder(gl) == NULL) {
  979. if (glops->go_unlock) {
  980. GLOCK_BUG_ON(gl, test_and_set_bit(GLF_LOCK, &gl->gl_flags));
  981. spin_unlock(&gl->gl_spin);
  982. glops->go_unlock(gh);
  983. spin_lock(&gl->gl_spin);
  984. clear_bit(GLF_LOCK, &gl->gl_flags);
  985. }
  986. if (list_empty(&gl->gl_holders) &&
  987. !test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
  988. !test_bit(GLF_DEMOTE, &gl->gl_flags))
  989. fast_path = 1;
  990. }
  991. trace_gfs2_glock_queue(gh, 0);
  992. spin_unlock(&gl->gl_spin);
  993. if (likely(fast_path))
  994. return;
  995. gfs2_glock_hold(gl);
  996. if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
  997. !test_bit(GLF_DEMOTE, &gl->gl_flags))
  998. delay = gl->gl_ops->go_min_hold_time;
  999. if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
  1000. gfs2_glock_put(gl);
  1001. }
  1002. void gfs2_glock_dq_wait(struct gfs2_holder *gh)
  1003. {
  1004. struct gfs2_glock *gl = gh->gh_gl;
  1005. gfs2_glock_dq(gh);
  1006. wait_on_demote(gl);
  1007. }
  1008. /**
  1009. * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
  1010. * @gh: the holder structure
  1011. *
  1012. */
  1013. void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
  1014. {
  1015. gfs2_glock_dq(gh);
  1016. gfs2_holder_uninit(gh);
  1017. }
  1018. /**
  1019. * gfs2_glock_nq_num - acquire a glock based on lock number
  1020. * @sdp: the filesystem
  1021. * @number: the lock number
  1022. * @glops: the glock operations for the type of glock
  1023. * @state: the state to acquire the glock in
  1024. * @flags: modifier flags for the aquisition
  1025. * @gh: the struct gfs2_holder
  1026. *
  1027. * Returns: errno
  1028. */
  1029. int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
  1030. const struct gfs2_glock_operations *glops,
  1031. unsigned int state, int flags, struct gfs2_holder *gh)
  1032. {
  1033. struct gfs2_glock *gl;
  1034. int error;
  1035. error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
  1036. if (!error) {
  1037. error = gfs2_glock_nq_init(gl, state, flags, gh);
  1038. gfs2_glock_put(gl);
  1039. }
  1040. return error;
  1041. }
  1042. /**
  1043. * glock_compare - Compare two struct gfs2_glock structures for sorting
  1044. * @arg_a: the first structure
  1045. * @arg_b: the second structure
  1046. *
  1047. */
  1048. static int glock_compare(const void *arg_a, const void *arg_b)
  1049. {
  1050. const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
  1051. const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
  1052. const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
  1053. const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
  1054. if (a->ln_number > b->ln_number)
  1055. return 1;
  1056. if (a->ln_number < b->ln_number)
  1057. return -1;
  1058. BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
  1059. return 0;
  1060. }
  1061. /**
  1062. * nq_m_sync - synchonously acquire more than one glock in deadlock free order
  1063. * @num_gh: the number of structures
  1064. * @ghs: an array of struct gfs2_holder structures
  1065. *
  1066. * Returns: 0 on success (all glocks acquired),
  1067. * errno on failure (no glocks acquired)
  1068. */
  1069. static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
  1070. struct gfs2_holder **p)
  1071. {
  1072. unsigned int x;
  1073. int error = 0;
  1074. for (x = 0; x < num_gh; x++)
  1075. p[x] = &ghs[x];
  1076. sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
  1077. for (x = 0; x < num_gh; x++) {
  1078. p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
  1079. error = gfs2_glock_nq(p[x]);
  1080. if (error) {
  1081. while (x--)
  1082. gfs2_glock_dq(p[x]);
  1083. break;
  1084. }
  1085. }
  1086. return error;
  1087. }
  1088. /**
  1089. * gfs2_glock_nq_m - acquire multiple glocks
  1090. * @num_gh: the number of structures
  1091. * @ghs: an array of struct gfs2_holder structures
  1092. *
  1093. *
  1094. * Returns: 0 on success (all glocks acquired),
  1095. * errno on failure (no glocks acquired)
  1096. */
  1097. int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1098. {
  1099. struct gfs2_holder *tmp[4];
  1100. struct gfs2_holder **pph = tmp;
  1101. int error = 0;
  1102. switch(num_gh) {
  1103. case 0:
  1104. return 0;
  1105. case 1:
  1106. ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
  1107. return gfs2_glock_nq(ghs);
  1108. default:
  1109. if (num_gh <= 4)
  1110. break;
  1111. pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
  1112. if (!pph)
  1113. return -ENOMEM;
  1114. }
  1115. error = nq_m_sync(num_gh, ghs, pph);
  1116. if (pph != tmp)
  1117. kfree(pph);
  1118. return error;
  1119. }
  1120. /**
  1121. * gfs2_glock_dq_m - release multiple glocks
  1122. * @num_gh: the number of structures
  1123. * @ghs: an array of struct gfs2_holder structures
  1124. *
  1125. */
  1126. void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1127. {
  1128. unsigned int x;
  1129. for (x = 0; x < num_gh; x++)
  1130. gfs2_glock_dq(&ghs[x]);
  1131. }
  1132. /**
  1133. * gfs2_glock_dq_uninit_m - release multiple glocks
  1134. * @num_gh: the number of structures
  1135. * @ghs: an array of struct gfs2_holder structures
  1136. *
  1137. */
  1138. void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1139. {
  1140. unsigned int x;
  1141. for (x = 0; x < num_gh; x++)
  1142. gfs2_glock_dq_uninit(&ghs[x]);
  1143. }
  1144. void gfs2_glock_cb(struct gfs2_glock *gl, unsigned int state)
  1145. {
  1146. unsigned long delay = 0;
  1147. unsigned long holdtime;
  1148. unsigned long now = jiffies;
  1149. gfs2_glock_hold(gl);
  1150. holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
  1151. if (test_bit(GLF_QUEUED, &gl->gl_flags)) {
  1152. if (time_before(now, holdtime))
  1153. delay = holdtime - now;
  1154. if (test_bit(GLF_REPLY_PENDING, &gl->gl_flags))
  1155. delay = gl->gl_ops->go_min_hold_time;
  1156. }
  1157. spin_lock(&gl->gl_spin);
  1158. handle_callback(gl, state, delay);
  1159. spin_unlock(&gl->gl_spin);
  1160. if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
  1161. gfs2_glock_put(gl);
  1162. }
  1163. /**
  1164. * gfs2_should_freeze - Figure out if glock should be frozen
  1165. * @gl: The glock in question
  1166. *
  1167. * Glocks are not frozen if (a) the result of the dlm operation is
  1168. * an error, (b) the locking operation was an unlock operation or
  1169. * (c) if there is a "noexp" flagged request anywhere in the queue
  1170. *
  1171. * Returns: 1 if freezing should occur, 0 otherwise
  1172. */
  1173. static int gfs2_should_freeze(const struct gfs2_glock *gl)
  1174. {
  1175. const struct gfs2_holder *gh;
  1176. if (gl->gl_reply & ~LM_OUT_ST_MASK)
  1177. return 0;
  1178. if (gl->gl_target == LM_ST_UNLOCKED)
  1179. return 0;
  1180. list_for_each_entry(gh, &gl->gl_holders, gh_list) {
  1181. if (test_bit(HIF_HOLDER, &gh->gh_iflags))
  1182. continue;
  1183. if (LM_FLAG_NOEXP & gh->gh_flags)
  1184. return 0;
  1185. }
  1186. return 1;
  1187. }
  1188. /**
  1189. * gfs2_glock_complete - Callback used by locking
  1190. * @gl: Pointer to the glock
  1191. * @ret: The return value from the dlm
  1192. *
  1193. */
  1194. void gfs2_glock_complete(struct gfs2_glock *gl, int ret)
  1195. {
  1196. struct lm_lockstruct *ls = &gl->gl_sbd->sd_lockstruct;
  1197. gl->gl_reply = ret;
  1198. if (unlikely(test_bit(DFL_BLOCK_LOCKS, &ls->ls_flags))) {
  1199. spin_lock(&gl->gl_spin);
  1200. if (gfs2_should_freeze(gl)) {
  1201. set_bit(GLF_FROZEN, &gl->gl_flags);
  1202. spin_unlock(&gl->gl_spin);
  1203. return;
  1204. }
  1205. spin_unlock(&gl->gl_spin);
  1206. }
  1207. set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
  1208. gfs2_glock_hold(gl);
  1209. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  1210. gfs2_glock_put(gl);
  1211. }
  1212. static int gfs2_shrink_glock_memory(struct shrinker *shrink, int nr, gfp_t gfp_mask)
  1213. {
  1214. struct gfs2_glock *gl;
  1215. int may_demote;
  1216. int nr_skipped = 0;
  1217. LIST_HEAD(skipped);
  1218. if (nr == 0)
  1219. goto out;
  1220. if (!(gfp_mask & __GFP_FS))
  1221. return -1;
  1222. spin_lock(&lru_lock);
  1223. while(nr && !list_empty(&lru_list)) {
  1224. gl = list_entry(lru_list.next, struct gfs2_glock, gl_lru);
  1225. list_del_init(&gl->gl_lru);
  1226. atomic_dec(&lru_count);
  1227. /* Test for being demotable */
  1228. if (!test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
  1229. gfs2_glock_hold(gl);
  1230. spin_unlock(&lru_lock);
  1231. spin_lock(&gl->gl_spin);
  1232. may_demote = demote_ok(gl);
  1233. if (may_demote) {
  1234. handle_callback(gl, LM_ST_UNLOCKED, 0);
  1235. nr--;
  1236. }
  1237. clear_bit(GLF_LOCK, &gl->gl_flags);
  1238. smp_mb__after_clear_bit();
  1239. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  1240. gfs2_glock_put_nolock(gl);
  1241. spin_unlock(&gl->gl_spin);
  1242. spin_lock(&lru_lock);
  1243. continue;
  1244. }
  1245. nr_skipped++;
  1246. list_add(&gl->gl_lru, &skipped);
  1247. }
  1248. list_splice(&skipped, &lru_list);
  1249. atomic_add(nr_skipped, &lru_count);
  1250. spin_unlock(&lru_lock);
  1251. out:
  1252. return (atomic_read(&lru_count) / 100) * sysctl_vfs_cache_pressure;
  1253. }
  1254. static struct shrinker glock_shrinker = {
  1255. .shrink = gfs2_shrink_glock_memory,
  1256. .seeks = DEFAULT_SEEKS,
  1257. };
  1258. /**
  1259. * examine_bucket - Call a function for glock in a hash bucket
  1260. * @examiner: the function
  1261. * @sdp: the filesystem
  1262. * @bucket: the bucket
  1263. *
  1264. * Returns: 1 if the bucket has entries
  1265. */
  1266. static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
  1267. unsigned int hash)
  1268. {
  1269. struct gfs2_glock *gl, *prev = NULL;
  1270. int has_entries = 0;
  1271. struct hlist_head *head = &gl_hash_table[hash].hb_list;
  1272. read_lock(gl_lock_addr(hash));
  1273. /* Can't use hlist_for_each_entry - don't want prefetch here */
  1274. if (hlist_empty(head))
  1275. goto out;
  1276. gl = list_entry(head->first, struct gfs2_glock, gl_list);
  1277. while(1) {
  1278. if (!sdp || gl->gl_sbd == sdp) {
  1279. gfs2_glock_hold(gl);
  1280. read_unlock(gl_lock_addr(hash));
  1281. if (prev)
  1282. gfs2_glock_put(prev);
  1283. prev = gl;
  1284. examiner(gl);
  1285. has_entries = 1;
  1286. read_lock(gl_lock_addr(hash));
  1287. }
  1288. if (gl->gl_list.next == NULL)
  1289. break;
  1290. gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
  1291. }
  1292. out:
  1293. read_unlock(gl_lock_addr(hash));
  1294. if (prev)
  1295. gfs2_glock_put(prev);
  1296. cond_resched();
  1297. return has_entries;
  1298. }
  1299. /**
  1300. * thaw_glock - thaw out a glock which has an unprocessed reply waiting
  1301. * @gl: The glock to thaw
  1302. *
  1303. * N.B. When we freeze a glock, we leave a ref to the glock outstanding,
  1304. * so this has to result in the ref count being dropped by one.
  1305. */
  1306. static void thaw_glock(struct gfs2_glock *gl)
  1307. {
  1308. if (!test_and_clear_bit(GLF_FROZEN, &gl->gl_flags))
  1309. return;
  1310. set_bit(GLF_REPLY_PENDING, &gl->gl_flags);
  1311. gfs2_glock_hold(gl);
  1312. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  1313. gfs2_glock_put(gl);
  1314. }
  1315. /**
  1316. * clear_glock - look at a glock and see if we can free it from glock cache
  1317. * @gl: the glock to look at
  1318. *
  1319. */
  1320. static void clear_glock(struct gfs2_glock *gl)
  1321. {
  1322. spin_lock(&lru_lock);
  1323. if (!list_empty(&gl->gl_lru)) {
  1324. list_del_init(&gl->gl_lru);
  1325. atomic_dec(&lru_count);
  1326. }
  1327. spin_unlock(&lru_lock);
  1328. spin_lock(&gl->gl_spin);
  1329. if (gl->gl_state != LM_ST_UNLOCKED)
  1330. handle_callback(gl, LM_ST_UNLOCKED, 0);
  1331. spin_unlock(&gl->gl_spin);
  1332. gfs2_glock_hold(gl);
  1333. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  1334. gfs2_glock_put(gl);
  1335. }
  1336. /**
  1337. * gfs2_glock_thaw - Thaw any frozen glocks
  1338. * @sdp: The super block
  1339. *
  1340. */
  1341. void gfs2_glock_thaw(struct gfs2_sbd *sdp)
  1342. {
  1343. unsigned x;
  1344. for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
  1345. examine_bucket(thaw_glock, sdp, x);
  1346. }
  1347. /**
  1348. * gfs2_gl_hash_clear - Empty out the glock hash table
  1349. * @sdp: the filesystem
  1350. * @wait: wait until it's all gone
  1351. *
  1352. * Called when unmounting the filesystem.
  1353. */
  1354. void gfs2_gl_hash_clear(struct gfs2_sbd *sdp)
  1355. {
  1356. unsigned int x;
  1357. for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
  1358. examine_bucket(clear_glock, sdp, x);
  1359. flush_workqueue(glock_workqueue);
  1360. wait_event(sdp->sd_glock_wait, atomic_read(&sdp->sd_glock_disposal) == 0);
  1361. gfs2_dump_lockstate(sdp);
  1362. }
  1363. void gfs2_glock_finish_truncate(struct gfs2_inode *ip)
  1364. {
  1365. struct gfs2_glock *gl = ip->i_gl;
  1366. int ret;
  1367. ret = gfs2_truncatei_resume(ip);
  1368. gfs2_assert_withdraw(gl->gl_sbd, ret == 0);
  1369. spin_lock(&gl->gl_spin);
  1370. clear_bit(GLF_LOCK, &gl->gl_flags);
  1371. run_queue(gl, 1);
  1372. spin_unlock(&gl->gl_spin);
  1373. }
  1374. static const char *state2str(unsigned state)
  1375. {
  1376. switch(state) {
  1377. case LM_ST_UNLOCKED:
  1378. return "UN";
  1379. case LM_ST_SHARED:
  1380. return "SH";
  1381. case LM_ST_DEFERRED:
  1382. return "DF";
  1383. case LM_ST_EXCLUSIVE:
  1384. return "EX";
  1385. }
  1386. return "??";
  1387. }
  1388. static const char *hflags2str(char *buf, unsigned flags, unsigned long iflags)
  1389. {
  1390. char *p = buf;
  1391. if (flags & LM_FLAG_TRY)
  1392. *p++ = 't';
  1393. if (flags & LM_FLAG_TRY_1CB)
  1394. *p++ = 'T';
  1395. if (flags & LM_FLAG_NOEXP)
  1396. *p++ = 'e';
  1397. if (flags & LM_FLAG_ANY)
  1398. *p++ = 'A';
  1399. if (flags & LM_FLAG_PRIORITY)
  1400. *p++ = 'p';
  1401. if (flags & GL_ASYNC)
  1402. *p++ = 'a';
  1403. if (flags & GL_EXACT)
  1404. *p++ = 'E';
  1405. if (flags & GL_NOCACHE)
  1406. *p++ = 'c';
  1407. if (test_bit(HIF_HOLDER, &iflags))
  1408. *p++ = 'H';
  1409. if (test_bit(HIF_WAIT, &iflags))
  1410. *p++ = 'W';
  1411. if (test_bit(HIF_FIRST, &iflags))
  1412. *p++ = 'F';
  1413. *p = 0;
  1414. return buf;
  1415. }
  1416. /**
  1417. * dump_holder - print information about a glock holder
  1418. * @seq: the seq_file struct
  1419. * @gh: the glock holder
  1420. *
  1421. * Returns: 0 on success, -ENOBUFS when we run out of space
  1422. */
  1423. static int dump_holder(struct seq_file *seq, const struct gfs2_holder *gh)
  1424. {
  1425. struct task_struct *gh_owner = NULL;
  1426. char buffer[KSYM_SYMBOL_LEN];
  1427. char flags_buf[32];
  1428. sprint_symbol(buffer, gh->gh_ip);
  1429. if (gh->gh_owner_pid)
  1430. gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
  1431. gfs2_print_dbg(seq, " H: s:%s f:%s e:%d p:%ld [%s] %s\n",
  1432. state2str(gh->gh_state),
  1433. hflags2str(flags_buf, gh->gh_flags, gh->gh_iflags),
  1434. gh->gh_error,
  1435. gh->gh_owner_pid ? (long)pid_nr(gh->gh_owner_pid) : -1,
  1436. gh_owner ? gh_owner->comm : "(ended)", buffer);
  1437. return 0;
  1438. }
  1439. static const char *gflags2str(char *buf, const unsigned long *gflags)
  1440. {
  1441. char *p = buf;
  1442. if (test_bit(GLF_LOCK, gflags))
  1443. *p++ = 'l';
  1444. if (test_bit(GLF_DEMOTE, gflags))
  1445. *p++ = 'D';
  1446. if (test_bit(GLF_PENDING_DEMOTE, gflags))
  1447. *p++ = 'd';
  1448. if (test_bit(GLF_DEMOTE_IN_PROGRESS, gflags))
  1449. *p++ = 'p';
  1450. if (test_bit(GLF_DIRTY, gflags))
  1451. *p++ = 'y';
  1452. if (test_bit(GLF_LFLUSH, gflags))
  1453. *p++ = 'f';
  1454. if (test_bit(GLF_INVALIDATE_IN_PROGRESS, gflags))
  1455. *p++ = 'i';
  1456. if (test_bit(GLF_REPLY_PENDING, gflags))
  1457. *p++ = 'r';
  1458. if (test_bit(GLF_INITIAL, gflags))
  1459. *p++ = 'I';
  1460. if (test_bit(GLF_FROZEN, gflags))
  1461. *p++ = 'F';
  1462. if (test_bit(GLF_QUEUED, gflags))
  1463. *p++ = 'q';
  1464. *p = 0;
  1465. return buf;
  1466. }
  1467. /**
  1468. * __dump_glock - print information about a glock
  1469. * @seq: The seq_file struct
  1470. * @gl: the glock
  1471. *
  1472. * The file format is as follows:
  1473. * One line per object, capital letters are used to indicate objects
  1474. * G = glock, I = Inode, R = rgrp, H = holder. Glocks are not indented,
  1475. * other objects are indented by a single space and follow the glock to
  1476. * which they are related. Fields are indicated by lower case letters
  1477. * followed by a colon and the field value, except for strings which are in
  1478. * [] so that its possible to see if they are composed of spaces for
  1479. * example. The field's are n = number (id of the object), f = flags,
  1480. * t = type, s = state, r = refcount, e = error, p = pid.
  1481. *
  1482. * Returns: 0 on success, -ENOBUFS when we run out of space
  1483. */
  1484. static int __dump_glock(struct seq_file *seq, const struct gfs2_glock *gl)
  1485. {
  1486. const struct gfs2_glock_operations *glops = gl->gl_ops;
  1487. unsigned long long dtime;
  1488. const struct gfs2_holder *gh;
  1489. char gflags_buf[32];
  1490. int error = 0;
  1491. dtime = jiffies - gl->gl_demote_time;
  1492. dtime *= 1000000/HZ; /* demote time in uSec */
  1493. if (!test_bit(GLF_DEMOTE, &gl->gl_flags))
  1494. dtime = 0;
  1495. gfs2_print_dbg(seq, "G: s:%s n:%u/%llx f:%s t:%s d:%s/%llu a:%d r:%d\n",
  1496. state2str(gl->gl_state),
  1497. gl->gl_name.ln_type,
  1498. (unsigned long long)gl->gl_name.ln_number,
  1499. gflags2str(gflags_buf, &gl->gl_flags),
  1500. state2str(gl->gl_target),
  1501. state2str(gl->gl_demote_state), dtime,
  1502. atomic_read(&gl->gl_ail_count),
  1503. atomic_read(&gl->gl_ref));
  1504. list_for_each_entry(gh, &gl->gl_holders, gh_list) {
  1505. error = dump_holder(seq, gh);
  1506. if (error)
  1507. goto out;
  1508. }
  1509. if (gl->gl_state != LM_ST_UNLOCKED && glops->go_dump)
  1510. error = glops->go_dump(seq, gl);
  1511. out:
  1512. return error;
  1513. }
  1514. static int dump_glock(struct seq_file *seq, struct gfs2_glock *gl)
  1515. {
  1516. int ret;
  1517. spin_lock(&gl->gl_spin);
  1518. ret = __dump_glock(seq, gl);
  1519. spin_unlock(&gl->gl_spin);
  1520. return ret;
  1521. }
  1522. /**
  1523. * gfs2_dump_lockstate - print out the current lockstate
  1524. * @sdp: the filesystem
  1525. * @ub: the buffer to copy the information into
  1526. *
  1527. * If @ub is NULL, dump the lockstate to the console.
  1528. *
  1529. */
  1530. static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
  1531. {
  1532. struct gfs2_glock *gl;
  1533. struct hlist_node *h;
  1534. unsigned int x;
  1535. int error = 0;
  1536. for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
  1537. read_lock(gl_lock_addr(x));
  1538. hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
  1539. if (gl->gl_sbd != sdp)
  1540. continue;
  1541. error = dump_glock(NULL, gl);
  1542. if (error)
  1543. break;
  1544. }
  1545. read_unlock(gl_lock_addr(x));
  1546. if (error)
  1547. break;
  1548. }
  1549. return error;
  1550. }
  1551. int __init gfs2_glock_init(void)
  1552. {
  1553. unsigned i;
  1554. for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
  1555. INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
  1556. }
  1557. #ifdef GL_HASH_LOCK_SZ
  1558. for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
  1559. rwlock_init(&gl_hash_locks[i]);
  1560. }
  1561. #endif
  1562. glock_workqueue = alloc_workqueue("glock_workqueue", WQ_RESCUER |
  1563. WQ_HIGHPRI | WQ_FREEZEABLE, 0);
  1564. if (IS_ERR(glock_workqueue))
  1565. return PTR_ERR(glock_workqueue);
  1566. gfs2_delete_workqueue = alloc_workqueue("delete_workqueue", WQ_RESCUER |
  1567. WQ_FREEZEABLE, 0);
  1568. if (IS_ERR(gfs2_delete_workqueue)) {
  1569. destroy_workqueue(glock_workqueue);
  1570. return PTR_ERR(gfs2_delete_workqueue);
  1571. }
  1572. register_shrinker(&glock_shrinker);
  1573. return 0;
  1574. }
  1575. void gfs2_glock_exit(void)
  1576. {
  1577. unregister_shrinker(&glock_shrinker);
  1578. destroy_workqueue(glock_workqueue);
  1579. destroy_workqueue(gfs2_delete_workqueue);
  1580. }
  1581. static int gfs2_glock_iter_next(struct gfs2_glock_iter *gi)
  1582. {
  1583. struct gfs2_glock *gl;
  1584. restart:
  1585. read_lock(gl_lock_addr(gi->hash));
  1586. gl = gi->gl;
  1587. if (gl) {
  1588. gi->gl = hlist_entry(gl->gl_list.next,
  1589. struct gfs2_glock, gl_list);
  1590. } else {
  1591. gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
  1592. struct gfs2_glock, gl_list);
  1593. }
  1594. if (gi->gl)
  1595. gfs2_glock_hold(gi->gl);
  1596. read_unlock(gl_lock_addr(gi->hash));
  1597. if (gl)
  1598. gfs2_glock_put(gl);
  1599. while (gi->gl == NULL) {
  1600. gi->hash++;
  1601. if (gi->hash >= GFS2_GL_HASH_SIZE)
  1602. return 1;
  1603. read_lock(gl_lock_addr(gi->hash));
  1604. gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
  1605. struct gfs2_glock, gl_list);
  1606. if (gi->gl)
  1607. gfs2_glock_hold(gi->gl);
  1608. read_unlock(gl_lock_addr(gi->hash));
  1609. }
  1610. if (gi->sdp != gi->gl->gl_sbd)
  1611. goto restart;
  1612. return 0;
  1613. }
  1614. static void gfs2_glock_iter_free(struct gfs2_glock_iter *gi)
  1615. {
  1616. if (gi->gl)
  1617. gfs2_glock_put(gi->gl);
  1618. gi->gl = NULL;
  1619. }
  1620. static void *gfs2_glock_seq_start(struct seq_file *seq, loff_t *pos)
  1621. {
  1622. struct gfs2_glock_iter *gi = seq->private;
  1623. loff_t n = *pos;
  1624. gi->hash = 0;
  1625. do {
  1626. if (gfs2_glock_iter_next(gi)) {
  1627. gfs2_glock_iter_free(gi);
  1628. return NULL;
  1629. }
  1630. } while (n--);
  1631. return gi->gl;
  1632. }
  1633. static void *gfs2_glock_seq_next(struct seq_file *seq, void *iter_ptr,
  1634. loff_t *pos)
  1635. {
  1636. struct gfs2_glock_iter *gi = seq->private;
  1637. (*pos)++;
  1638. if (gfs2_glock_iter_next(gi)) {
  1639. gfs2_glock_iter_free(gi);
  1640. return NULL;
  1641. }
  1642. return gi->gl;
  1643. }
  1644. static void gfs2_glock_seq_stop(struct seq_file *seq, void *iter_ptr)
  1645. {
  1646. struct gfs2_glock_iter *gi = seq->private;
  1647. gfs2_glock_iter_free(gi);
  1648. }
  1649. static int gfs2_glock_seq_show(struct seq_file *seq, void *iter_ptr)
  1650. {
  1651. return dump_glock(seq, iter_ptr);
  1652. }
  1653. static const struct seq_operations gfs2_glock_seq_ops = {
  1654. .start = gfs2_glock_seq_start,
  1655. .next = gfs2_glock_seq_next,
  1656. .stop = gfs2_glock_seq_stop,
  1657. .show = gfs2_glock_seq_show,
  1658. };
  1659. static int gfs2_debugfs_open(struct inode *inode, struct file *file)
  1660. {
  1661. int ret = seq_open_private(file, &gfs2_glock_seq_ops,
  1662. sizeof(struct gfs2_glock_iter));
  1663. if (ret == 0) {
  1664. struct seq_file *seq = file->private_data;
  1665. struct gfs2_glock_iter *gi = seq->private;
  1666. gi->sdp = inode->i_private;
  1667. }
  1668. return ret;
  1669. }
  1670. static const struct file_operations gfs2_debug_fops = {
  1671. .owner = THIS_MODULE,
  1672. .open = gfs2_debugfs_open,
  1673. .read = seq_read,
  1674. .llseek = seq_lseek,
  1675. .release = seq_release_private,
  1676. };
  1677. int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
  1678. {
  1679. sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
  1680. if (!sdp->debugfs_dir)
  1681. return -ENOMEM;
  1682. sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
  1683. S_IFREG | S_IRUGO,
  1684. sdp->debugfs_dir, sdp,
  1685. &gfs2_debug_fops);
  1686. if (!sdp->debugfs_dentry_glocks)
  1687. return -ENOMEM;
  1688. return 0;
  1689. }
  1690. void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
  1691. {
  1692. if (sdp && sdp->debugfs_dir) {
  1693. if (sdp->debugfs_dentry_glocks) {
  1694. debugfs_remove(sdp->debugfs_dentry_glocks);
  1695. sdp->debugfs_dentry_glocks = NULL;
  1696. }
  1697. debugfs_remove(sdp->debugfs_dir);
  1698. sdp->debugfs_dir = NULL;
  1699. }
  1700. }
  1701. int gfs2_register_debugfs(void)
  1702. {
  1703. gfs2_root = debugfs_create_dir("gfs2", NULL);
  1704. return gfs2_root ? 0 : -ENOMEM;
  1705. }
  1706. void gfs2_unregister_debugfs(void)
  1707. {
  1708. debugfs_remove(gfs2_root);
  1709. gfs2_root = NULL;
  1710. }