glock.c 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2007 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/completion.h>
  13. #include <linux/buffer_head.h>
  14. #include <linux/delay.h>
  15. #include <linux/sort.h>
  16. #include <linux/jhash.h>
  17. #include <linux/kallsyms.h>
  18. #include <linux/gfs2_ondisk.h>
  19. #include <linux/list.h>
  20. #include <linux/lm_interface.h>
  21. #include <linux/wait.h>
  22. #include <linux/module.h>
  23. #include <linux/rwsem.h>
  24. #include <asm/uaccess.h>
  25. #include <linux/seq_file.h>
  26. #include <linux/debugfs.h>
  27. #include <linux/kthread.h>
  28. #include <linux/freezer.h>
  29. #include <linux/workqueue.h>
  30. #include <linux/jiffies.h>
  31. #include "gfs2.h"
  32. #include "incore.h"
  33. #include "glock.h"
  34. #include "glops.h"
  35. #include "inode.h"
  36. #include "lm.h"
  37. #include "lops.h"
  38. #include "meta_io.h"
  39. #include "quota.h"
  40. #include "super.h"
  41. #include "util.h"
  42. struct gfs2_gl_hash_bucket {
  43. struct hlist_head hb_list;
  44. };
  45. struct glock_iter {
  46. int hash; /* hash bucket index */
  47. struct gfs2_sbd *sdp; /* incore superblock */
  48. struct gfs2_glock *gl; /* current glock struct */
  49. struct seq_file *seq; /* sequence file for debugfs */
  50. char string[512]; /* scratch space */
  51. };
  52. typedef void (*glock_examiner) (struct gfs2_glock * gl);
  53. static int gfs2_dump_lockstate(struct gfs2_sbd *sdp);
  54. static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl);
  55. static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh);
  56. static void gfs2_glock_drop_th(struct gfs2_glock *gl);
  57. static void run_queue(struct gfs2_glock *gl);
  58. static DECLARE_RWSEM(gfs2_umount_flush_sem);
  59. static struct dentry *gfs2_root;
  60. static struct task_struct *scand_process;
  61. static unsigned int scand_secs = 5;
  62. static struct workqueue_struct *glock_workqueue;
  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. * relaxed_state_ok - is a requested lock compatible with the current lock mode?
  113. * @actual: the current state of the lock
  114. * @requested: the lock state that was requested by the caller
  115. * @flags: the modifier flags passed in by the caller
  116. *
  117. * Returns: 1 if the locks are compatible, 0 otherwise
  118. */
  119. static inline int relaxed_state_ok(unsigned int actual, unsigned requested,
  120. int flags)
  121. {
  122. if (actual == requested)
  123. return 1;
  124. if (flags & GL_EXACT)
  125. return 0;
  126. if (actual == LM_ST_EXCLUSIVE && requested == LM_ST_SHARED)
  127. return 1;
  128. if (actual != LM_ST_UNLOCKED && (flags & LM_FLAG_ANY))
  129. return 1;
  130. return 0;
  131. }
  132. /**
  133. * gl_hash() - Turn glock number into hash bucket number
  134. * @lock: The glock number
  135. *
  136. * Returns: The number of the corresponding hash bucket
  137. */
  138. static unsigned int gl_hash(const struct gfs2_sbd *sdp,
  139. const struct lm_lockname *name)
  140. {
  141. unsigned int h;
  142. h = jhash(&name->ln_number, sizeof(u64), 0);
  143. h = jhash(&name->ln_type, sizeof(unsigned int), h);
  144. h = jhash(&sdp, sizeof(struct gfs2_sbd *), h);
  145. h &= GFS2_GL_HASH_MASK;
  146. return h;
  147. }
  148. /**
  149. * glock_free() - Perform a few checks and then release struct gfs2_glock
  150. * @gl: The glock to release
  151. *
  152. * Also calls lock module to release its internal structure for this glock.
  153. *
  154. */
  155. static void glock_free(struct gfs2_glock *gl)
  156. {
  157. struct gfs2_sbd *sdp = gl->gl_sbd;
  158. struct inode *aspace = gl->gl_aspace;
  159. gfs2_lm_put_lock(sdp, gl->gl_lock);
  160. if (aspace)
  161. gfs2_aspace_put(aspace);
  162. kmem_cache_free(gfs2_glock_cachep, gl);
  163. }
  164. /**
  165. * gfs2_glock_hold() - increment reference count on glock
  166. * @gl: The glock to hold
  167. *
  168. */
  169. void gfs2_glock_hold(struct gfs2_glock *gl)
  170. {
  171. atomic_inc(&gl->gl_ref);
  172. }
  173. /**
  174. * gfs2_glock_put() - Decrement reference count on glock
  175. * @gl: The glock to put
  176. *
  177. */
  178. int gfs2_glock_put(struct gfs2_glock *gl)
  179. {
  180. int rv = 0;
  181. struct gfs2_sbd *sdp = gl->gl_sbd;
  182. write_lock(gl_lock_addr(gl->gl_hash));
  183. if (atomic_dec_and_test(&gl->gl_ref)) {
  184. hlist_del(&gl->gl_list);
  185. write_unlock(gl_lock_addr(gl->gl_hash));
  186. gfs2_assert(sdp, gl->gl_state == LM_ST_UNLOCKED);
  187. gfs2_assert(sdp, list_empty(&gl->gl_reclaim));
  188. gfs2_assert(sdp, list_empty(&gl->gl_holders));
  189. gfs2_assert(sdp, list_empty(&gl->gl_waiters1));
  190. gfs2_assert(sdp, list_empty(&gl->gl_waiters3));
  191. glock_free(gl);
  192. rv = 1;
  193. goto out;
  194. }
  195. write_unlock(gl_lock_addr(gl->gl_hash));
  196. out:
  197. return rv;
  198. }
  199. /**
  200. * search_bucket() - Find struct gfs2_glock by lock number
  201. * @bucket: the bucket to search
  202. * @name: The lock name
  203. *
  204. * Returns: NULL, or the struct gfs2_glock with the requested number
  205. */
  206. static struct gfs2_glock *search_bucket(unsigned int hash,
  207. const struct gfs2_sbd *sdp,
  208. const struct lm_lockname *name)
  209. {
  210. struct gfs2_glock *gl;
  211. struct hlist_node *h;
  212. hlist_for_each_entry(gl, h, &gl_hash_table[hash].hb_list, gl_list) {
  213. if (!lm_name_equal(&gl->gl_name, name))
  214. continue;
  215. if (gl->gl_sbd != sdp)
  216. continue;
  217. atomic_inc(&gl->gl_ref);
  218. return gl;
  219. }
  220. return NULL;
  221. }
  222. /**
  223. * gfs2_glock_find() - Find glock by lock number
  224. * @sdp: The GFS2 superblock
  225. * @name: The lock name
  226. *
  227. * Returns: NULL, or the struct gfs2_glock with the requested number
  228. */
  229. static struct gfs2_glock *gfs2_glock_find(const struct gfs2_sbd *sdp,
  230. const struct lm_lockname *name)
  231. {
  232. unsigned int hash = gl_hash(sdp, name);
  233. struct gfs2_glock *gl;
  234. read_lock(gl_lock_addr(hash));
  235. gl = search_bucket(hash, sdp, name);
  236. read_unlock(gl_lock_addr(hash));
  237. return gl;
  238. }
  239. static void glock_work_func(struct work_struct *work)
  240. {
  241. struct gfs2_glock *gl = container_of(work, struct gfs2_glock, gl_work.work);
  242. spin_lock(&gl->gl_spin);
  243. if (test_and_clear_bit(GLF_PENDING_DEMOTE, &gl->gl_flags))
  244. set_bit(GLF_DEMOTE, &gl->gl_flags);
  245. run_queue(gl);
  246. spin_unlock(&gl->gl_spin);
  247. gfs2_glock_put(gl);
  248. }
  249. /**
  250. * gfs2_glock_get() - Get a glock, or create one if one doesn't exist
  251. * @sdp: The GFS2 superblock
  252. * @number: the lock number
  253. * @glops: The glock_operations to use
  254. * @create: If 0, don't create the glock if it doesn't exist
  255. * @glp: the glock is returned here
  256. *
  257. * This does not lock a glock, just finds/creates structures for one.
  258. *
  259. * Returns: errno
  260. */
  261. int gfs2_glock_get(struct gfs2_sbd *sdp, u64 number,
  262. const struct gfs2_glock_operations *glops, int create,
  263. struct gfs2_glock **glp)
  264. {
  265. struct lm_lockname name = { .ln_number = number, .ln_type = glops->go_type };
  266. struct gfs2_glock *gl, *tmp;
  267. unsigned int hash = gl_hash(sdp, &name);
  268. int error;
  269. read_lock(gl_lock_addr(hash));
  270. gl = search_bucket(hash, sdp, &name);
  271. read_unlock(gl_lock_addr(hash));
  272. if (gl || !create) {
  273. *glp = gl;
  274. return 0;
  275. }
  276. gl = kmem_cache_alloc(gfs2_glock_cachep, GFP_KERNEL);
  277. if (!gl)
  278. return -ENOMEM;
  279. gl->gl_flags = 0;
  280. gl->gl_name = name;
  281. atomic_set(&gl->gl_ref, 1);
  282. gl->gl_state = LM_ST_UNLOCKED;
  283. gl->gl_demote_state = LM_ST_EXCLUSIVE;
  284. gl->gl_hash = hash;
  285. gl->gl_owner_pid = 0;
  286. gl->gl_ip = 0;
  287. gl->gl_ops = glops;
  288. gl->gl_req_gh = NULL;
  289. gl->gl_req_bh = NULL;
  290. gl->gl_vn = 0;
  291. gl->gl_stamp = jiffies;
  292. gl->gl_tchange = jiffies;
  293. gl->gl_object = NULL;
  294. gl->gl_sbd = sdp;
  295. gl->gl_aspace = NULL;
  296. INIT_DELAYED_WORK(&gl->gl_work, glock_work_func);
  297. /* If this glock protects actual on-disk data or metadata blocks,
  298. create a VFS inode to manage the pages/buffers holding them. */
  299. if (glops == &gfs2_inode_glops || glops == &gfs2_rgrp_glops) {
  300. gl->gl_aspace = gfs2_aspace_get(sdp);
  301. if (!gl->gl_aspace) {
  302. error = -ENOMEM;
  303. goto fail;
  304. }
  305. }
  306. error = gfs2_lm_get_lock(sdp, &name, &gl->gl_lock);
  307. if (error)
  308. goto fail_aspace;
  309. write_lock(gl_lock_addr(hash));
  310. tmp = search_bucket(hash, sdp, &name);
  311. if (tmp) {
  312. write_unlock(gl_lock_addr(hash));
  313. glock_free(gl);
  314. gl = tmp;
  315. } else {
  316. hlist_add_head(&gl->gl_list, &gl_hash_table[hash].hb_list);
  317. write_unlock(gl_lock_addr(hash));
  318. }
  319. *glp = gl;
  320. return 0;
  321. fail_aspace:
  322. if (gl->gl_aspace)
  323. gfs2_aspace_put(gl->gl_aspace);
  324. fail:
  325. kmem_cache_free(gfs2_glock_cachep, gl);
  326. return error;
  327. }
  328. /**
  329. * gfs2_holder_init - initialize a struct gfs2_holder in the default way
  330. * @gl: the glock
  331. * @state: the state we're requesting
  332. * @flags: the modifier flags
  333. * @gh: the holder structure
  334. *
  335. */
  336. void gfs2_holder_init(struct gfs2_glock *gl, unsigned int state, unsigned flags,
  337. struct gfs2_holder *gh)
  338. {
  339. INIT_LIST_HEAD(&gh->gh_list);
  340. gh->gh_gl = gl;
  341. gh->gh_ip = (unsigned long)__builtin_return_address(0);
  342. gh->gh_owner_pid = get_pid(task_pid(current));
  343. gh->gh_state = state;
  344. gh->gh_flags = flags;
  345. gh->gh_error = 0;
  346. gh->gh_iflags = 0;
  347. gfs2_glock_hold(gl);
  348. }
  349. /**
  350. * gfs2_holder_reinit - reinitialize a struct gfs2_holder so we can requeue it
  351. * @state: the state we're requesting
  352. * @flags: the modifier flags
  353. * @gh: the holder structure
  354. *
  355. * Don't mess with the glock.
  356. *
  357. */
  358. void gfs2_holder_reinit(unsigned int state, unsigned flags, struct gfs2_holder *gh)
  359. {
  360. gh->gh_state = state;
  361. gh->gh_flags = flags;
  362. gh->gh_iflags = 0;
  363. gh->gh_ip = (unsigned long)__builtin_return_address(0);
  364. }
  365. /**
  366. * gfs2_holder_uninit - uninitialize a holder structure (drop glock reference)
  367. * @gh: the holder structure
  368. *
  369. */
  370. void gfs2_holder_uninit(struct gfs2_holder *gh)
  371. {
  372. put_pid(gh->gh_owner_pid);
  373. gfs2_glock_put(gh->gh_gl);
  374. gh->gh_gl = NULL;
  375. gh->gh_ip = 0;
  376. }
  377. static void gfs2_holder_wake(struct gfs2_holder *gh)
  378. {
  379. clear_bit(HIF_WAIT, &gh->gh_iflags);
  380. smp_mb__after_clear_bit();
  381. wake_up_bit(&gh->gh_iflags, HIF_WAIT);
  382. }
  383. static int just_schedule(void *word)
  384. {
  385. schedule();
  386. return 0;
  387. }
  388. static void wait_on_holder(struct gfs2_holder *gh)
  389. {
  390. might_sleep();
  391. wait_on_bit(&gh->gh_iflags, HIF_WAIT, just_schedule, TASK_UNINTERRUPTIBLE);
  392. }
  393. static void gfs2_demote_wake(struct gfs2_glock *gl)
  394. {
  395. gl->gl_demote_state = LM_ST_EXCLUSIVE;
  396. clear_bit(GLF_DEMOTE, &gl->gl_flags);
  397. smp_mb__after_clear_bit();
  398. wake_up_bit(&gl->gl_flags, GLF_DEMOTE);
  399. }
  400. static void wait_on_demote(struct gfs2_glock *gl)
  401. {
  402. might_sleep();
  403. wait_on_bit(&gl->gl_flags, GLF_DEMOTE, just_schedule, TASK_UNINTERRUPTIBLE);
  404. }
  405. /**
  406. * rq_mutex - process a mutex request in the queue
  407. * @gh: the glock holder
  408. *
  409. * Returns: 1 if the queue is blocked
  410. */
  411. static int rq_mutex(struct gfs2_holder *gh)
  412. {
  413. struct gfs2_glock *gl = gh->gh_gl;
  414. list_del_init(&gh->gh_list);
  415. /* gh->gh_error never examined. */
  416. set_bit(GLF_LOCK, &gl->gl_flags);
  417. clear_bit(HIF_WAIT, &gh->gh_iflags);
  418. smp_mb();
  419. wake_up_bit(&gh->gh_iflags, HIF_WAIT);
  420. return 1;
  421. }
  422. /**
  423. * rq_promote - process a promote request in the queue
  424. * @gh: the glock holder
  425. *
  426. * Acquire a new inter-node lock, or change a lock state to more restrictive.
  427. *
  428. * Returns: 1 if the queue is blocked
  429. */
  430. static int rq_promote(struct gfs2_holder *gh)
  431. {
  432. struct gfs2_glock *gl = gh->gh_gl;
  433. if (!relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
  434. if (list_empty(&gl->gl_holders)) {
  435. gl->gl_req_gh = gh;
  436. set_bit(GLF_LOCK, &gl->gl_flags);
  437. spin_unlock(&gl->gl_spin);
  438. gfs2_glock_xmote_th(gh->gh_gl, gh);
  439. spin_lock(&gl->gl_spin);
  440. }
  441. return 1;
  442. }
  443. if (list_empty(&gl->gl_holders)) {
  444. set_bit(HIF_FIRST, &gh->gh_iflags);
  445. set_bit(GLF_LOCK, &gl->gl_flags);
  446. } else {
  447. struct gfs2_holder *next_gh;
  448. if (gh->gh_state == LM_ST_EXCLUSIVE)
  449. return 1;
  450. next_gh = list_entry(gl->gl_holders.next, struct gfs2_holder,
  451. gh_list);
  452. if (next_gh->gh_state == LM_ST_EXCLUSIVE)
  453. return 1;
  454. }
  455. list_move_tail(&gh->gh_list, &gl->gl_holders);
  456. gh->gh_error = 0;
  457. set_bit(HIF_HOLDER, &gh->gh_iflags);
  458. gfs2_holder_wake(gh);
  459. return 0;
  460. }
  461. /**
  462. * rq_demote - process a demote request in the queue
  463. * @gh: the glock holder
  464. *
  465. * Returns: 1 if the queue is blocked
  466. */
  467. static int rq_demote(struct gfs2_glock *gl)
  468. {
  469. if (!list_empty(&gl->gl_holders))
  470. return 1;
  471. if (gl->gl_state == gl->gl_demote_state ||
  472. gl->gl_state == LM_ST_UNLOCKED) {
  473. gfs2_demote_wake(gl);
  474. return 0;
  475. }
  476. set_bit(GLF_LOCK, &gl->gl_flags);
  477. set_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
  478. if (gl->gl_demote_state == LM_ST_UNLOCKED ||
  479. gl->gl_state != LM_ST_EXCLUSIVE) {
  480. spin_unlock(&gl->gl_spin);
  481. gfs2_glock_drop_th(gl);
  482. } else {
  483. spin_unlock(&gl->gl_spin);
  484. gfs2_glock_xmote_th(gl, NULL);
  485. }
  486. spin_lock(&gl->gl_spin);
  487. clear_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags);
  488. return 0;
  489. }
  490. /**
  491. * run_queue - process holder structures on a glock
  492. * @gl: the glock
  493. *
  494. */
  495. static void run_queue(struct gfs2_glock *gl)
  496. {
  497. struct gfs2_holder *gh;
  498. int blocked = 1;
  499. for (;;) {
  500. if (test_bit(GLF_LOCK, &gl->gl_flags))
  501. break;
  502. if (!list_empty(&gl->gl_waiters1)) {
  503. gh = list_entry(gl->gl_waiters1.next,
  504. struct gfs2_holder, gh_list);
  505. blocked = rq_mutex(gh);
  506. } else if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
  507. blocked = rq_demote(gl);
  508. if (gl->gl_waiters2 && !blocked) {
  509. set_bit(GLF_DEMOTE, &gl->gl_flags);
  510. gl->gl_demote_state = LM_ST_UNLOCKED;
  511. }
  512. gl->gl_waiters2 = 0;
  513. } else if (!list_empty(&gl->gl_waiters3)) {
  514. gh = list_entry(gl->gl_waiters3.next,
  515. struct gfs2_holder, gh_list);
  516. blocked = rq_promote(gh);
  517. } else
  518. break;
  519. if (blocked)
  520. break;
  521. }
  522. }
  523. /**
  524. * gfs2_glmutex_lock - acquire a local lock on a glock
  525. * @gl: the glock
  526. *
  527. * Gives caller exclusive access to manipulate a glock structure.
  528. */
  529. static void gfs2_glmutex_lock(struct gfs2_glock *gl)
  530. {
  531. spin_lock(&gl->gl_spin);
  532. if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
  533. struct gfs2_holder gh;
  534. gfs2_holder_init(gl, 0, 0, &gh);
  535. set_bit(HIF_WAIT, &gh.gh_iflags);
  536. list_add_tail(&gh.gh_list, &gl->gl_waiters1);
  537. spin_unlock(&gl->gl_spin);
  538. wait_on_holder(&gh);
  539. gfs2_holder_uninit(&gh);
  540. } else {
  541. gl->gl_owner_pid = current->pid;
  542. gl->gl_ip = (unsigned long)__builtin_return_address(0);
  543. spin_unlock(&gl->gl_spin);
  544. }
  545. }
  546. /**
  547. * gfs2_glmutex_trylock - try to acquire a local lock on a glock
  548. * @gl: the glock
  549. *
  550. * Returns: 1 if the glock is acquired
  551. */
  552. static int gfs2_glmutex_trylock(struct gfs2_glock *gl)
  553. {
  554. int acquired = 1;
  555. spin_lock(&gl->gl_spin);
  556. if (test_and_set_bit(GLF_LOCK, &gl->gl_flags)) {
  557. acquired = 0;
  558. } else {
  559. gl->gl_owner_pid = current->pid;
  560. gl->gl_ip = (unsigned long)__builtin_return_address(0);
  561. }
  562. spin_unlock(&gl->gl_spin);
  563. return acquired;
  564. }
  565. /**
  566. * gfs2_glmutex_unlock - release a local lock on a glock
  567. * @gl: the glock
  568. *
  569. */
  570. static void gfs2_glmutex_unlock(struct gfs2_glock *gl)
  571. {
  572. spin_lock(&gl->gl_spin);
  573. clear_bit(GLF_LOCK, &gl->gl_flags);
  574. gl->gl_owner_pid = 0;
  575. gl->gl_ip = 0;
  576. run_queue(gl);
  577. spin_unlock(&gl->gl_spin);
  578. }
  579. /**
  580. * handle_callback - process a demote request
  581. * @gl: the glock
  582. * @state: the state the caller wants us to change to
  583. *
  584. * There are only two requests that we are going to see in actual
  585. * practise: LM_ST_SHARED and LM_ST_UNLOCKED
  586. */
  587. static void handle_callback(struct gfs2_glock *gl, unsigned int state,
  588. int remote, unsigned long delay)
  589. {
  590. int bit = delay ? GLF_PENDING_DEMOTE : GLF_DEMOTE;
  591. spin_lock(&gl->gl_spin);
  592. set_bit(bit, &gl->gl_flags);
  593. if (gl->gl_demote_state == LM_ST_EXCLUSIVE) {
  594. gl->gl_demote_state = state;
  595. gl->gl_demote_time = jiffies;
  596. if (remote && gl->gl_ops->go_type == LM_TYPE_IOPEN &&
  597. gl->gl_object) {
  598. gfs2_glock_schedule_for_reclaim(gl);
  599. spin_unlock(&gl->gl_spin);
  600. return;
  601. }
  602. } else if (gl->gl_demote_state != LM_ST_UNLOCKED &&
  603. gl->gl_demote_state != state) {
  604. if (test_bit(GLF_DEMOTE_IN_PROGRESS, &gl->gl_flags))
  605. gl->gl_waiters2 = 1;
  606. else
  607. gl->gl_demote_state = LM_ST_UNLOCKED;
  608. }
  609. spin_unlock(&gl->gl_spin);
  610. }
  611. /**
  612. * state_change - record that the glock is now in a different state
  613. * @gl: the glock
  614. * @new_state the new state
  615. *
  616. */
  617. static void state_change(struct gfs2_glock *gl, unsigned int new_state)
  618. {
  619. int held1, held2;
  620. held1 = (gl->gl_state != LM_ST_UNLOCKED);
  621. held2 = (new_state != LM_ST_UNLOCKED);
  622. if (held1 != held2) {
  623. if (held2)
  624. gfs2_glock_hold(gl);
  625. else
  626. gfs2_glock_put(gl);
  627. }
  628. gl->gl_state = new_state;
  629. gl->gl_tchange = jiffies;
  630. }
  631. /**
  632. * xmote_bh - Called after the lock module is done acquiring a lock
  633. * @gl: The glock in question
  634. * @ret: the int returned from the lock module
  635. *
  636. */
  637. static void xmote_bh(struct gfs2_glock *gl, unsigned int ret)
  638. {
  639. struct gfs2_sbd *sdp = gl->gl_sbd;
  640. const struct gfs2_glock_operations *glops = gl->gl_ops;
  641. struct gfs2_holder *gh = gl->gl_req_gh;
  642. int prev_state = gl->gl_state;
  643. int op_done = 1;
  644. gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
  645. gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
  646. gfs2_assert_warn(sdp, !(ret & LM_OUT_ASYNC));
  647. state_change(gl, ret & LM_OUT_ST_MASK);
  648. if (prev_state != LM_ST_UNLOCKED && !(ret & LM_OUT_CACHEABLE)) {
  649. if (glops->go_inval)
  650. glops->go_inval(gl, DIO_METADATA);
  651. } else if (gl->gl_state == LM_ST_DEFERRED) {
  652. /* We might not want to do this here.
  653. Look at moving to the inode glops. */
  654. if (glops->go_inval)
  655. glops->go_inval(gl, 0);
  656. }
  657. /* Deal with each possible exit condition */
  658. if (!gh) {
  659. gl->gl_stamp = jiffies;
  660. if (ret & LM_OUT_CANCELED) {
  661. op_done = 0;
  662. } else {
  663. spin_lock(&gl->gl_spin);
  664. if (gl->gl_state != gl->gl_demote_state) {
  665. gl->gl_req_bh = NULL;
  666. spin_unlock(&gl->gl_spin);
  667. gfs2_glock_drop_th(gl);
  668. gfs2_glock_put(gl);
  669. return;
  670. }
  671. gfs2_demote_wake(gl);
  672. spin_unlock(&gl->gl_spin);
  673. }
  674. } else {
  675. spin_lock(&gl->gl_spin);
  676. list_del_init(&gh->gh_list);
  677. gh->gh_error = -EIO;
  678. if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags)))
  679. goto out;
  680. gh->gh_error = GLR_CANCELED;
  681. if (ret & LM_OUT_CANCELED)
  682. goto out;
  683. if (relaxed_state_ok(gl->gl_state, gh->gh_state, gh->gh_flags)) {
  684. list_add_tail(&gh->gh_list, &gl->gl_holders);
  685. gh->gh_error = 0;
  686. set_bit(HIF_HOLDER, &gh->gh_iflags);
  687. set_bit(HIF_FIRST, &gh->gh_iflags);
  688. op_done = 0;
  689. goto out;
  690. }
  691. gh->gh_error = GLR_TRYFAILED;
  692. if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB))
  693. goto out;
  694. gh->gh_error = -EINVAL;
  695. if (gfs2_assert_withdraw(sdp, 0) == -1)
  696. fs_err(sdp, "ret = 0x%.8X\n", ret);
  697. out:
  698. spin_unlock(&gl->gl_spin);
  699. }
  700. if (glops->go_xmote_bh)
  701. glops->go_xmote_bh(gl);
  702. if (op_done) {
  703. spin_lock(&gl->gl_spin);
  704. gl->gl_req_gh = NULL;
  705. gl->gl_req_bh = NULL;
  706. clear_bit(GLF_LOCK, &gl->gl_flags);
  707. spin_unlock(&gl->gl_spin);
  708. }
  709. gfs2_glock_put(gl);
  710. if (gh)
  711. gfs2_holder_wake(gh);
  712. }
  713. /**
  714. * gfs2_glock_xmote_th - Call into the lock module to acquire or change a glock
  715. * @gl: The glock in question
  716. * @state: the requested state
  717. * @flags: modifier flags to the lock call
  718. *
  719. */
  720. static void gfs2_glock_xmote_th(struct gfs2_glock *gl, struct gfs2_holder *gh)
  721. {
  722. struct gfs2_sbd *sdp = gl->gl_sbd;
  723. int flags = gh ? gh->gh_flags : 0;
  724. unsigned state = gh ? gh->gh_state : gl->gl_demote_state;
  725. const struct gfs2_glock_operations *glops = gl->gl_ops;
  726. int lck_flags = flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB |
  727. LM_FLAG_NOEXP | LM_FLAG_ANY |
  728. LM_FLAG_PRIORITY);
  729. unsigned int lck_ret;
  730. if (glops->go_xmote_th)
  731. glops->go_xmote_th(gl);
  732. gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
  733. gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
  734. gfs2_assert_warn(sdp, state != LM_ST_UNLOCKED);
  735. gfs2_assert_warn(sdp, state != gl->gl_state);
  736. gfs2_glock_hold(gl);
  737. gl->gl_req_bh = xmote_bh;
  738. lck_ret = gfs2_lm_lock(sdp, gl->gl_lock, gl->gl_state, state, lck_flags);
  739. if (gfs2_assert_withdraw(sdp, !(lck_ret & LM_OUT_ERROR)))
  740. return;
  741. if (lck_ret & LM_OUT_ASYNC)
  742. gfs2_assert_warn(sdp, lck_ret == LM_OUT_ASYNC);
  743. else
  744. xmote_bh(gl, lck_ret);
  745. }
  746. /**
  747. * drop_bh - Called after a lock module unlock completes
  748. * @gl: the glock
  749. * @ret: the return status
  750. *
  751. * Doesn't wake up the process waiting on the struct gfs2_holder (if any)
  752. * Doesn't drop the reference on the glock the top half took out
  753. *
  754. */
  755. static void drop_bh(struct gfs2_glock *gl, unsigned int ret)
  756. {
  757. struct gfs2_sbd *sdp = gl->gl_sbd;
  758. const struct gfs2_glock_operations *glops = gl->gl_ops;
  759. struct gfs2_holder *gh = gl->gl_req_gh;
  760. gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
  761. gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
  762. gfs2_assert_warn(sdp, !ret);
  763. state_change(gl, LM_ST_UNLOCKED);
  764. if (glops->go_inval)
  765. glops->go_inval(gl, DIO_METADATA);
  766. if (gh) {
  767. spin_lock(&gl->gl_spin);
  768. list_del_init(&gh->gh_list);
  769. gh->gh_error = 0;
  770. spin_unlock(&gl->gl_spin);
  771. }
  772. spin_lock(&gl->gl_spin);
  773. gfs2_demote_wake(gl);
  774. gl->gl_req_gh = NULL;
  775. gl->gl_req_bh = NULL;
  776. clear_bit(GLF_LOCK, &gl->gl_flags);
  777. spin_unlock(&gl->gl_spin);
  778. gfs2_glock_put(gl);
  779. if (gh)
  780. gfs2_holder_wake(gh);
  781. }
  782. /**
  783. * gfs2_glock_drop_th - call into the lock module to unlock a lock
  784. * @gl: the glock
  785. *
  786. */
  787. static void gfs2_glock_drop_th(struct gfs2_glock *gl)
  788. {
  789. struct gfs2_sbd *sdp = gl->gl_sbd;
  790. const struct gfs2_glock_operations *glops = gl->gl_ops;
  791. unsigned int ret;
  792. if (glops->go_xmote_th)
  793. glops->go_xmote_th(gl);
  794. gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
  795. gfs2_assert_warn(sdp, list_empty(&gl->gl_holders));
  796. gfs2_assert_warn(sdp, gl->gl_state != LM_ST_UNLOCKED);
  797. gfs2_glock_hold(gl);
  798. gl->gl_req_bh = drop_bh;
  799. ret = gfs2_lm_unlock(sdp, gl->gl_lock, gl->gl_state);
  800. if (gfs2_assert_withdraw(sdp, !(ret & LM_OUT_ERROR)))
  801. return;
  802. if (!ret)
  803. drop_bh(gl, ret);
  804. else
  805. gfs2_assert_warn(sdp, ret == LM_OUT_ASYNC);
  806. }
  807. /**
  808. * do_cancels - cancel requests for locks stuck waiting on an expire flag
  809. * @gh: the LM_FLAG_PRIORITY holder waiting to acquire the lock
  810. *
  811. * Don't cancel GL_NOCANCEL requests.
  812. */
  813. static void do_cancels(struct gfs2_holder *gh)
  814. {
  815. struct gfs2_glock *gl = gh->gh_gl;
  816. spin_lock(&gl->gl_spin);
  817. while (gl->gl_req_gh != gh &&
  818. !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
  819. !list_empty(&gh->gh_list)) {
  820. if (gl->gl_req_bh && !(gl->gl_req_gh &&
  821. (gl->gl_req_gh->gh_flags & GL_NOCANCEL))) {
  822. spin_unlock(&gl->gl_spin);
  823. gfs2_lm_cancel(gl->gl_sbd, gl->gl_lock);
  824. msleep(100);
  825. spin_lock(&gl->gl_spin);
  826. } else {
  827. spin_unlock(&gl->gl_spin);
  828. msleep(100);
  829. spin_lock(&gl->gl_spin);
  830. }
  831. }
  832. spin_unlock(&gl->gl_spin);
  833. }
  834. /**
  835. * glock_wait_internal - wait on a glock acquisition
  836. * @gh: the glock holder
  837. *
  838. * Returns: 0 on success
  839. */
  840. static int glock_wait_internal(struct gfs2_holder *gh)
  841. {
  842. struct gfs2_glock *gl = gh->gh_gl;
  843. struct gfs2_sbd *sdp = gl->gl_sbd;
  844. const struct gfs2_glock_operations *glops = gl->gl_ops;
  845. if (test_bit(HIF_ABORTED, &gh->gh_iflags))
  846. return -EIO;
  847. if (gh->gh_flags & (LM_FLAG_TRY | LM_FLAG_TRY_1CB)) {
  848. spin_lock(&gl->gl_spin);
  849. if (gl->gl_req_gh != gh &&
  850. !test_bit(HIF_HOLDER, &gh->gh_iflags) &&
  851. !list_empty(&gh->gh_list)) {
  852. list_del_init(&gh->gh_list);
  853. gh->gh_error = GLR_TRYFAILED;
  854. run_queue(gl);
  855. spin_unlock(&gl->gl_spin);
  856. return gh->gh_error;
  857. }
  858. spin_unlock(&gl->gl_spin);
  859. }
  860. if (gh->gh_flags & LM_FLAG_PRIORITY)
  861. do_cancels(gh);
  862. wait_on_holder(gh);
  863. if (gh->gh_error)
  864. return gh->gh_error;
  865. gfs2_assert_withdraw(sdp, test_bit(HIF_HOLDER, &gh->gh_iflags));
  866. gfs2_assert_withdraw(sdp, relaxed_state_ok(gl->gl_state, gh->gh_state,
  867. gh->gh_flags));
  868. if (test_bit(HIF_FIRST, &gh->gh_iflags)) {
  869. gfs2_assert_warn(sdp, test_bit(GLF_LOCK, &gl->gl_flags));
  870. if (glops->go_lock) {
  871. gh->gh_error = glops->go_lock(gh);
  872. if (gh->gh_error) {
  873. spin_lock(&gl->gl_spin);
  874. list_del_init(&gh->gh_list);
  875. spin_unlock(&gl->gl_spin);
  876. }
  877. }
  878. spin_lock(&gl->gl_spin);
  879. gl->gl_req_gh = NULL;
  880. gl->gl_req_bh = NULL;
  881. clear_bit(GLF_LOCK, &gl->gl_flags);
  882. run_queue(gl);
  883. spin_unlock(&gl->gl_spin);
  884. }
  885. return gh->gh_error;
  886. }
  887. static inline struct gfs2_holder *
  888. find_holder_by_owner(struct list_head *head, struct pid *pid)
  889. {
  890. struct gfs2_holder *gh;
  891. list_for_each_entry(gh, head, gh_list) {
  892. if (gh->gh_owner_pid == pid)
  893. return gh;
  894. }
  895. return NULL;
  896. }
  897. static void print_dbg(struct glock_iter *gi, const char *fmt, ...)
  898. {
  899. va_list args;
  900. va_start(args, fmt);
  901. if (gi) {
  902. vsprintf(gi->string, fmt, args);
  903. seq_printf(gi->seq, gi->string);
  904. }
  905. else
  906. vprintk(fmt, args);
  907. va_end(args);
  908. }
  909. /**
  910. * add_to_queue - Add a holder to the wait queue (but look for recursion)
  911. * @gh: the holder structure to add
  912. *
  913. */
  914. static void add_to_queue(struct gfs2_holder *gh)
  915. {
  916. struct gfs2_glock *gl = gh->gh_gl;
  917. struct gfs2_holder *existing;
  918. BUG_ON(gh->gh_owner_pid == NULL);
  919. if (test_and_set_bit(HIF_WAIT, &gh->gh_iflags))
  920. BUG();
  921. if (!(gh->gh_flags & GL_FLOCK)) {
  922. existing = find_holder_by_owner(&gl->gl_holders,
  923. gh->gh_owner_pid);
  924. if (existing) {
  925. print_symbol(KERN_WARNING "original: %s\n",
  926. existing->gh_ip);
  927. printk(KERN_INFO "pid : %d\n",
  928. pid_nr(existing->gh_owner_pid));
  929. printk(KERN_INFO "lock type : %d lock state : %d\n",
  930. existing->gh_gl->gl_name.ln_type,
  931. existing->gh_gl->gl_state);
  932. print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
  933. printk(KERN_INFO "pid : %d\n",
  934. pid_nr(gh->gh_owner_pid));
  935. printk(KERN_INFO "lock type : %d lock state : %d\n",
  936. gl->gl_name.ln_type, gl->gl_state);
  937. BUG();
  938. }
  939. existing = find_holder_by_owner(&gl->gl_waiters3,
  940. gh->gh_owner_pid);
  941. if (existing) {
  942. print_symbol(KERN_WARNING "original: %s\n",
  943. existing->gh_ip);
  944. print_symbol(KERN_WARNING "new: %s\n", gh->gh_ip);
  945. BUG();
  946. }
  947. }
  948. if (gh->gh_flags & LM_FLAG_PRIORITY)
  949. list_add(&gh->gh_list, &gl->gl_waiters3);
  950. else
  951. list_add_tail(&gh->gh_list, &gl->gl_waiters3);
  952. }
  953. /**
  954. * gfs2_glock_nq - enqueue a struct gfs2_holder onto a glock (acquire a glock)
  955. * @gh: the holder structure
  956. *
  957. * if (gh->gh_flags & GL_ASYNC), this never returns an error
  958. *
  959. * Returns: 0, GLR_TRYFAILED, or errno on failure
  960. */
  961. int gfs2_glock_nq(struct gfs2_holder *gh)
  962. {
  963. struct gfs2_glock *gl = gh->gh_gl;
  964. struct gfs2_sbd *sdp = gl->gl_sbd;
  965. int error = 0;
  966. restart:
  967. if (unlikely(test_bit(SDF_SHUTDOWN, &sdp->sd_flags))) {
  968. set_bit(HIF_ABORTED, &gh->gh_iflags);
  969. return -EIO;
  970. }
  971. spin_lock(&gl->gl_spin);
  972. add_to_queue(gh);
  973. run_queue(gl);
  974. spin_unlock(&gl->gl_spin);
  975. if (!(gh->gh_flags & GL_ASYNC)) {
  976. error = glock_wait_internal(gh);
  977. if (error == GLR_CANCELED) {
  978. msleep(100);
  979. goto restart;
  980. }
  981. }
  982. return error;
  983. }
  984. /**
  985. * gfs2_glock_poll - poll to see if an async request has been completed
  986. * @gh: the holder
  987. *
  988. * Returns: 1 if the request is ready to be gfs2_glock_wait()ed on
  989. */
  990. int gfs2_glock_poll(struct gfs2_holder *gh)
  991. {
  992. struct gfs2_glock *gl = gh->gh_gl;
  993. int ready = 0;
  994. spin_lock(&gl->gl_spin);
  995. if (test_bit(HIF_HOLDER, &gh->gh_iflags))
  996. ready = 1;
  997. else if (list_empty(&gh->gh_list)) {
  998. if (gh->gh_error == GLR_CANCELED) {
  999. spin_unlock(&gl->gl_spin);
  1000. msleep(100);
  1001. if (gfs2_glock_nq(gh))
  1002. return 1;
  1003. return 0;
  1004. } else
  1005. ready = 1;
  1006. }
  1007. spin_unlock(&gl->gl_spin);
  1008. return ready;
  1009. }
  1010. /**
  1011. * gfs2_glock_wait - wait for a lock acquisition that ended in a GLR_ASYNC
  1012. * @gh: the holder structure
  1013. *
  1014. * Returns: 0, GLR_TRYFAILED, or errno on failure
  1015. */
  1016. int gfs2_glock_wait(struct gfs2_holder *gh)
  1017. {
  1018. int error;
  1019. error = glock_wait_internal(gh);
  1020. if (error == GLR_CANCELED) {
  1021. msleep(100);
  1022. gh->gh_flags &= ~GL_ASYNC;
  1023. error = gfs2_glock_nq(gh);
  1024. }
  1025. return error;
  1026. }
  1027. /**
  1028. * gfs2_glock_dq - dequeue a struct gfs2_holder from a glock (release a glock)
  1029. * @gh: the glock holder
  1030. *
  1031. */
  1032. void gfs2_glock_dq(struct gfs2_holder *gh)
  1033. {
  1034. struct gfs2_glock *gl = gh->gh_gl;
  1035. const struct gfs2_glock_operations *glops = gl->gl_ops;
  1036. unsigned delay = 0;
  1037. if (gh->gh_flags & GL_NOCACHE)
  1038. handle_callback(gl, LM_ST_UNLOCKED, 0, 0);
  1039. gfs2_glmutex_lock(gl);
  1040. spin_lock(&gl->gl_spin);
  1041. list_del_init(&gh->gh_list);
  1042. if (list_empty(&gl->gl_holders)) {
  1043. if (glops->go_unlock) {
  1044. spin_unlock(&gl->gl_spin);
  1045. glops->go_unlock(gh);
  1046. spin_lock(&gl->gl_spin);
  1047. }
  1048. gl->gl_stamp = jiffies;
  1049. }
  1050. clear_bit(GLF_LOCK, &gl->gl_flags);
  1051. spin_unlock(&gl->gl_spin);
  1052. gfs2_glock_hold(gl);
  1053. if (test_bit(GLF_PENDING_DEMOTE, &gl->gl_flags) &&
  1054. !test_bit(GLF_DEMOTE, &gl->gl_flags))
  1055. delay = gl->gl_ops->go_min_hold_time;
  1056. if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
  1057. gfs2_glock_put(gl);
  1058. }
  1059. void gfs2_glock_dq_wait(struct gfs2_holder *gh)
  1060. {
  1061. struct gfs2_glock *gl = gh->gh_gl;
  1062. gfs2_glock_dq(gh);
  1063. wait_on_demote(gl);
  1064. }
  1065. /**
  1066. * gfs2_glock_dq_uninit - dequeue a holder from a glock and initialize it
  1067. * @gh: the holder structure
  1068. *
  1069. */
  1070. void gfs2_glock_dq_uninit(struct gfs2_holder *gh)
  1071. {
  1072. gfs2_glock_dq(gh);
  1073. gfs2_holder_uninit(gh);
  1074. }
  1075. /**
  1076. * gfs2_glock_nq_num - acquire a glock based on lock number
  1077. * @sdp: the filesystem
  1078. * @number: the lock number
  1079. * @glops: the glock operations for the type of glock
  1080. * @state: the state to acquire the glock in
  1081. * @flags: modifier flags for the aquisition
  1082. * @gh: the struct gfs2_holder
  1083. *
  1084. * Returns: errno
  1085. */
  1086. int gfs2_glock_nq_num(struct gfs2_sbd *sdp, u64 number,
  1087. const struct gfs2_glock_operations *glops,
  1088. unsigned int state, int flags, struct gfs2_holder *gh)
  1089. {
  1090. struct gfs2_glock *gl;
  1091. int error;
  1092. error = gfs2_glock_get(sdp, number, glops, CREATE, &gl);
  1093. if (!error) {
  1094. error = gfs2_glock_nq_init(gl, state, flags, gh);
  1095. gfs2_glock_put(gl);
  1096. }
  1097. return error;
  1098. }
  1099. /**
  1100. * glock_compare - Compare two struct gfs2_glock structures for sorting
  1101. * @arg_a: the first structure
  1102. * @arg_b: the second structure
  1103. *
  1104. */
  1105. static int glock_compare(const void *arg_a, const void *arg_b)
  1106. {
  1107. const struct gfs2_holder *gh_a = *(const struct gfs2_holder **)arg_a;
  1108. const struct gfs2_holder *gh_b = *(const struct gfs2_holder **)arg_b;
  1109. const struct lm_lockname *a = &gh_a->gh_gl->gl_name;
  1110. const struct lm_lockname *b = &gh_b->gh_gl->gl_name;
  1111. if (a->ln_number > b->ln_number)
  1112. return 1;
  1113. if (a->ln_number < b->ln_number)
  1114. return -1;
  1115. BUG_ON(gh_a->gh_gl->gl_ops->go_type == gh_b->gh_gl->gl_ops->go_type);
  1116. return 0;
  1117. }
  1118. /**
  1119. * nq_m_sync - synchonously acquire more than one glock in deadlock free order
  1120. * @num_gh: the number of structures
  1121. * @ghs: an array of struct gfs2_holder structures
  1122. *
  1123. * Returns: 0 on success (all glocks acquired),
  1124. * errno on failure (no glocks acquired)
  1125. */
  1126. static int nq_m_sync(unsigned int num_gh, struct gfs2_holder *ghs,
  1127. struct gfs2_holder **p)
  1128. {
  1129. unsigned int x;
  1130. int error = 0;
  1131. for (x = 0; x < num_gh; x++)
  1132. p[x] = &ghs[x];
  1133. sort(p, num_gh, sizeof(struct gfs2_holder *), glock_compare, NULL);
  1134. for (x = 0; x < num_gh; x++) {
  1135. p[x]->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
  1136. error = gfs2_glock_nq(p[x]);
  1137. if (error) {
  1138. while (x--)
  1139. gfs2_glock_dq(p[x]);
  1140. break;
  1141. }
  1142. }
  1143. return error;
  1144. }
  1145. /**
  1146. * gfs2_glock_nq_m - acquire multiple glocks
  1147. * @num_gh: the number of structures
  1148. * @ghs: an array of struct gfs2_holder structures
  1149. *
  1150. *
  1151. * Returns: 0 on success (all glocks acquired),
  1152. * errno on failure (no glocks acquired)
  1153. */
  1154. int gfs2_glock_nq_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1155. {
  1156. struct gfs2_holder *tmp[4];
  1157. struct gfs2_holder **pph = tmp;
  1158. int error = 0;
  1159. switch(num_gh) {
  1160. case 0:
  1161. return 0;
  1162. case 1:
  1163. ghs->gh_flags &= ~(LM_FLAG_TRY | GL_ASYNC);
  1164. return gfs2_glock_nq(ghs);
  1165. default:
  1166. if (num_gh <= 4)
  1167. break;
  1168. pph = kmalloc(num_gh * sizeof(struct gfs2_holder *), GFP_NOFS);
  1169. if (!pph)
  1170. return -ENOMEM;
  1171. }
  1172. error = nq_m_sync(num_gh, ghs, pph);
  1173. if (pph != tmp)
  1174. kfree(pph);
  1175. return error;
  1176. }
  1177. /**
  1178. * gfs2_glock_dq_m - release multiple glocks
  1179. * @num_gh: the number of structures
  1180. * @ghs: an array of struct gfs2_holder structures
  1181. *
  1182. */
  1183. void gfs2_glock_dq_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1184. {
  1185. unsigned int x;
  1186. for (x = 0; x < num_gh; x++)
  1187. gfs2_glock_dq(&ghs[x]);
  1188. }
  1189. /**
  1190. * gfs2_glock_dq_uninit_m - release multiple glocks
  1191. * @num_gh: the number of structures
  1192. * @ghs: an array of struct gfs2_holder structures
  1193. *
  1194. */
  1195. void gfs2_glock_dq_uninit_m(unsigned int num_gh, struct gfs2_holder *ghs)
  1196. {
  1197. unsigned int x;
  1198. for (x = 0; x < num_gh; x++)
  1199. gfs2_glock_dq_uninit(&ghs[x]);
  1200. }
  1201. /**
  1202. * gfs2_lvb_hold - attach a LVB from a glock
  1203. * @gl: The glock in question
  1204. *
  1205. */
  1206. int gfs2_lvb_hold(struct gfs2_glock *gl)
  1207. {
  1208. int error;
  1209. gfs2_glmutex_lock(gl);
  1210. if (!atomic_read(&gl->gl_lvb_count)) {
  1211. error = gfs2_lm_hold_lvb(gl->gl_sbd, gl->gl_lock, &gl->gl_lvb);
  1212. if (error) {
  1213. gfs2_glmutex_unlock(gl);
  1214. return error;
  1215. }
  1216. gfs2_glock_hold(gl);
  1217. }
  1218. atomic_inc(&gl->gl_lvb_count);
  1219. gfs2_glmutex_unlock(gl);
  1220. return 0;
  1221. }
  1222. /**
  1223. * gfs2_lvb_unhold - detach a LVB from a glock
  1224. * @gl: The glock in question
  1225. *
  1226. */
  1227. void gfs2_lvb_unhold(struct gfs2_glock *gl)
  1228. {
  1229. gfs2_glock_hold(gl);
  1230. gfs2_glmutex_lock(gl);
  1231. gfs2_assert(gl->gl_sbd, atomic_read(&gl->gl_lvb_count) > 0);
  1232. if (atomic_dec_and_test(&gl->gl_lvb_count)) {
  1233. gfs2_lm_unhold_lvb(gl->gl_sbd, gl->gl_lock, gl->gl_lvb);
  1234. gl->gl_lvb = NULL;
  1235. gfs2_glock_put(gl);
  1236. }
  1237. gfs2_glmutex_unlock(gl);
  1238. gfs2_glock_put(gl);
  1239. }
  1240. static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
  1241. unsigned int state)
  1242. {
  1243. struct gfs2_glock *gl;
  1244. unsigned long delay = 0;
  1245. unsigned long holdtime;
  1246. unsigned long now = jiffies;
  1247. gl = gfs2_glock_find(sdp, name);
  1248. if (!gl)
  1249. return;
  1250. holdtime = gl->gl_tchange + gl->gl_ops->go_min_hold_time;
  1251. if (time_before(now, holdtime))
  1252. delay = holdtime - now;
  1253. handle_callback(gl, state, 1, delay);
  1254. if (queue_delayed_work(glock_workqueue, &gl->gl_work, delay) == 0)
  1255. gfs2_glock_put(gl);
  1256. }
  1257. /**
  1258. * gfs2_glock_cb - Callback used by locking module
  1259. * @sdp: Pointer to the superblock
  1260. * @type: Type of callback
  1261. * @data: Type dependent data pointer
  1262. *
  1263. * Called by the locking module when it wants to tell us something.
  1264. * Either we need to drop a lock, one of our ASYNC requests completed, or
  1265. * a journal from another client needs to be recovered.
  1266. */
  1267. void gfs2_glock_cb(void *cb_data, unsigned int type, void *data)
  1268. {
  1269. struct gfs2_sbd *sdp = cb_data;
  1270. switch (type) {
  1271. case LM_CB_NEED_E:
  1272. blocking_cb(sdp, data, LM_ST_UNLOCKED);
  1273. return;
  1274. case LM_CB_NEED_D:
  1275. blocking_cb(sdp, data, LM_ST_DEFERRED);
  1276. return;
  1277. case LM_CB_NEED_S:
  1278. blocking_cb(sdp, data, LM_ST_SHARED);
  1279. return;
  1280. case LM_CB_ASYNC: {
  1281. struct lm_async_cb *async = data;
  1282. struct gfs2_glock *gl;
  1283. down_read(&gfs2_umount_flush_sem);
  1284. gl = gfs2_glock_find(sdp, &async->lc_name);
  1285. if (gfs2_assert_warn(sdp, gl))
  1286. return;
  1287. if (!gfs2_assert_warn(sdp, gl->gl_req_bh))
  1288. gl->gl_req_bh(gl, async->lc_ret);
  1289. if (queue_delayed_work(glock_workqueue, &gl->gl_work, 0) == 0)
  1290. gfs2_glock_put(gl);
  1291. up_read(&gfs2_umount_flush_sem);
  1292. return;
  1293. }
  1294. case LM_CB_NEED_RECOVERY:
  1295. gfs2_jdesc_make_dirty(sdp, *(unsigned int *)data);
  1296. if (sdp->sd_recoverd_process)
  1297. wake_up_process(sdp->sd_recoverd_process);
  1298. return;
  1299. case LM_CB_DROPLOCKS:
  1300. gfs2_gl_hash_clear(sdp, NO_WAIT);
  1301. gfs2_quota_scan(sdp);
  1302. return;
  1303. default:
  1304. gfs2_assert_warn(sdp, 0);
  1305. return;
  1306. }
  1307. }
  1308. /**
  1309. * demote_ok - Check to see if it's ok to unlock a glock
  1310. * @gl: the glock
  1311. *
  1312. * Returns: 1 if it's ok
  1313. */
  1314. static int demote_ok(struct gfs2_glock *gl)
  1315. {
  1316. const struct gfs2_glock_operations *glops = gl->gl_ops;
  1317. int demote = 1;
  1318. if (test_bit(GLF_STICKY, &gl->gl_flags))
  1319. demote = 0;
  1320. else if (glops->go_demote_ok)
  1321. demote = glops->go_demote_ok(gl);
  1322. return demote;
  1323. }
  1324. /**
  1325. * gfs2_glock_schedule_for_reclaim - Add a glock to the reclaim list
  1326. * @gl: the glock
  1327. *
  1328. */
  1329. void gfs2_glock_schedule_for_reclaim(struct gfs2_glock *gl)
  1330. {
  1331. struct gfs2_sbd *sdp = gl->gl_sbd;
  1332. spin_lock(&sdp->sd_reclaim_lock);
  1333. if (list_empty(&gl->gl_reclaim)) {
  1334. gfs2_glock_hold(gl);
  1335. list_add(&gl->gl_reclaim, &sdp->sd_reclaim_list);
  1336. atomic_inc(&sdp->sd_reclaim_count);
  1337. }
  1338. spin_unlock(&sdp->sd_reclaim_lock);
  1339. wake_up(&sdp->sd_reclaim_wq);
  1340. }
  1341. /**
  1342. * gfs2_reclaim_glock - process the next glock on the filesystem's reclaim list
  1343. * @sdp: the filesystem
  1344. *
  1345. * Called from gfs2_glockd() glock reclaim daemon, or when promoting a
  1346. * different glock and we notice that there are a lot of glocks in the
  1347. * reclaim list.
  1348. *
  1349. */
  1350. void gfs2_reclaim_glock(struct gfs2_sbd *sdp)
  1351. {
  1352. struct gfs2_glock *gl;
  1353. spin_lock(&sdp->sd_reclaim_lock);
  1354. if (list_empty(&sdp->sd_reclaim_list)) {
  1355. spin_unlock(&sdp->sd_reclaim_lock);
  1356. return;
  1357. }
  1358. gl = list_entry(sdp->sd_reclaim_list.next,
  1359. struct gfs2_glock, gl_reclaim);
  1360. list_del_init(&gl->gl_reclaim);
  1361. spin_unlock(&sdp->sd_reclaim_lock);
  1362. atomic_dec(&sdp->sd_reclaim_count);
  1363. atomic_inc(&sdp->sd_reclaimed);
  1364. if (gfs2_glmutex_trylock(gl)) {
  1365. if (list_empty(&gl->gl_holders) &&
  1366. gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
  1367. handle_callback(gl, LM_ST_UNLOCKED, 0, 0);
  1368. gfs2_glmutex_unlock(gl);
  1369. }
  1370. gfs2_glock_put(gl);
  1371. }
  1372. /**
  1373. * examine_bucket - Call a function for glock in a hash bucket
  1374. * @examiner: the function
  1375. * @sdp: the filesystem
  1376. * @bucket: the bucket
  1377. *
  1378. * Returns: 1 if the bucket has entries
  1379. */
  1380. static int examine_bucket(glock_examiner examiner, struct gfs2_sbd *sdp,
  1381. unsigned int hash)
  1382. {
  1383. struct gfs2_glock *gl, *prev = NULL;
  1384. int has_entries = 0;
  1385. struct hlist_head *head = &gl_hash_table[hash].hb_list;
  1386. read_lock(gl_lock_addr(hash));
  1387. /* Can't use hlist_for_each_entry - don't want prefetch here */
  1388. if (hlist_empty(head))
  1389. goto out;
  1390. gl = list_entry(head->first, struct gfs2_glock, gl_list);
  1391. while(1) {
  1392. if (!sdp || gl->gl_sbd == sdp) {
  1393. gfs2_glock_hold(gl);
  1394. read_unlock(gl_lock_addr(hash));
  1395. if (prev)
  1396. gfs2_glock_put(prev);
  1397. prev = gl;
  1398. examiner(gl);
  1399. has_entries = 1;
  1400. read_lock(gl_lock_addr(hash));
  1401. }
  1402. if (gl->gl_list.next == NULL)
  1403. break;
  1404. gl = list_entry(gl->gl_list.next, struct gfs2_glock, gl_list);
  1405. }
  1406. out:
  1407. read_unlock(gl_lock_addr(hash));
  1408. if (prev)
  1409. gfs2_glock_put(prev);
  1410. cond_resched();
  1411. return has_entries;
  1412. }
  1413. /**
  1414. * scan_glock - look at a glock and see if we can reclaim it
  1415. * @gl: the glock to look at
  1416. *
  1417. */
  1418. static void scan_glock(struct gfs2_glock *gl)
  1419. {
  1420. if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object)
  1421. return;
  1422. if (gfs2_glmutex_trylock(gl)) {
  1423. if (list_empty(&gl->gl_holders) &&
  1424. gl->gl_state != LM_ST_UNLOCKED && demote_ok(gl))
  1425. goto out_schedule;
  1426. gfs2_glmutex_unlock(gl);
  1427. }
  1428. return;
  1429. out_schedule:
  1430. gfs2_glmutex_unlock(gl);
  1431. gfs2_glock_schedule_for_reclaim(gl);
  1432. }
  1433. /**
  1434. * clear_glock - look at a glock and see if we can free it from glock cache
  1435. * @gl: the glock to look at
  1436. *
  1437. */
  1438. static void clear_glock(struct gfs2_glock *gl)
  1439. {
  1440. struct gfs2_sbd *sdp = gl->gl_sbd;
  1441. int released;
  1442. spin_lock(&sdp->sd_reclaim_lock);
  1443. if (!list_empty(&gl->gl_reclaim)) {
  1444. list_del_init(&gl->gl_reclaim);
  1445. atomic_dec(&sdp->sd_reclaim_count);
  1446. spin_unlock(&sdp->sd_reclaim_lock);
  1447. released = gfs2_glock_put(gl);
  1448. gfs2_assert(sdp, !released);
  1449. } else {
  1450. spin_unlock(&sdp->sd_reclaim_lock);
  1451. }
  1452. if (gfs2_glmutex_trylock(gl)) {
  1453. if (list_empty(&gl->gl_holders) &&
  1454. gl->gl_state != LM_ST_UNLOCKED)
  1455. handle_callback(gl, LM_ST_UNLOCKED, 0, 0);
  1456. gfs2_glmutex_unlock(gl);
  1457. }
  1458. }
  1459. /**
  1460. * gfs2_gl_hash_clear - Empty out the glock hash table
  1461. * @sdp: the filesystem
  1462. * @wait: wait until it's all gone
  1463. *
  1464. * Called when unmounting the filesystem, or when inter-node lock manager
  1465. * requests DROPLOCKS because it is running out of capacity.
  1466. */
  1467. void gfs2_gl_hash_clear(struct gfs2_sbd *sdp, int wait)
  1468. {
  1469. unsigned long t;
  1470. unsigned int x;
  1471. int cont;
  1472. t = jiffies;
  1473. for (;;) {
  1474. cont = 0;
  1475. for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
  1476. if (examine_bucket(clear_glock, sdp, x))
  1477. cont = 1;
  1478. }
  1479. if (!wait || !cont)
  1480. break;
  1481. if (time_after_eq(jiffies,
  1482. t + gfs2_tune_get(sdp, gt_stall_secs) * HZ)) {
  1483. fs_warn(sdp, "Unmount seems to be stalled. "
  1484. "Dumping lock state...\n");
  1485. gfs2_dump_lockstate(sdp);
  1486. t = jiffies;
  1487. }
  1488. down_write(&gfs2_umount_flush_sem);
  1489. invalidate_inodes(sdp->sd_vfs);
  1490. up_write(&gfs2_umount_flush_sem);
  1491. msleep(10);
  1492. }
  1493. }
  1494. /*
  1495. * Diagnostic routines to help debug distributed deadlock
  1496. */
  1497. static void gfs2_print_symbol(struct glock_iter *gi, const char *fmt,
  1498. unsigned long address)
  1499. {
  1500. char buffer[KSYM_SYMBOL_LEN];
  1501. sprint_symbol(buffer, address);
  1502. print_dbg(gi, fmt, buffer);
  1503. }
  1504. /**
  1505. * dump_holder - print information about a glock holder
  1506. * @str: a string naming the type of holder
  1507. * @gh: the glock holder
  1508. *
  1509. * Returns: 0 on success, -ENOBUFS when we run out of space
  1510. */
  1511. static int dump_holder(struct glock_iter *gi, char *str,
  1512. struct gfs2_holder *gh)
  1513. {
  1514. unsigned int x;
  1515. struct task_struct *gh_owner;
  1516. print_dbg(gi, " %s\n", str);
  1517. if (gh->gh_owner_pid) {
  1518. print_dbg(gi, " owner = %ld ",
  1519. (long)pid_nr(gh->gh_owner_pid));
  1520. gh_owner = pid_task(gh->gh_owner_pid, PIDTYPE_PID);
  1521. if (gh_owner)
  1522. print_dbg(gi, "(%s)\n", gh_owner->comm);
  1523. else
  1524. print_dbg(gi, "(ended)\n");
  1525. } else
  1526. print_dbg(gi, " owner = -1\n");
  1527. print_dbg(gi, " gh_state = %u\n", gh->gh_state);
  1528. print_dbg(gi, " gh_flags =");
  1529. for (x = 0; x < 32; x++)
  1530. if (gh->gh_flags & (1 << x))
  1531. print_dbg(gi, " %u", x);
  1532. print_dbg(gi, " \n");
  1533. print_dbg(gi, " error = %d\n", gh->gh_error);
  1534. print_dbg(gi, " gh_iflags =");
  1535. for (x = 0; x < 32; x++)
  1536. if (test_bit(x, &gh->gh_iflags))
  1537. print_dbg(gi, " %u", x);
  1538. print_dbg(gi, " \n");
  1539. gfs2_print_symbol(gi, " initialized at: %s\n", gh->gh_ip);
  1540. return 0;
  1541. }
  1542. /**
  1543. * dump_inode - print information about an inode
  1544. * @ip: the inode
  1545. *
  1546. * Returns: 0 on success, -ENOBUFS when we run out of space
  1547. */
  1548. static int dump_inode(struct glock_iter *gi, struct gfs2_inode *ip)
  1549. {
  1550. unsigned int x;
  1551. print_dbg(gi, " Inode:\n");
  1552. print_dbg(gi, " num = %llu/%llu\n",
  1553. (unsigned long long)ip->i_no_formal_ino,
  1554. (unsigned long long)ip->i_no_addr);
  1555. print_dbg(gi, " type = %u\n", IF2DT(ip->i_inode.i_mode));
  1556. print_dbg(gi, " i_flags =");
  1557. for (x = 0; x < 32; x++)
  1558. if (test_bit(x, &ip->i_flags))
  1559. print_dbg(gi, " %u", x);
  1560. print_dbg(gi, " \n");
  1561. return 0;
  1562. }
  1563. /**
  1564. * dump_glock - print information about a glock
  1565. * @gl: the glock
  1566. * @count: where we are in the buffer
  1567. *
  1568. * Returns: 0 on success, -ENOBUFS when we run out of space
  1569. */
  1570. static int dump_glock(struct glock_iter *gi, struct gfs2_glock *gl)
  1571. {
  1572. struct gfs2_holder *gh;
  1573. unsigned int x;
  1574. int error = -ENOBUFS;
  1575. struct task_struct *gl_owner;
  1576. spin_lock(&gl->gl_spin);
  1577. print_dbg(gi, "Glock 0x%p (%u, 0x%llx)\n", gl, gl->gl_name.ln_type,
  1578. (unsigned long long)gl->gl_name.ln_number);
  1579. print_dbg(gi, " gl_flags =");
  1580. for (x = 0; x < 32; x++) {
  1581. if (test_bit(x, &gl->gl_flags))
  1582. print_dbg(gi, " %u", x);
  1583. }
  1584. if (!test_bit(GLF_LOCK, &gl->gl_flags))
  1585. print_dbg(gi, " (unlocked)");
  1586. print_dbg(gi, " \n");
  1587. print_dbg(gi, " gl_ref = %d\n", atomic_read(&gl->gl_ref));
  1588. print_dbg(gi, " gl_state = %u\n", gl->gl_state);
  1589. if (gl->gl_owner_pid) {
  1590. gl_owner = find_task_by_pid(gl->gl_owner_pid);
  1591. if (gl_owner)
  1592. print_dbg(gi, " gl_owner = pid %d (%s)\n",
  1593. gl->gl_owner_pid, gl_owner->comm);
  1594. else
  1595. print_dbg(gi, " gl_owner = %d (ended)\n",
  1596. gl->gl_owner_pid);
  1597. } else
  1598. print_dbg(gi, " gl_owner = -1\n");
  1599. print_dbg(gi, " gl_ip = %lu\n", gl->gl_ip);
  1600. print_dbg(gi, " req_gh = %s\n", (gl->gl_req_gh) ? "yes" : "no");
  1601. print_dbg(gi, " req_bh = %s\n", (gl->gl_req_bh) ? "yes" : "no");
  1602. print_dbg(gi, " lvb_count = %d\n", atomic_read(&gl->gl_lvb_count));
  1603. print_dbg(gi, " object = %s\n", (gl->gl_object) ? "yes" : "no");
  1604. print_dbg(gi, " reclaim = %s\n",
  1605. (list_empty(&gl->gl_reclaim)) ? "no" : "yes");
  1606. if (gl->gl_aspace)
  1607. print_dbg(gi, " aspace = 0x%p nrpages = %lu\n", gl->gl_aspace,
  1608. gl->gl_aspace->i_mapping->nrpages);
  1609. else
  1610. print_dbg(gi, " aspace = no\n");
  1611. print_dbg(gi, " ail = %d\n", atomic_read(&gl->gl_ail_count));
  1612. if (gl->gl_req_gh) {
  1613. error = dump_holder(gi, "Request", gl->gl_req_gh);
  1614. if (error)
  1615. goto out;
  1616. }
  1617. list_for_each_entry(gh, &gl->gl_holders, gh_list) {
  1618. error = dump_holder(gi, "Holder", gh);
  1619. if (error)
  1620. goto out;
  1621. }
  1622. list_for_each_entry(gh, &gl->gl_waiters1, gh_list) {
  1623. error = dump_holder(gi, "Waiter1", gh);
  1624. if (error)
  1625. goto out;
  1626. }
  1627. list_for_each_entry(gh, &gl->gl_waiters3, gh_list) {
  1628. error = dump_holder(gi, "Waiter3", gh);
  1629. if (error)
  1630. goto out;
  1631. }
  1632. if (test_bit(GLF_DEMOTE, &gl->gl_flags)) {
  1633. print_dbg(gi, " Demotion req to state %u (%llu uS ago)\n",
  1634. gl->gl_demote_state, (unsigned long long)
  1635. (jiffies - gl->gl_demote_time)*(1000000/HZ));
  1636. }
  1637. if (gl->gl_ops == &gfs2_inode_glops && gl->gl_object) {
  1638. if (!test_bit(GLF_LOCK, &gl->gl_flags) &&
  1639. list_empty(&gl->gl_holders)) {
  1640. error = dump_inode(gi, gl->gl_object);
  1641. if (error)
  1642. goto out;
  1643. } else {
  1644. error = -ENOBUFS;
  1645. print_dbg(gi, " Inode: busy\n");
  1646. }
  1647. }
  1648. error = 0;
  1649. out:
  1650. spin_unlock(&gl->gl_spin);
  1651. return error;
  1652. }
  1653. /**
  1654. * gfs2_dump_lockstate - print out the current lockstate
  1655. * @sdp: the filesystem
  1656. * @ub: the buffer to copy the information into
  1657. *
  1658. * If @ub is NULL, dump the lockstate to the console.
  1659. *
  1660. */
  1661. static int gfs2_dump_lockstate(struct gfs2_sbd *sdp)
  1662. {
  1663. struct gfs2_glock *gl;
  1664. struct hlist_node *h;
  1665. unsigned int x;
  1666. int error = 0;
  1667. for (x = 0; x < GFS2_GL_HASH_SIZE; x++) {
  1668. read_lock(gl_lock_addr(x));
  1669. hlist_for_each_entry(gl, h, &gl_hash_table[x].hb_list, gl_list) {
  1670. if (gl->gl_sbd != sdp)
  1671. continue;
  1672. error = dump_glock(NULL, gl);
  1673. if (error)
  1674. break;
  1675. }
  1676. read_unlock(gl_lock_addr(x));
  1677. if (error)
  1678. break;
  1679. }
  1680. return error;
  1681. }
  1682. /**
  1683. * gfs2_scand - Look for cached glocks and inodes to toss from memory
  1684. * @sdp: Pointer to GFS2 superblock
  1685. *
  1686. * One of these daemons runs, finding candidates to add to sd_reclaim_list.
  1687. * See gfs2_glockd()
  1688. */
  1689. static int gfs2_scand(void *data)
  1690. {
  1691. unsigned x;
  1692. unsigned delay;
  1693. while (!kthread_should_stop()) {
  1694. for (x = 0; x < GFS2_GL_HASH_SIZE; x++)
  1695. examine_bucket(scan_glock, NULL, x);
  1696. if (freezing(current))
  1697. refrigerator();
  1698. delay = scand_secs;
  1699. if (delay < 1)
  1700. delay = 1;
  1701. schedule_timeout_interruptible(delay * HZ);
  1702. }
  1703. return 0;
  1704. }
  1705. int __init gfs2_glock_init(void)
  1706. {
  1707. unsigned i;
  1708. for(i = 0; i < GFS2_GL_HASH_SIZE; i++) {
  1709. INIT_HLIST_HEAD(&gl_hash_table[i].hb_list);
  1710. }
  1711. #ifdef GL_HASH_LOCK_SZ
  1712. for(i = 0; i < GL_HASH_LOCK_SZ; i++) {
  1713. rwlock_init(&gl_hash_locks[i]);
  1714. }
  1715. #endif
  1716. scand_process = kthread_run(gfs2_scand, NULL, "gfs2_scand");
  1717. if (IS_ERR(scand_process))
  1718. return PTR_ERR(scand_process);
  1719. glock_workqueue = create_workqueue("glock_workqueue");
  1720. if (IS_ERR(glock_workqueue)) {
  1721. kthread_stop(scand_process);
  1722. return PTR_ERR(glock_workqueue);
  1723. }
  1724. return 0;
  1725. }
  1726. void gfs2_glock_exit(void)
  1727. {
  1728. destroy_workqueue(glock_workqueue);
  1729. kthread_stop(scand_process);
  1730. }
  1731. module_param(scand_secs, uint, S_IRUGO|S_IWUSR);
  1732. MODULE_PARM_DESC(scand_secs, "The number of seconds between scand runs");
  1733. static int gfs2_glock_iter_next(struct glock_iter *gi)
  1734. {
  1735. struct gfs2_glock *gl;
  1736. restart:
  1737. read_lock(gl_lock_addr(gi->hash));
  1738. gl = gi->gl;
  1739. if (gl) {
  1740. gi->gl = hlist_entry(gl->gl_list.next,
  1741. struct gfs2_glock, gl_list);
  1742. if (gi->gl)
  1743. gfs2_glock_hold(gi->gl);
  1744. }
  1745. read_unlock(gl_lock_addr(gi->hash));
  1746. if (gl)
  1747. gfs2_glock_put(gl);
  1748. if (gl && gi->gl == NULL)
  1749. gi->hash++;
  1750. while(gi->gl == NULL) {
  1751. if (gi->hash >= GFS2_GL_HASH_SIZE)
  1752. return 1;
  1753. read_lock(gl_lock_addr(gi->hash));
  1754. gi->gl = hlist_entry(gl_hash_table[gi->hash].hb_list.first,
  1755. struct gfs2_glock, gl_list);
  1756. if (gi->gl)
  1757. gfs2_glock_hold(gi->gl);
  1758. read_unlock(gl_lock_addr(gi->hash));
  1759. gi->hash++;
  1760. }
  1761. if (gi->sdp != gi->gl->gl_sbd)
  1762. goto restart;
  1763. return 0;
  1764. }
  1765. static void gfs2_glock_iter_free(struct glock_iter *gi)
  1766. {
  1767. if (gi->gl)
  1768. gfs2_glock_put(gi->gl);
  1769. kfree(gi);
  1770. }
  1771. static struct glock_iter *gfs2_glock_iter_init(struct gfs2_sbd *sdp)
  1772. {
  1773. struct glock_iter *gi;
  1774. gi = kmalloc(sizeof (*gi), GFP_KERNEL);
  1775. if (!gi)
  1776. return NULL;
  1777. gi->sdp = sdp;
  1778. gi->hash = 0;
  1779. gi->seq = NULL;
  1780. gi->gl = NULL;
  1781. memset(gi->string, 0, sizeof(gi->string));
  1782. if (gfs2_glock_iter_next(gi)) {
  1783. gfs2_glock_iter_free(gi);
  1784. return NULL;
  1785. }
  1786. return gi;
  1787. }
  1788. static void *gfs2_glock_seq_start(struct seq_file *file, loff_t *pos)
  1789. {
  1790. struct glock_iter *gi;
  1791. loff_t n = *pos;
  1792. gi = gfs2_glock_iter_init(file->private);
  1793. if (!gi)
  1794. return NULL;
  1795. while(n--) {
  1796. if (gfs2_glock_iter_next(gi)) {
  1797. gfs2_glock_iter_free(gi);
  1798. return NULL;
  1799. }
  1800. }
  1801. return gi;
  1802. }
  1803. static void *gfs2_glock_seq_next(struct seq_file *file, void *iter_ptr,
  1804. loff_t *pos)
  1805. {
  1806. struct glock_iter *gi = iter_ptr;
  1807. (*pos)++;
  1808. if (gfs2_glock_iter_next(gi)) {
  1809. gfs2_glock_iter_free(gi);
  1810. return NULL;
  1811. }
  1812. return gi;
  1813. }
  1814. static void gfs2_glock_seq_stop(struct seq_file *file, void *iter_ptr)
  1815. {
  1816. struct glock_iter *gi = iter_ptr;
  1817. if (gi)
  1818. gfs2_glock_iter_free(gi);
  1819. }
  1820. static int gfs2_glock_seq_show(struct seq_file *file, void *iter_ptr)
  1821. {
  1822. struct glock_iter *gi = iter_ptr;
  1823. gi->seq = file;
  1824. dump_glock(gi, gi->gl);
  1825. return 0;
  1826. }
  1827. static const struct seq_operations gfs2_glock_seq_ops = {
  1828. .start = gfs2_glock_seq_start,
  1829. .next = gfs2_glock_seq_next,
  1830. .stop = gfs2_glock_seq_stop,
  1831. .show = gfs2_glock_seq_show,
  1832. };
  1833. static int gfs2_debugfs_open(struct inode *inode, struct file *file)
  1834. {
  1835. struct seq_file *seq;
  1836. int ret;
  1837. ret = seq_open(file, &gfs2_glock_seq_ops);
  1838. if (ret)
  1839. return ret;
  1840. seq = file->private_data;
  1841. seq->private = inode->i_private;
  1842. return 0;
  1843. }
  1844. static const struct file_operations gfs2_debug_fops = {
  1845. .owner = THIS_MODULE,
  1846. .open = gfs2_debugfs_open,
  1847. .read = seq_read,
  1848. .llseek = seq_lseek,
  1849. .release = seq_release
  1850. };
  1851. int gfs2_create_debugfs_file(struct gfs2_sbd *sdp)
  1852. {
  1853. sdp->debugfs_dir = debugfs_create_dir(sdp->sd_table_name, gfs2_root);
  1854. if (!sdp->debugfs_dir)
  1855. return -ENOMEM;
  1856. sdp->debugfs_dentry_glocks = debugfs_create_file("glocks",
  1857. S_IFREG | S_IRUGO,
  1858. sdp->debugfs_dir, sdp,
  1859. &gfs2_debug_fops);
  1860. if (!sdp->debugfs_dentry_glocks)
  1861. return -ENOMEM;
  1862. return 0;
  1863. }
  1864. void gfs2_delete_debugfs_file(struct gfs2_sbd *sdp)
  1865. {
  1866. if (sdp && sdp->debugfs_dir) {
  1867. if (sdp->debugfs_dentry_glocks) {
  1868. debugfs_remove(sdp->debugfs_dentry_glocks);
  1869. sdp->debugfs_dentry_glocks = NULL;
  1870. }
  1871. debugfs_remove(sdp->debugfs_dir);
  1872. sdp->debugfs_dir = NULL;
  1873. }
  1874. }
  1875. int gfs2_register_debugfs(void)
  1876. {
  1877. gfs2_root = debugfs_create_dir("gfs2", NULL);
  1878. return gfs2_root ? 0 : -ENOMEM;
  1879. }
  1880. void gfs2_unregister_debugfs(void)
  1881. {
  1882. debugfs_remove(gfs2_root);
  1883. gfs2_root = NULL;
  1884. }