rgrp.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright (C) Sistina Software, Inc. 1997-2003 All rights reserved.
  3. * Copyright (C) 2004-2008 Red Hat, Inc. All rights reserved.
  4. *
  5. * This copyrighted material is made available to anyone wishing to use,
  6. * modify, copy, or redistribute it subject to the terms and conditions
  7. * of the GNU General Public License version 2.
  8. */
  9. #ifndef __RGRP_DOT_H__
  10. #define __RGRP_DOT_H__
  11. #include <linux/slab.h>
  12. #include <linux/uaccess.h>
  13. /* Since each block in the file system is represented by two bits in the
  14. * bitmap, one 64-bit word in the bitmap will represent 32 blocks.
  15. * By reserving 32 blocks at a time, we can optimize / shortcut how we search
  16. * through the bitmaps by looking a word at a time.
  17. */
  18. #define RGRP_RSRV_MINBYTES 8
  19. #define RGRP_RSRV_MINBLKS ((u32)(RGRP_RSRV_MINBYTES * GFS2_NBBY))
  20. struct gfs2_rgrpd;
  21. struct gfs2_sbd;
  22. struct gfs2_holder;
  23. extern void gfs2_rgrp_verify(struct gfs2_rgrpd *rgd);
  24. extern struct gfs2_rgrpd *gfs2_blk2rgrpd(struct gfs2_sbd *sdp, u64 blk, bool exact);
  25. extern struct gfs2_rgrpd *gfs2_rgrpd_get_first(struct gfs2_sbd *sdp);
  26. extern struct gfs2_rgrpd *gfs2_rgrpd_get_next(struct gfs2_rgrpd *rgd);
  27. extern void gfs2_clear_rgrpd(struct gfs2_sbd *sdp);
  28. extern int gfs2_rindex_update(struct gfs2_sbd *sdp);
  29. extern void gfs2_free_clones(struct gfs2_rgrpd *rgd);
  30. extern int gfs2_rgrp_go_lock(struct gfs2_holder *gh);
  31. extern void gfs2_rgrp_go_unlock(struct gfs2_holder *gh);
  32. extern struct gfs2_alloc *gfs2_alloc_get(struct gfs2_inode *ip);
  33. extern int gfs2_inplace_reserve(struct gfs2_inode *ip, u32 requested);
  34. extern void gfs2_inplace_release(struct gfs2_inode *ip);
  35. extern int gfs2_alloc_blocks(struct gfs2_inode *ip, u64 *bn, unsigned int *n,
  36. bool dinode, u64 *generation);
  37. extern int gfs2_rs_alloc(struct gfs2_inode *ip);
  38. extern void gfs2_rs_deltree(struct gfs2_blkreserv *rs);
  39. extern void gfs2_rs_delete(struct gfs2_inode *ip);
  40. extern void __gfs2_free_blocks(struct gfs2_inode *ip, u64 bstart, u32 blen, int meta);
  41. extern void gfs2_free_meta(struct gfs2_inode *ip, u64 bstart, u32 blen);
  42. extern void gfs2_free_di(struct gfs2_rgrpd *rgd, struct gfs2_inode *ip);
  43. extern void gfs2_unlink_di(struct inode *inode);
  44. extern int gfs2_check_blk_type(struct gfs2_sbd *sdp, u64 no_addr,
  45. unsigned int type);
  46. struct gfs2_rgrp_list {
  47. unsigned int rl_rgrps;
  48. unsigned int rl_space;
  49. struct gfs2_rgrpd **rl_rgd;
  50. struct gfs2_holder *rl_ghs;
  51. };
  52. extern void gfs2_rlist_add(struct gfs2_inode *ip, struct gfs2_rgrp_list *rlist,
  53. u64 block);
  54. extern void gfs2_rlist_alloc(struct gfs2_rgrp_list *rlist, unsigned int state);
  55. extern void gfs2_rlist_free(struct gfs2_rgrp_list *rlist);
  56. extern u64 gfs2_ri_total(struct gfs2_sbd *sdp);
  57. extern int gfs2_rgrp_dump(struct seq_file *seq, const struct gfs2_glock *gl);
  58. extern int gfs2_rgrp_send_discards(struct gfs2_sbd *sdp, u64 offset,
  59. struct buffer_head *bh,
  60. const struct gfs2_bitmap *bi, unsigned minlen, u64 *ptrimmed);
  61. extern int gfs2_fitrim(struct file *filp, void __user *argp);
  62. /* This is how to tell if a multi-block reservation is "inplace" reserved: */
  63. static inline int gfs2_mb_reserved(struct gfs2_inode *ip)
  64. {
  65. if (ip->i_res && ip->i_res->rs_requested)
  66. return 1;
  67. return 0;
  68. }
  69. /* This is how to tell if a multi-block reservation is in the rgrp tree: */
  70. static inline int gfs2_rs_active(struct gfs2_blkreserv *rs)
  71. {
  72. if (rs && rs->rs_bi)
  73. return 1;
  74. return 0;
  75. }
  76. static inline u32 gfs2_bi2rgd_blk(const struct gfs2_bitmap *bi, u32 blk)
  77. {
  78. return (bi->bi_start * GFS2_NBBY) + blk;
  79. }
  80. static inline u64 gfs2_rs_startblk(const struct gfs2_blkreserv *rs)
  81. {
  82. return gfs2_bi2rgd_blk(rs->rs_bi, rs->rs_biblk) + rs->rs_rgd->rd_data0;
  83. }
  84. #endif /* __RGRP_DOT_H__ */