incore.h 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  4. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
  5. */
  6. #ifndef __INCORE_DOT_H__
  7. #define __INCORE_DOT_H__
  8. #include <linux/fs.h>
  9. #include <linux/kobject.h>
  10. #include <linux/workqueue.h>
  11. #include <linux/dlm.h>
  12. #include <linux/buffer_head.h>
  13. #include <linux/rcupdate.h>
  14. #include <linux/rculist_bl.h>
  15. #include <linux/completion.h>
  16. #include <linux/rbtree.h>
  17. #include <linux/ktime.h>
  18. #include <linux/percpu.h>
  19. #include <linux/lockref.h>
  20. #include <linux/rhashtable.h>
  21. #include <linux/mutex.h>
  22. #define DIO_WAIT 0x00000010
  23. #define DIO_METADATA 0x00000020
  24. struct gfs2_log_operations;
  25. struct gfs2_bufdata;
  26. struct gfs2_holder;
  27. struct gfs2_glock;
  28. struct gfs2_quota_data;
  29. struct gfs2_trans;
  30. struct gfs2_jdesc;
  31. struct gfs2_sbd;
  32. struct lm_lockops;
  33. typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret);
  34. struct gfs2_log_header_host {
  35. u64 lh_sequence; /* Sequence number of this transaction */
  36. u32 lh_flags; /* GFS2_LOG_HEAD_... */
  37. u32 lh_tail; /* Block number of log tail */
  38. u32 lh_blkno;
  39. s64 lh_local_total;
  40. s64 lh_local_free;
  41. s64 lh_local_dinodes;
  42. };
  43. /*
  44. * Structure of operations that are associated with each
  45. * type of element in the log.
  46. */
  47. struct gfs2_log_operations {
  48. void (*lo_before_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
  49. void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
  50. void (*lo_before_scan) (struct gfs2_jdesc *jd,
  51. struct gfs2_log_header_host *head, int pass);
  52. int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start,
  53. struct gfs2_log_descriptor *ld, __be64 *ptr,
  54. int pass);
  55. void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
  56. const char *lo_name;
  57. };
  58. #define GBF_FULL 1
  59. /**
  60. * Clone bitmaps (bi_clone):
  61. *
  62. * - When a block is freed, we remember the previous state of the block in the
  63. * clone bitmap, and only mark the block as free in the real bitmap.
  64. *
  65. * - When looking for a block to allocate, we check for a free block in the
  66. * clone bitmap, and if no clone bitmap exists, in the real bitmap.
  67. *
  68. * - For allocating a block, we mark it as allocated in the real bitmap, and if
  69. * a clone bitmap exists, also in the clone bitmap.
  70. *
  71. * - At the end of a log_flush, we copy the real bitmap into the clone bitmap
  72. * to make the clone bitmap reflect the current allocation state.
  73. * (Alternatively, we could remove the clone bitmap.)
  74. *
  75. * The clone bitmaps are in-core only, and is never written to disk.
  76. *
  77. * These steps ensure that blocks which have been freed in a transaction cannot
  78. * be reallocated in that same transaction.
  79. */
  80. struct gfs2_bitmap {
  81. struct buffer_head *bi_bh;
  82. char *bi_clone;
  83. unsigned long bi_flags;
  84. u32 bi_offset;
  85. u32 bi_start;
  86. u32 bi_bytes;
  87. u32 bi_blocks;
  88. };
  89. struct gfs2_rgrpd {
  90. struct rb_node rd_node; /* Link with superblock */
  91. struct gfs2_glock *rd_gl; /* Glock for this rgrp */
  92. u64 rd_addr; /* grp block disk address */
  93. u64 rd_data0; /* first data location */
  94. u32 rd_length; /* length of rgrp header in fs blocks */
  95. u32 rd_data; /* num of data blocks in rgrp */
  96. u32 rd_bitbytes; /* number of bytes in data bitmaps */
  97. u32 rd_free;
  98. u32 rd_requested; /* number of blocks in rd_rstree */
  99. u32 rd_reserved; /* number of reserved blocks */
  100. u32 rd_free_clone;
  101. u32 rd_dinodes;
  102. u64 rd_igeneration;
  103. struct gfs2_bitmap *rd_bits;
  104. struct gfs2_sbd *rd_sbd;
  105. struct gfs2_rgrp_lvb *rd_rgl;
  106. u32 rd_last_alloc;
  107. u32 rd_flags;
  108. u32 rd_extfail_pt; /* extent failure point */
  109. #define GFS2_RDF_CHECK 0x10000000 /* check for unlinked inodes */
  110. #define GFS2_RDF_ERROR 0x40000000 /* error in rg */
  111. #define GFS2_RDF_PREFERRED 0x80000000 /* This rgrp is preferred */
  112. #define GFS2_RDF_MASK 0xf0000000 /* mask for internal flags */
  113. spinlock_t rd_rsspin; /* protects reservation related vars */
  114. struct mutex rd_mutex;
  115. struct rb_root rd_rstree; /* multi-block reservation tree */
  116. };
  117. enum gfs2_state_bits {
  118. BH_Pinned = BH_PrivateStart,
  119. BH_Escaped = BH_PrivateStart + 1,
  120. };
  121. BUFFER_FNS(Pinned, pinned)
  122. TAS_BUFFER_FNS(Pinned, pinned)
  123. BUFFER_FNS(Escaped, escaped)
  124. TAS_BUFFER_FNS(Escaped, escaped)
  125. struct gfs2_bufdata {
  126. struct buffer_head *bd_bh;
  127. struct gfs2_glock *bd_gl;
  128. u64 bd_blkno;
  129. struct list_head bd_list;
  130. struct gfs2_trans *bd_tr;
  131. struct list_head bd_ail_st_list;
  132. struct list_head bd_ail_gl_list;
  133. };
  134. /*
  135. * Internally, we prefix things with gdlm_ and GDLM_ (for gfs-dlm) since a
  136. * prefix of lock_dlm_ gets awkward.
  137. */
  138. #define GDLM_STRNAME_BYTES 25
  139. #define GDLM_LVB_SIZE 32
  140. /*
  141. * ls_recover_flags:
  142. *
  143. * DFL_BLOCK_LOCKS: dlm is in recovery and will grant locks that had been
  144. * held by failed nodes whose journals need recovery. Those locks should
  145. * only be used for journal recovery until the journal recovery is done.
  146. * This is set by the dlm recover_prep callback and cleared by the
  147. * gfs2_control thread when journal recovery is complete. To avoid
  148. * races between recover_prep setting and gfs2_control clearing, recover_spin
  149. * is held while changing this bit and reading/writing recover_block
  150. * and recover_start.
  151. *
  152. * DFL_NO_DLM_OPS: dlm lockspace ops/callbacks are not being used.
  153. *
  154. * DFL_FIRST_MOUNT: this node is the first to mount this fs and is doing
  155. * recovery of all journals before allowing other nodes to mount the fs.
  156. * This is cleared when FIRST_MOUNT_DONE is set.
  157. *
  158. * DFL_FIRST_MOUNT_DONE: this node was the first mounter, and has finished
  159. * recovery of all journals, and now allows other nodes to mount the fs.
  160. *
  161. * DFL_MOUNT_DONE: gdlm_mount has completed successfully and cleared
  162. * BLOCK_LOCKS for the first time. The gfs2_control thread should now
  163. * control clearing BLOCK_LOCKS for further recoveries.
  164. *
  165. * DFL_UNMOUNT: gdlm_unmount sets to keep sdp off gfs2_control_wq.
  166. *
  167. * DFL_DLM_RECOVERY: set while dlm is in recovery, between recover_prep()
  168. * and recover_done(), i.e. set while recover_block == recover_start.
  169. */
  170. enum {
  171. DFL_BLOCK_LOCKS = 0,
  172. DFL_NO_DLM_OPS = 1,
  173. DFL_FIRST_MOUNT = 2,
  174. DFL_FIRST_MOUNT_DONE = 3,
  175. DFL_MOUNT_DONE = 4,
  176. DFL_UNMOUNT = 5,
  177. DFL_DLM_RECOVERY = 6,
  178. };
  179. /*
  180. * We are using struct lm_lockname as an rhashtable key. Avoid holes within
  181. * the struct; padding at the end is fine.
  182. */
  183. struct lm_lockname {
  184. u64 ln_number;
  185. struct gfs2_sbd *ln_sbd;
  186. unsigned int ln_type;
  187. };
  188. #define lm_name_equal(name1, name2) \
  189. (((name1)->ln_number == (name2)->ln_number) && \
  190. ((name1)->ln_type == (name2)->ln_type) && \
  191. ((name1)->ln_sbd == (name2)->ln_sbd))
  192. struct gfs2_glock_operations {
  193. int (*go_sync) (struct gfs2_glock *gl);
  194. int (*go_xmote_bh)(struct gfs2_glock *gl);
  195. void (*go_inval) (struct gfs2_glock *gl, int flags);
  196. int (*go_demote_ok) (const struct gfs2_glock *gl);
  197. int (*go_instantiate) (struct gfs2_glock *gl);
  198. int (*go_held)(struct gfs2_holder *gh);
  199. void (*go_dump)(struct seq_file *seq, struct gfs2_glock *gl,
  200. const char *fs_id_buf);
  201. void (*go_callback)(struct gfs2_glock *gl, bool remote);
  202. void (*go_free)(struct gfs2_glock *gl);
  203. const int go_subclass;
  204. const int go_type;
  205. const unsigned long go_flags;
  206. #define GLOF_ASPACE 1 /* address space attached */
  207. #define GLOF_LVB 2 /* Lock Value Block attached */
  208. #define GLOF_LRU 4 /* LRU managed */
  209. #define GLOF_NONDISK 8 /* not I/O related */
  210. };
  211. enum {
  212. GFS2_LKS_SRTT = 0, /* Non blocking smoothed round trip time */
  213. GFS2_LKS_SRTTVAR = 1, /* Non blocking smoothed variance */
  214. GFS2_LKS_SRTTB = 2, /* Blocking smoothed round trip time */
  215. GFS2_LKS_SRTTVARB = 3, /* Blocking smoothed variance */
  216. GFS2_LKS_SIRT = 4, /* Smoothed Inter-request time */
  217. GFS2_LKS_SIRTVAR = 5, /* Smoothed Inter-request variance */
  218. GFS2_LKS_DCOUNT = 6, /* Count of dlm requests */
  219. GFS2_LKS_QCOUNT = 7, /* Count of gfs2_holder queues */
  220. GFS2_NR_LKSTATS
  221. };
  222. struct gfs2_lkstats {
  223. u64 stats[GFS2_NR_LKSTATS];
  224. };
  225. enum {
  226. /* States */
  227. HIF_MAY_DEMOTE = 1,
  228. HIF_HOLDER = 6, /* Set for gh that "holds" the glock */
  229. HIF_WAIT = 10,
  230. };
  231. struct gfs2_holder {
  232. struct list_head gh_list;
  233. struct gfs2_glock *gh_gl;
  234. struct pid *gh_owner_pid;
  235. u16 gh_flags;
  236. u16 gh_state;
  237. int gh_error;
  238. unsigned long gh_iflags; /* HIF_... */
  239. unsigned long gh_ip;
  240. };
  241. /* Number of quota types we support */
  242. #define GFS2_MAXQUOTAS 2
  243. struct gfs2_qadata { /* quota allocation data */
  244. /* Quota stuff */
  245. struct gfs2_quota_data *qa_qd[2 * GFS2_MAXQUOTAS];
  246. struct gfs2_holder qa_qd_ghs[2 * GFS2_MAXQUOTAS];
  247. unsigned int qa_qd_num;
  248. int qa_ref;
  249. };
  250. /* Resource group multi-block reservation, in order of appearance:
  251. Step 1. Function prepares to write, allocates a mb, sets the size hint.
  252. Step 2. User calls inplace_reserve to target an rgrp, sets the rgrp info
  253. Step 3. Function get_local_rgrp locks the rgrp, determines which bits to use
  254. Step 4. Bits are assigned from the rgrp based on either the reservation
  255. or wherever it can.
  256. */
  257. struct gfs2_blkreserv {
  258. struct rb_node rs_node; /* node within rd_rstree */
  259. struct gfs2_rgrpd *rs_rgd;
  260. u64 rs_start;
  261. u32 rs_requested;
  262. u32 rs_reserved; /* number of reserved blocks */
  263. };
  264. /*
  265. * Allocation parameters
  266. * @target: The number of blocks we'd ideally like to allocate
  267. * @aflags: The flags (e.g. Orlov flag)
  268. *
  269. * The intent is to gradually expand this structure over time in
  270. * order to give more information, e.g. alignment, min extent size
  271. * to the allocation code.
  272. */
  273. struct gfs2_alloc_parms {
  274. u64 target;
  275. u32 min_target;
  276. u32 aflags;
  277. u64 allowed;
  278. };
  279. enum {
  280. GLF_LOCK = 1,
  281. GLF_INSTANTIATE_NEEDED = 2, /* needs instantiate */
  282. GLF_DEMOTE = 3,
  283. GLF_PENDING_DEMOTE = 4,
  284. GLF_DEMOTE_IN_PROGRESS = 5,
  285. GLF_DIRTY = 6,
  286. GLF_LFLUSH = 7,
  287. GLF_INVALIDATE_IN_PROGRESS = 8,
  288. GLF_REPLY_PENDING = 9,
  289. GLF_INITIAL = 10,
  290. GLF_FROZEN = 11,
  291. GLF_INSTANTIATE_IN_PROG = 12, /* instantiate happening now */
  292. GLF_LRU = 13,
  293. GLF_OBJECT = 14, /* Used only for tracing */
  294. GLF_BLOCKING = 15,
  295. GLF_PENDING_DELETE = 17,
  296. GLF_FREEING = 18, /* Wait for glock to be freed */
  297. };
  298. struct gfs2_glock {
  299. unsigned long gl_flags; /* GLF_... */
  300. struct lm_lockname gl_name;
  301. struct lockref gl_lockref;
  302. /* State fields protected by gl_lockref.lock */
  303. unsigned int gl_state:2, /* Current state */
  304. gl_target:2, /* Target state */
  305. gl_demote_state:2, /* State requested by remote node */
  306. gl_req:2, /* State in last dlm request */
  307. gl_reply:8; /* Last reply from the dlm */
  308. unsigned long gl_demote_time; /* time of first demote request */
  309. long gl_hold_time;
  310. struct list_head gl_holders;
  311. const struct gfs2_glock_operations *gl_ops;
  312. ktime_t gl_dstamp;
  313. struct gfs2_lkstats gl_stats;
  314. struct dlm_lksb gl_lksb;
  315. unsigned long gl_tchange;
  316. void *gl_object;
  317. struct list_head gl_lru;
  318. struct list_head gl_ail_list;
  319. atomic_t gl_ail_count;
  320. atomic_t gl_revokes;
  321. struct delayed_work gl_work;
  322. /* For iopen glocks only */
  323. struct {
  324. struct delayed_work gl_delete;
  325. u64 gl_no_formal_ino;
  326. };
  327. struct rcu_head gl_rcu;
  328. struct rhash_head gl_node;
  329. };
  330. enum {
  331. GIF_QD_LOCKED = 1,
  332. GIF_ALLOC_FAILED = 2,
  333. GIF_SW_PAGED = 3,
  334. GIF_FREE_VFS_INODE = 5,
  335. GIF_GLOP_PENDING = 6,
  336. GIF_DEFERRED_DELETE = 7,
  337. };
  338. struct gfs2_inode {
  339. struct inode i_inode;
  340. u64 i_no_addr;
  341. u64 i_no_formal_ino;
  342. u64 i_generation;
  343. u64 i_eattr;
  344. unsigned long i_flags; /* GIF_... */
  345. struct gfs2_glock *i_gl;
  346. struct gfs2_holder i_iopen_gh;
  347. struct gfs2_qadata *i_qadata; /* quota allocation data */
  348. struct gfs2_holder i_rgd_gh;
  349. struct gfs2_blkreserv i_res; /* rgrp multi-block reservation */
  350. u64 i_goal; /* goal block for allocations */
  351. atomic_t i_sizehint; /* hint of the write size */
  352. struct rw_semaphore i_rw_mutex;
  353. struct list_head i_ordered;
  354. __be64 *i_hash_cache;
  355. u32 i_entries;
  356. u32 i_diskflags;
  357. u8 i_height;
  358. u8 i_depth;
  359. u16 i_rahead;
  360. };
  361. /*
  362. * Since i_inode is the first element of struct gfs2_inode,
  363. * this is effectively a cast.
  364. */
  365. static inline struct gfs2_inode *GFS2_I(struct inode *inode)
  366. {
  367. return container_of(inode, struct gfs2_inode, i_inode);
  368. }
  369. static inline struct gfs2_sbd *GFS2_SB(const struct inode *inode)
  370. {
  371. return inode->i_sb->s_fs_info;
  372. }
  373. struct gfs2_file {
  374. struct mutex f_fl_mutex;
  375. struct gfs2_holder f_fl_gh;
  376. };
  377. struct gfs2_revoke_replay {
  378. struct list_head rr_list;
  379. u64 rr_blkno;
  380. unsigned int rr_where;
  381. };
  382. enum {
  383. QDF_CHANGE = 1,
  384. QDF_LOCKED = 2,
  385. QDF_REFRESH = 3,
  386. QDF_QMSG_QUIET = 4,
  387. };
  388. struct gfs2_quota_data {
  389. struct hlist_bl_node qd_hlist;
  390. struct list_head qd_list;
  391. struct kqid qd_id;
  392. struct gfs2_sbd *qd_sbd;
  393. struct lockref qd_lockref;
  394. struct list_head qd_lru;
  395. unsigned qd_hash;
  396. unsigned long qd_flags; /* QDF_... */
  397. s64 qd_change;
  398. s64 qd_change_sync;
  399. unsigned int qd_slot;
  400. unsigned int qd_slot_count;
  401. struct buffer_head *qd_bh;
  402. struct gfs2_quota_change *qd_bh_qc;
  403. unsigned int qd_bh_count;
  404. struct gfs2_glock *qd_gl;
  405. struct gfs2_quota_lvb qd_qb;
  406. u64 qd_sync_gen;
  407. unsigned long qd_last_warn;
  408. struct rcu_head qd_rcu;
  409. };
  410. enum {
  411. TR_TOUCHED = 1,
  412. TR_ATTACHED = 2,
  413. TR_ONSTACK = 3,
  414. };
  415. struct gfs2_trans {
  416. unsigned long tr_ip;
  417. unsigned int tr_blocks;
  418. unsigned int tr_revokes;
  419. unsigned int tr_reserved;
  420. unsigned long tr_flags;
  421. unsigned int tr_num_buf_new;
  422. unsigned int tr_num_databuf_new;
  423. unsigned int tr_num_buf_rm;
  424. unsigned int tr_num_databuf_rm;
  425. unsigned int tr_num_revoke;
  426. struct list_head tr_list;
  427. struct list_head tr_databuf;
  428. struct list_head tr_buf;
  429. unsigned int tr_first;
  430. struct list_head tr_ail1_list;
  431. struct list_head tr_ail2_list;
  432. };
  433. struct gfs2_journal_extent {
  434. struct list_head list;
  435. unsigned int lblock; /* First logical block */
  436. u64 dblock; /* First disk block */
  437. u64 blocks;
  438. };
  439. struct gfs2_jdesc {
  440. struct list_head jd_list;
  441. struct list_head extent_list;
  442. unsigned int nr_extents;
  443. struct work_struct jd_work;
  444. struct inode *jd_inode;
  445. struct bio *jd_log_bio;
  446. unsigned long jd_flags;
  447. #define JDF_RECOVERY 1
  448. unsigned int jd_jid;
  449. u32 jd_blocks;
  450. int jd_recover_error;
  451. /* Replay stuff */
  452. unsigned int jd_found_blocks;
  453. unsigned int jd_found_revokes;
  454. unsigned int jd_replayed_blocks;
  455. struct list_head jd_revoke_list;
  456. unsigned int jd_replay_tail;
  457. u64 jd_no_addr;
  458. };
  459. struct gfs2_statfs_change_host {
  460. s64 sc_total;
  461. s64 sc_free;
  462. s64 sc_dinodes;
  463. };
  464. #define GFS2_QUOTA_DEFAULT GFS2_QUOTA_OFF
  465. #define GFS2_QUOTA_OFF 0
  466. #define GFS2_QUOTA_ACCOUNT 1
  467. #define GFS2_QUOTA_ON 2
  468. #define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED
  469. #define GFS2_DATA_WRITEBACK 1
  470. #define GFS2_DATA_ORDERED 2
  471. #define GFS2_ERRORS_DEFAULT GFS2_ERRORS_WITHDRAW
  472. #define GFS2_ERRORS_WITHDRAW 0
  473. #define GFS2_ERRORS_CONTINUE 1 /* place holder for future feature */
  474. #define GFS2_ERRORS_RO 2 /* place holder for future feature */
  475. #define GFS2_ERRORS_PANIC 3
  476. struct gfs2_args {
  477. char ar_lockproto[GFS2_LOCKNAME_LEN]; /* Name of the Lock Protocol */
  478. char ar_locktable[GFS2_LOCKNAME_LEN]; /* Name of the Lock Table */
  479. char ar_hostdata[GFS2_LOCKNAME_LEN]; /* Host specific data */
  480. unsigned int ar_spectator:1; /* Don't get a journal */
  481. unsigned int ar_localflocks:1; /* Let the VFS do flock|fcntl */
  482. unsigned int ar_debug:1; /* Oops on errors */
  483. unsigned int ar_posix_acl:1; /* Enable posix acls */
  484. unsigned int ar_quota:2; /* off/account/on */
  485. unsigned int ar_suiddir:1; /* suiddir support */
  486. unsigned int ar_data:2; /* ordered/writeback */
  487. unsigned int ar_meta:1; /* mount metafs */
  488. unsigned int ar_discard:1; /* discard requests */
  489. unsigned int ar_errors:2; /* errors=withdraw | panic */
  490. unsigned int ar_nobarrier:1; /* do not send barriers */
  491. unsigned int ar_rgrplvb:1; /* use lvbs for rgrp info */
  492. unsigned int ar_got_rgrplvb:1; /* Was the rgrplvb opt given? */
  493. unsigned int ar_loccookie:1; /* use location based readdir
  494. cookies */
  495. s32 ar_commit; /* Commit interval */
  496. s32 ar_statfs_quantum; /* The fast statfs interval */
  497. s32 ar_quota_quantum; /* The quota interval */
  498. s32 ar_statfs_percent; /* The % change to force sync */
  499. };
  500. struct gfs2_tune {
  501. spinlock_t gt_spin;
  502. unsigned int gt_logd_secs;
  503. unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */
  504. unsigned int gt_quota_scale_num; /* Numerator */
  505. unsigned int gt_quota_scale_den; /* Denominator */
  506. unsigned int gt_quota_quantum; /* Secs between syncs to quota file */
  507. unsigned int gt_new_files_jdata;
  508. unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */
  509. unsigned int gt_complain_secs;
  510. unsigned int gt_statfs_quantum;
  511. unsigned int gt_statfs_slow;
  512. };
  513. enum {
  514. SDF_JOURNAL_CHECKED = 0,
  515. SDF_JOURNAL_LIVE = 1,
  516. SDF_WITHDRAWN = 2,
  517. SDF_NOBARRIERS = 3,
  518. SDF_NORECOVERY = 4,
  519. SDF_DEMOTE = 5,
  520. SDF_NOJOURNALID = 6,
  521. SDF_RORECOVERY = 7, /* read only recovery */
  522. SDF_SKIP_DLM_UNLOCK = 8,
  523. SDF_FORCE_AIL_FLUSH = 9,
  524. SDF_FS_FROZEN = 10,
  525. SDF_WITHDRAWING = 11, /* Will withdraw eventually */
  526. SDF_WITHDRAW_IN_PROG = 12, /* Withdraw is in progress */
  527. SDF_REMOTE_WITHDRAW = 13, /* Performing remote recovery */
  528. SDF_WITHDRAW_RECOVERY = 14, /* Wait for journal recovery when we are
  529. withdrawing */
  530. };
  531. enum gfs2_freeze_state {
  532. SFS_UNFROZEN = 0,
  533. SFS_STARTING_FREEZE = 1,
  534. SFS_FROZEN = 2,
  535. };
  536. #define GFS2_FSNAME_LEN 256
  537. struct gfs2_inum_host {
  538. u64 no_formal_ino;
  539. u64 no_addr;
  540. };
  541. struct gfs2_sb_host {
  542. u32 sb_magic;
  543. u32 sb_type;
  544. u32 sb_fs_format;
  545. u32 sb_multihost_format;
  546. u32 sb_bsize;
  547. u32 sb_bsize_shift;
  548. struct gfs2_inum_host sb_master_dir;
  549. struct gfs2_inum_host sb_root_dir;
  550. char sb_lockproto[GFS2_LOCKNAME_LEN];
  551. char sb_locktable[GFS2_LOCKNAME_LEN];
  552. };
  553. /*
  554. * lm_mount() return values
  555. *
  556. * ls_jid - the journal ID this node should use
  557. * ls_first - this node is the first to mount the file system
  558. * ls_lockspace - lock module's context for this file system
  559. * ls_ops - lock module's functions
  560. */
  561. struct lm_lockstruct {
  562. int ls_jid;
  563. unsigned int ls_first;
  564. const struct lm_lockops *ls_ops;
  565. dlm_lockspace_t *ls_dlm;
  566. int ls_recover_jid_done; /* These two are deprecated, */
  567. int ls_recover_jid_status; /* used previously by gfs_controld */
  568. struct dlm_lksb ls_mounted_lksb; /* mounted_lock */
  569. struct dlm_lksb ls_control_lksb; /* control_lock */
  570. char ls_control_lvb[GDLM_LVB_SIZE]; /* control_lock lvb */
  571. struct completion ls_sync_wait; /* {control,mounted}_{lock,unlock} */
  572. char *ls_lvb_bits;
  573. spinlock_t ls_recover_spin; /* protects following fields */
  574. unsigned long ls_recover_flags; /* DFL_ */
  575. uint32_t ls_recover_mount; /* gen in first recover_done cb */
  576. uint32_t ls_recover_start; /* gen in last recover_done cb */
  577. uint32_t ls_recover_block; /* copy recover_start in last recover_prep */
  578. uint32_t ls_recover_size; /* size of recover_submit, recover_result */
  579. uint32_t *ls_recover_submit; /* gen in last recover_slot cb per jid */
  580. uint32_t *ls_recover_result; /* result of last jid recovery */
  581. };
  582. struct gfs2_pcpu_lkstats {
  583. /* One struct for each glock type */
  584. struct gfs2_lkstats lkstats[10];
  585. };
  586. /* List of local (per node) statfs inodes */
  587. struct local_statfs_inode {
  588. struct list_head si_list;
  589. struct inode *si_sc_inode;
  590. unsigned int si_jid; /* journal id this statfs inode corresponds to */
  591. };
  592. struct gfs2_sbd {
  593. struct super_block *sd_vfs;
  594. struct gfs2_pcpu_lkstats __percpu *sd_lkstats;
  595. struct kobject sd_kobj;
  596. struct completion sd_kobj_unregister;
  597. unsigned long sd_flags; /* SDF_... */
  598. struct gfs2_sb_host sd_sb;
  599. /* Constants computed on mount */
  600. u32 sd_fsb2bb;
  601. u32 sd_fsb2bb_shift;
  602. u32 sd_diptrs; /* Number of pointers in a dinode */
  603. u32 sd_inptrs; /* Number of pointers in a indirect block */
  604. u32 sd_ldptrs; /* Number of pointers in a log descriptor block */
  605. u32 sd_jbsize; /* Size of a journaled data block */
  606. u32 sd_hash_bsize; /* sizeof(exhash block) */
  607. u32 sd_hash_bsize_shift;
  608. u32 sd_hash_ptrs; /* Number of pointers in a hash block */
  609. u32 sd_qc_per_block;
  610. u32 sd_blocks_per_bitmap;
  611. u32 sd_max_dirres; /* Max blocks needed to add a directory entry */
  612. u32 sd_max_height; /* Max height of a file's metadata tree */
  613. u64 sd_heightsize[GFS2_MAX_META_HEIGHT + 1];
  614. u32 sd_max_dents_per_leaf; /* Max number of dirents in a leaf block */
  615. struct gfs2_args sd_args; /* Mount arguments */
  616. struct gfs2_tune sd_tune; /* Filesystem tuning structure */
  617. /* Lock Stuff */
  618. struct lm_lockstruct sd_lockstruct;
  619. struct gfs2_holder sd_live_gh;
  620. struct gfs2_glock *sd_rename_gl;
  621. struct gfs2_glock *sd_freeze_gl;
  622. struct work_struct sd_freeze_work;
  623. wait_queue_head_t sd_glock_wait;
  624. wait_queue_head_t sd_async_glock_wait;
  625. atomic_t sd_glock_disposal;
  626. struct completion sd_locking_init;
  627. struct completion sd_wdack;
  628. struct delayed_work sd_control_work;
  629. /* Inode Stuff */
  630. struct dentry *sd_master_dir;
  631. struct dentry *sd_root_dir;
  632. struct inode *sd_jindex;
  633. struct inode *sd_statfs_inode;
  634. struct inode *sd_sc_inode;
  635. struct list_head sd_sc_inodes_list;
  636. struct inode *sd_qc_inode;
  637. struct inode *sd_rindex;
  638. struct inode *sd_quota_inode;
  639. /* StatFS stuff */
  640. spinlock_t sd_statfs_spin;
  641. struct gfs2_statfs_change_host sd_statfs_master;
  642. struct gfs2_statfs_change_host sd_statfs_local;
  643. int sd_statfs_force_sync;
  644. /* Resource group stuff */
  645. int sd_rindex_uptodate;
  646. spinlock_t sd_rindex_spin;
  647. struct rb_root sd_rindex_tree;
  648. unsigned int sd_rgrps;
  649. unsigned int sd_max_rg_data;
  650. /* Journal index stuff */
  651. struct list_head sd_jindex_list;
  652. spinlock_t sd_jindex_spin;
  653. struct mutex sd_jindex_mutex;
  654. unsigned int sd_journals;
  655. struct gfs2_jdesc *sd_jdesc;
  656. struct gfs2_holder sd_journal_gh;
  657. struct gfs2_holder sd_jinode_gh;
  658. struct gfs2_glock *sd_jinode_gl;
  659. struct gfs2_holder sd_sc_gh;
  660. struct buffer_head *sd_sc_bh;
  661. struct gfs2_holder sd_qc_gh;
  662. struct completion sd_journal_ready;
  663. /* Daemon stuff */
  664. struct task_struct *sd_logd_process;
  665. struct task_struct *sd_quotad_process;
  666. /* Quota stuff */
  667. struct list_head sd_quota_list;
  668. atomic_t sd_quota_count;
  669. struct mutex sd_quota_mutex;
  670. struct mutex sd_quota_sync_mutex;
  671. wait_queue_head_t sd_quota_wait;
  672. unsigned int sd_quota_slots;
  673. unsigned long *sd_quota_bitmap;
  674. spinlock_t sd_bitmap_lock;
  675. u64 sd_quota_sync_gen;
  676. /* Log stuff */
  677. struct address_space sd_aspace;
  678. spinlock_t sd_log_lock;
  679. struct gfs2_trans *sd_log_tr;
  680. unsigned int sd_log_blks_reserved;
  681. atomic_t sd_log_pinned;
  682. unsigned int sd_log_num_revoke;
  683. struct list_head sd_log_revokes;
  684. struct list_head sd_log_ordered;
  685. spinlock_t sd_ordered_lock;
  686. atomic_t sd_log_thresh1;
  687. atomic_t sd_log_thresh2;
  688. atomic_t sd_log_blks_free;
  689. atomic_t sd_log_blks_needed;
  690. atomic_t sd_log_revokes_available;
  691. wait_queue_head_t sd_log_waitq;
  692. wait_queue_head_t sd_logd_waitq;
  693. u64 sd_log_sequence;
  694. int sd_log_idle;
  695. struct rw_semaphore sd_log_flush_lock;
  696. atomic_t sd_log_in_flight;
  697. wait_queue_head_t sd_log_flush_wait;
  698. int sd_log_error; /* First log error */
  699. wait_queue_head_t sd_withdraw_wait;
  700. unsigned int sd_log_tail;
  701. unsigned int sd_log_flush_tail;
  702. unsigned int sd_log_head;
  703. unsigned int sd_log_flush_head;
  704. spinlock_t sd_ail_lock;
  705. struct list_head sd_ail1_list;
  706. struct list_head sd_ail2_list;
  707. /* For quiescing the filesystem */
  708. struct gfs2_holder sd_freeze_gh;
  709. atomic_t sd_freeze_state;
  710. struct mutex sd_freeze_mutex;
  711. char sd_fsname[GFS2_FSNAME_LEN + 3 * sizeof(int) + 2];
  712. char sd_table_name[GFS2_FSNAME_LEN];
  713. char sd_proto_name[GFS2_FSNAME_LEN];
  714. /* Debugging crud */
  715. unsigned long sd_last_warning;
  716. struct dentry *debugfs_dir; /* debugfs directory */
  717. unsigned long sd_glock_dqs_held;
  718. };
  719. static inline void gfs2_glstats_inc(struct gfs2_glock *gl, int which)
  720. {
  721. gl->gl_stats.stats[which]++;
  722. }
  723. static inline void gfs2_sbstats_inc(const struct gfs2_glock *gl, int which)
  724. {
  725. const struct gfs2_sbd *sdp = gl->gl_name.ln_sbd;
  726. preempt_disable();
  727. this_cpu_ptr(sdp->sd_lkstats)->lkstats[gl->gl_name.ln_type].stats[which]++;
  728. preempt_enable();
  729. }
  730. extern struct gfs2_rgrpd *gfs2_glock2rgrp(struct gfs2_glock *gl);
  731. static inline unsigned gfs2_max_stuffed_size(const struct gfs2_inode *ip)
  732. {
  733. return GFS2_SB(&ip->i_inode)->sd_sb.sb_bsize - sizeof(struct gfs2_dinode);
  734. }
  735. #endif /* __INCORE_DOT_H__ */