glock.c 46 KB

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