incore.h 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2006 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. #ifndef __INCORE_DOT_H__
  10. #define __INCORE_DOT_H__
  11. #include <linux/fs.h>
  12. #define DIO_WAIT 0x00000010
  13. #define DIO_METADATA 0x00000020
  14. #define DIO_DATA 0x00000040
  15. #define DIO_RELEASE 0x00000080
  16. #define DIO_ALL 0x00000100
  17. struct gfs2_log_operations;
  18. struct gfs2_log_element;
  19. struct gfs2_holder;
  20. struct gfs2_glock;
  21. struct gfs2_quota_data;
  22. struct gfs2_trans;
  23. struct gfs2_ail;
  24. struct gfs2_jdesc;
  25. struct gfs2_sbd;
  26. typedef void (*gfs2_glop_bh_t) (struct gfs2_glock *gl, unsigned int ret);
  27. /*
  28. * Structure of operations that are associated with each
  29. * type of element in the log.
  30. */
  31. struct gfs2_log_operations {
  32. void (*lo_add) (struct gfs2_sbd *sdp, struct gfs2_log_element *le);
  33. void (*lo_incore_commit) (struct gfs2_sbd *sdp, struct gfs2_trans *tr);
  34. void (*lo_before_commit) (struct gfs2_sbd *sdp);
  35. void (*lo_after_commit) (struct gfs2_sbd *sdp, struct gfs2_ail *ai);
  36. void (*lo_before_scan) (struct gfs2_jdesc *jd,
  37. struct gfs2_log_header *head, int pass);
  38. int (*lo_scan_elements) (struct gfs2_jdesc *jd, unsigned int start,
  39. struct gfs2_log_descriptor *ld, __be64 *ptr,
  40. int pass);
  41. void (*lo_after_scan) (struct gfs2_jdesc *jd, int error, int pass);
  42. const char *lo_name;
  43. };
  44. struct gfs2_log_element {
  45. struct list_head le_list;
  46. const struct gfs2_log_operations *le_ops;
  47. };
  48. struct gfs2_bitmap {
  49. struct buffer_head *bi_bh;
  50. char *bi_clone;
  51. u32 bi_offset;
  52. u32 bi_start;
  53. u32 bi_len;
  54. };
  55. struct gfs2_rgrpd {
  56. struct list_head rd_list; /* Link with superblock */
  57. struct list_head rd_list_mru;
  58. struct list_head rd_recent; /* Recently used rgrps */
  59. struct gfs2_glock *rd_gl; /* Glock for this rgrp */
  60. struct gfs2_rindex rd_ri;
  61. struct gfs2_rgrp rd_rg;
  62. u64 rd_rg_vn;
  63. struct gfs2_bitmap *rd_bits;
  64. unsigned int rd_bh_count;
  65. struct mutex rd_mutex;
  66. u32 rd_free_clone;
  67. struct gfs2_log_element rd_le;
  68. u32 rd_last_alloc_data;
  69. u32 rd_last_alloc_meta;
  70. struct gfs2_sbd *rd_sbd;
  71. };
  72. enum gfs2_state_bits {
  73. BH_Pinned = BH_PrivateStart,
  74. BH_Escaped = BH_PrivateStart + 1,
  75. };
  76. BUFFER_FNS(Pinned, pinned)
  77. TAS_BUFFER_FNS(Pinned, pinned)
  78. BUFFER_FNS(Escaped, escaped)
  79. TAS_BUFFER_FNS(Escaped, escaped)
  80. struct gfs2_bufdata {
  81. struct buffer_head *bd_bh;
  82. struct gfs2_glock *bd_gl;
  83. struct list_head bd_list_tr;
  84. struct gfs2_log_element bd_le;
  85. struct gfs2_ail *bd_ail;
  86. struct list_head bd_ail_st_list;
  87. struct list_head bd_ail_gl_list;
  88. };
  89. struct gfs2_glock_operations {
  90. void (*go_xmote_th) (struct gfs2_glock * gl, unsigned int state,
  91. int flags);
  92. void (*go_xmote_bh) (struct gfs2_glock * gl);
  93. void (*go_drop_th) (struct gfs2_glock * gl);
  94. void (*go_drop_bh) (struct gfs2_glock * gl);
  95. void (*go_sync) (struct gfs2_glock * gl, int flags);
  96. void (*go_inval) (struct gfs2_glock * gl, int flags);
  97. int (*go_demote_ok) (struct gfs2_glock * gl);
  98. int (*go_lock) (struct gfs2_holder * gh);
  99. void (*go_unlock) (struct gfs2_holder * gh);
  100. void (*go_callback) (struct gfs2_glock * gl, unsigned int state);
  101. void (*go_greedy) (struct gfs2_glock * gl);
  102. const int go_type;
  103. };
  104. enum {
  105. /* Actions */
  106. HIF_MUTEX = 0,
  107. HIF_PROMOTE = 1,
  108. HIF_DEMOTE = 2,
  109. HIF_GREEDY = 3,
  110. /* States */
  111. HIF_ALLOCED = 4,
  112. HIF_DEALLOC = 5,
  113. HIF_HOLDER = 6,
  114. HIF_FIRST = 7,
  115. HIF_ABORTED = 9,
  116. };
  117. struct gfs2_holder {
  118. struct list_head gh_list;
  119. struct gfs2_glock *gh_gl;
  120. struct task_struct *gh_owner;
  121. unsigned int gh_state;
  122. unsigned gh_flags;
  123. int gh_error;
  124. unsigned long gh_iflags;
  125. struct completion gh_wait;
  126. unsigned long gh_ip;
  127. };
  128. enum {
  129. GLF_LOCK = 1,
  130. GLF_STICKY = 2,
  131. GLF_PREFETCH = 3,
  132. GLF_DIRTY = 5,
  133. GLF_SKIP_WAITERS2 = 6,
  134. GLF_GREEDY = 7,
  135. };
  136. struct gfs2_glock {
  137. struct hlist_node gl_list;
  138. unsigned long gl_flags; /* GLF_... */
  139. struct lm_lockname gl_name;
  140. atomic_t gl_ref;
  141. spinlock_t gl_spin;
  142. unsigned int gl_state;
  143. unsigned int gl_hash;
  144. struct task_struct *gl_owner;
  145. unsigned long gl_ip;
  146. struct list_head gl_holders;
  147. struct list_head gl_waiters1; /* HIF_MUTEX */
  148. struct list_head gl_waiters2; /* HIF_DEMOTE, HIF_GREEDY */
  149. struct list_head gl_waiters3; /* HIF_PROMOTE */
  150. const struct gfs2_glock_operations *gl_ops;
  151. struct gfs2_holder *gl_req_gh;
  152. gfs2_glop_bh_t gl_req_bh;
  153. void *gl_lock;
  154. char *gl_lvb;
  155. atomic_t gl_lvb_count;
  156. u64 gl_vn;
  157. unsigned long gl_stamp;
  158. void *gl_object;
  159. struct list_head gl_reclaim;
  160. struct gfs2_sbd *gl_sbd;
  161. struct inode *gl_aspace;
  162. struct gfs2_log_element gl_le;
  163. struct list_head gl_ail_list;
  164. atomic_t gl_ail_count;
  165. };
  166. struct gfs2_alloc {
  167. /* Quota stuff */
  168. struct gfs2_quota_data *al_qd[2*MAXQUOTAS];
  169. struct gfs2_holder al_qd_ghs[2*MAXQUOTAS];
  170. unsigned int al_qd_num;
  171. u32 al_requested; /* Filled in by caller of gfs2_inplace_reserve() */
  172. u32 al_alloced; /* Filled in by gfs2_alloc_*() */
  173. /* Filled in by gfs2_inplace_reserve() */
  174. unsigned int al_line;
  175. char *al_file;
  176. struct gfs2_holder al_ri_gh;
  177. struct gfs2_holder al_rgd_gh;
  178. struct gfs2_rgrpd *al_rgd;
  179. };
  180. enum {
  181. GIF_QD_LOCKED = 1,
  182. GIF_PAGED = 2,
  183. GIF_SW_PAGED = 3,
  184. };
  185. struct gfs2_inode {
  186. struct inode i_inode;
  187. struct gfs2_inum i_num;
  188. unsigned long i_flags; /* GIF_... */
  189. u64 i_vn;
  190. struct gfs2_dinode i_di; /* To be replaced by ref to block */
  191. struct gfs2_glock *i_gl; /* Move into i_gh? */
  192. struct gfs2_holder i_iopen_gh;
  193. struct gfs2_holder i_gh; /* for prepare/commit_write only */
  194. struct gfs2_alloc i_alloc;
  195. u64 i_last_rg_alloc;
  196. spinlock_t i_spin;
  197. struct rw_semaphore i_rw_mutex;
  198. unsigned int i_greedy;
  199. unsigned long i_last_pfault;
  200. struct buffer_head *i_cache[GFS2_MAX_META_HEIGHT];
  201. };
  202. /*
  203. * Since i_inode is the first element of struct gfs2_inode,
  204. * this is effectively a cast.
  205. */
  206. static inline struct gfs2_inode *GFS2_I(struct inode *inode)
  207. {
  208. return container_of(inode, struct gfs2_inode, i_inode);
  209. }
  210. /* To be removed? */
  211. static inline struct gfs2_sbd *GFS2_SB(struct inode *inode)
  212. {
  213. return inode->i_sb->s_fs_info;
  214. }
  215. enum {
  216. GFF_DID_DIRECT_ALLOC = 0,
  217. GFF_EXLOCK = 1,
  218. };
  219. struct gfs2_file {
  220. unsigned long f_flags; /* GFF_... */
  221. struct mutex f_fl_mutex;
  222. struct gfs2_holder f_fl_gh;
  223. };
  224. struct gfs2_revoke {
  225. struct gfs2_log_element rv_le;
  226. u64 rv_blkno;
  227. };
  228. struct gfs2_revoke_replay {
  229. struct list_head rr_list;
  230. u64 rr_blkno;
  231. unsigned int rr_where;
  232. };
  233. enum {
  234. QDF_USER = 0,
  235. QDF_CHANGE = 1,
  236. QDF_LOCKED = 2,
  237. };
  238. struct gfs2_quota_lvb {
  239. __be32 qb_magic;
  240. u32 __pad;
  241. __be64 qb_limit; /* Hard limit of # blocks to alloc */
  242. __be64 qb_warn; /* Warn user when alloc is above this # */
  243. __be64 qb_value; /* Current # blocks allocated */
  244. };
  245. struct gfs2_quota_data {
  246. struct list_head qd_list;
  247. unsigned int qd_count;
  248. u32 qd_id;
  249. unsigned long qd_flags; /* QDF_... */
  250. s64 qd_change;
  251. s64 qd_change_sync;
  252. unsigned int qd_slot;
  253. unsigned int qd_slot_count;
  254. struct buffer_head *qd_bh;
  255. struct gfs2_quota_change *qd_bh_qc;
  256. unsigned int qd_bh_count;
  257. struct gfs2_glock *qd_gl;
  258. struct gfs2_quota_lvb qd_qb;
  259. u64 qd_sync_gen;
  260. unsigned long qd_last_warn;
  261. unsigned long qd_last_touched;
  262. };
  263. struct gfs2_log_buf {
  264. struct list_head lb_list;
  265. struct buffer_head *lb_bh;
  266. struct buffer_head *lb_real;
  267. };
  268. struct gfs2_trans {
  269. unsigned long tr_ip;
  270. unsigned int tr_blocks;
  271. unsigned int tr_revokes;
  272. unsigned int tr_reserved;
  273. struct gfs2_holder tr_t_gh;
  274. int tr_touched;
  275. unsigned int tr_num_buf;
  276. unsigned int tr_num_buf_new;
  277. unsigned int tr_num_buf_rm;
  278. struct list_head tr_list_buf;
  279. unsigned int tr_num_revoke;
  280. unsigned int tr_num_revoke_rm;
  281. };
  282. struct gfs2_ail {
  283. struct list_head ai_list;
  284. unsigned int ai_first;
  285. struct list_head ai_ail1_list;
  286. struct list_head ai_ail2_list;
  287. u64 ai_sync_gen;
  288. };
  289. struct gfs2_jdesc {
  290. struct list_head jd_list;
  291. struct inode *jd_inode;
  292. unsigned int jd_jid;
  293. int jd_dirty;
  294. unsigned int jd_blocks;
  295. };
  296. #define GFS2_GLOCKD_DEFAULT 1
  297. #define GFS2_GLOCKD_MAX 16
  298. #define GFS2_QUOTA_DEFAULT GFS2_QUOTA_OFF
  299. #define GFS2_QUOTA_OFF 0
  300. #define GFS2_QUOTA_ACCOUNT 1
  301. #define GFS2_QUOTA_ON 2
  302. #define GFS2_DATA_DEFAULT GFS2_DATA_ORDERED
  303. #define GFS2_DATA_WRITEBACK 1
  304. #define GFS2_DATA_ORDERED 2
  305. struct gfs2_args {
  306. char ar_lockproto[GFS2_LOCKNAME_LEN]; /* Name of the Lock Protocol */
  307. char ar_locktable[GFS2_LOCKNAME_LEN]; /* Name of the Lock Table */
  308. char ar_hostdata[GFS2_LOCKNAME_LEN]; /* Host specific data */
  309. int ar_spectator; /* Don't get a journal because we're always RO */
  310. int ar_ignore_local_fs; /* Don't optimize even if local_fs is 1 */
  311. int ar_localflocks; /* Let the VFS do flock|fcntl locks for us */
  312. int ar_localcaching; /* Local-style caching (dangerous on multihost) */
  313. int ar_debug; /* Oops on errors instead of trying to be graceful */
  314. int ar_upgrade; /* Upgrade ondisk/multihost format */
  315. unsigned int ar_num_glockd; /* Number of glockd threads */
  316. int ar_posix_acl; /* Enable posix acls */
  317. int ar_quota; /* off/account/on */
  318. int ar_suiddir; /* suiddir support */
  319. int ar_data; /* ordered/writeback */
  320. };
  321. struct gfs2_tune {
  322. spinlock_t gt_spin;
  323. unsigned int gt_ilimit;
  324. unsigned int gt_ilimit_tries;
  325. unsigned int gt_ilimit_min;
  326. unsigned int gt_demote_secs; /* Cache retention for unheld glock */
  327. unsigned int gt_incore_log_blocks;
  328. unsigned int gt_log_flush_secs;
  329. unsigned int gt_jindex_refresh_secs; /* Check for new journal index */
  330. unsigned int gt_scand_secs;
  331. unsigned int gt_recoverd_secs;
  332. unsigned int gt_logd_secs;
  333. unsigned int gt_quotad_secs;
  334. unsigned int gt_quota_simul_sync; /* Max quotavals to sync at once */
  335. unsigned int gt_quota_warn_period; /* Secs between quota warn msgs */
  336. unsigned int gt_quota_scale_num; /* Numerator */
  337. unsigned int gt_quota_scale_den; /* Denominator */
  338. unsigned int gt_quota_cache_secs;
  339. unsigned int gt_quota_quantum; /* Secs between syncs to quota file */
  340. unsigned int gt_atime_quantum; /* Min secs between atime updates */
  341. unsigned int gt_new_files_jdata;
  342. unsigned int gt_new_files_directio;
  343. unsigned int gt_max_atomic_write; /* Split big writes into this size */
  344. unsigned int gt_max_readahead; /* Max bytes to read-ahead from disk */
  345. unsigned int gt_lockdump_size;
  346. unsigned int gt_stall_secs; /* Detects trouble! */
  347. unsigned int gt_complain_secs;
  348. unsigned int gt_reclaim_limit; /* Max num of glocks in reclaim list */
  349. unsigned int gt_entries_per_readdir;
  350. unsigned int gt_prefetch_secs; /* Usage window for prefetched glocks */
  351. unsigned int gt_greedy_default;
  352. unsigned int gt_greedy_quantum;
  353. unsigned int gt_greedy_max;
  354. unsigned int gt_statfs_quantum;
  355. unsigned int gt_statfs_slow;
  356. };
  357. enum {
  358. SDF_JOURNAL_CHECKED = 0,
  359. SDF_JOURNAL_LIVE = 1,
  360. SDF_SHUTDOWN = 2,
  361. SDF_NOATIME = 3,
  362. };
  363. #define GFS2_FSNAME_LEN 256
  364. struct gfs2_sbd {
  365. struct super_block *sd_vfs;
  366. struct super_block *sd_vfs_meta;
  367. struct kobject sd_kobj;
  368. unsigned long sd_flags; /* SDF_... */
  369. struct gfs2_sb sd_sb;
  370. /* Constants computed on mount */
  371. u32 sd_fsb2bb;
  372. u32 sd_fsb2bb_shift;
  373. u32 sd_diptrs; /* Number of pointers in a dinode */
  374. u32 sd_inptrs; /* Number of pointers in a indirect block */
  375. u32 sd_jbsize; /* Size of a journaled data block */
  376. u32 sd_hash_bsize; /* sizeof(exhash block) */
  377. u32 sd_hash_bsize_shift;
  378. u32 sd_hash_ptrs; /* Number of pointers in a hash block */
  379. u32 sd_qc_per_block;
  380. u32 sd_max_dirres; /* Max blocks needed to add a directory entry */
  381. u32 sd_max_height; /* Max height of a file's metadata tree */
  382. u64 sd_heightsize[GFS2_MAX_META_HEIGHT];
  383. u32 sd_max_jheight; /* Max height of journaled file's meta tree */
  384. u64 sd_jheightsize[GFS2_MAX_META_HEIGHT];
  385. struct gfs2_args sd_args; /* Mount arguments */
  386. struct gfs2_tune sd_tune; /* Filesystem tuning structure */
  387. /* Lock Stuff */
  388. struct lm_lockstruct sd_lockstruct;
  389. struct list_head sd_reclaim_list;
  390. spinlock_t sd_reclaim_lock;
  391. wait_queue_head_t sd_reclaim_wq;
  392. atomic_t sd_reclaim_count;
  393. struct gfs2_holder sd_live_gh;
  394. struct gfs2_glock *sd_rename_gl;
  395. struct gfs2_glock *sd_trans_gl;
  396. /* Inode Stuff */
  397. struct inode *sd_master_dir;
  398. struct inode *sd_jindex;
  399. struct inode *sd_inum_inode;
  400. struct inode *sd_statfs_inode;
  401. struct inode *sd_ir_inode;
  402. struct inode *sd_sc_inode;
  403. struct inode *sd_qc_inode;
  404. struct inode *sd_rindex;
  405. struct inode *sd_quota_inode;
  406. /* Inum stuff */
  407. struct mutex sd_inum_mutex;
  408. /* StatFS stuff */
  409. spinlock_t sd_statfs_spin;
  410. struct mutex sd_statfs_mutex;
  411. struct gfs2_statfs_change sd_statfs_master;
  412. struct gfs2_statfs_change sd_statfs_local;
  413. unsigned long sd_statfs_sync_time;
  414. /* Resource group stuff */
  415. u64 sd_rindex_vn;
  416. spinlock_t sd_rindex_spin;
  417. struct mutex sd_rindex_mutex;
  418. struct list_head sd_rindex_list;
  419. struct list_head sd_rindex_mru_list;
  420. struct list_head sd_rindex_recent_list;
  421. struct gfs2_rgrpd *sd_rindex_forward;
  422. unsigned int sd_rgrps;
  423. /* Journal index stuff */
  424. struct list_head sd_jindex_list;
  425. spinlock_t sd_jindex_spin;
  426. struct mutex sd_jindex_mutex;
  427. unsigned int sd_journals;
  428. unsigned long sd_jindex_refresh_time;
  429. struct gfs2_jdesc *sd_jdesc;
  430. struct gfs2_holder sd_journal_gh;
  431. struct gfs2_holder sd_jinode_gh;
  432. struct gfs2_holder sd_ir_gh;
  433. struct gfs2_holder sd_sc_gh;
  434. struct gfs2_holder sd_qc_gh;
  435. /* Daemon stuff */
  436. struct task_struct *sd_scand_process;
  437. struct task_struct *sd_recoverd_process;
  438. struct task_struct *sd_logd_process;
  439. struct task_struct *sd_quotad_process;
  440. struct task_struct *sd_glockd_process[GFS2_GLOCKD_MAX];
  441. unsigned int sd_glockd_num;
  442. /* Quota stuff */
  443. struct list_head sd_quota_list;
  444. atomic_t sd_quota_count;
  445. spinlock_t sd_quota_spin;
  446. struct mutex sd_quota_mutex;
  447. unsigned int sd_quota_slots;
  448. unsigned int sd_quota_chunks;
  449. unsigned char **sd_quota_bitmap;
  450. u64 sd_quota_sync_gen;
  451. unsigned long sd_quota_sync_time;
  452. /* Log stuff */
  453. spinlock_t sd_log_lock;
  454. unsigned int sd_log_blks_reserved;
  455. unsigned int sd_log_commited_buf;
  456. unsigned int sd_log_commited_revoke;
  457. unsigned int sd_log_num_gl;
  458. unsigned int sd_log_num_buf;
  459. unsigned int sd_log_num_revoke;
  460. unsigned int sd_log_num_rg;
  461. unsigned int sd_log_num_databuf;
  462. unsigned int sd_log_num_jdata;
  463. unsigned int sd_log_num_hdrs;
  464. struct list_head sd_log_le_gl;
  465. struct list_head sd_log_le_buf;
  466. struct list_head sd_log_le_revoke;
  467. struct list_head sd_log_le_rg;
  468. struct list_head sd_log_le_databuf;
  469. unsigned int sd_log_blks_free;
  470. struct mutex sd_log_reserve_mutex;
  471. u64 sd_log_sequence;
  472. unsigned int sd_log_head;
  473. unsigned int sd_log_tail;
  474. int sd_log_idle;
  475. unsigned long sd_log_flush_time;
  476. struct rw_semaphore sd_log_flush_lock;
  477. struct list_head sd_log_flush_list;
  478. unsigned int sd_log_flush_head;
  479. u64 sd_log_flush_wrapped;
  480. struct list_head sd_ail1_list;
  481. struct list_head sd_ail2_list;
  482. u64 sd_ail_sync_gen;
  483. /* Replay stuff */
  484. struct list_head sd_revoke_list;
  485. unsigned int sd_replay_tail;
  486. unsigned int sd_found_blocks;
  487. unsigned int sd_found_revokes;
  488. unsigned int sd_replayed_blocks;
  489. /* For quiescing the filesystem */
  490. struct gfs2_holder sd_freeze_gh;
  491. struct mutex sd_freeze_lock;
  492. unsigned int sd_freeze_count;
  493. /* Counters */
  494. atomic_t sd_glock_count;
  495. atomic_t sd_glock_held_count;
  496. atomic_t sd_inode_count;
  497. atomic_t sd_reclaimed;
  498. char sd_fsname[GFS2_FSNAME_LEN];
  499. char sd_table_name[GFS2_FSNAME_LEN];
  500. char sd_proto_name[GFS2_FSNAME_LEN];
  501. /* Debugging crud */
  502. unsigned long sd_last_warning;
  503. struct vfsmount *sd_gfs2mnt;
  504. };
  505. #endif /* __INCORE_DOT_H__ */