segbuf.h 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. /*
  2. * segbuf.h - NILFS Segment buffer prototypes and definitions
  3. *
  4. * Copyright (C) 2005-2008 Nippon Telegraph and Telephone Corporation.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  19. *
  20. * Written by Ryusuke Konishi <ryusuke@osrg.net>
  21. *
  22. */
  23. #ifndef _NILFS_SEGBUF_H
  24. #define _NILFS_SEGBUF_H
  25. #include <linux/fs.h>
  26. #include <linux/buffer_head.h>
  27. #include <linux/bio.h>
  28. #include <linux/completion.h>
  29. /**
  30. * struct nilfs_segsum_info - On-memory segment summary
  31. * @flags: Flags
  32. * @nfinfo: Number of file information structures
  33. * @nblocks: Number of blocks included in the partial segment
  34. * @nsumblk: Number of summary blocks
  35. * @sumbytes: Byte count of segment summary
  36. * @nfileblk: Total number of file blocks
  37. * @seg_seq: Segment sequence number
  38. * @ctime: Creation time
  39. * @next: Block number of the next full segment
  40. */
  41. struct nilfs_segsum_info {
  42. unsigned int flags;
  43. unsigned long nfinfo;
  44. unsigned long nblocks;
  45. unsigned long nsumblk;
  46. unsigned long sumbytes;
  47. unsigned long nfileblk;
  48. u64 seg_seq;
  49. time_t ctime;
  50. sector_t next;
  51. };
  52. /* macro for the flags */
  53. #define NILFS_SEG_HAS_SR(sum) ((sum)->flags & NILFS_SS_SR)
  54. #define NILFS_SEG_LOGBGN(sum) ((sum)->flags & NILFS_SS_LOGBGN)
  55. #define NILFS_SEG_LOGEND(sum) ((sum)->flags & NILFS_SS_LOGEND)
  56. #define NILFS_SEG_DSYNC(sum) ((sum)->flags & NILFS_SS_SYNDT)
  57. #define NILFS_SEG_SIMPLEX(sum) \
  58. (((sum)->flags & (NILFS_SS_LOGBGN | NILFS_SS_LOGEND)) == \
  59. (NILFS_SS_LOGBGN | NILFS_SS_LOGEND))
  60. #define NILFS_SEG_EMPTY(sum) ((sum)->nblocks == (sum)->nsumblk)
  61. /**
  62. * struct nilfs_segment_buffer - Segment buffer
  63. * @sb_super: back pointer to a superblock struct
  64. * @sb_list: List head to chain this structure
  65. * @sb_sum: On-memory segment summary
  66. * @sb_segnum: Index number of the full segment
  67. * @sb_nextnum: Index number of the next full segment
  68. * @sb_fseg_start: Start block number of the full segment
  69. * @sb_fseg_end: End block number of the full segment
  70. * @sb_pseg_start: Disk block number of partial segment
  71. * @sb_rest_blocks: Number of residual blocks in the current segment
  72. * @sb_segsum_buffers: List of buffers for segment summaries
  73. * @sb_payload_buffers: List of buffers for segment payload
  74. * @sb_nbio: Number of flying bio requests
  75. * @sb_err: I/O error status
  76. * @sb_bio_event: Completion event of log writing
  77. */
  78. struct nilfs_segment_buffer {
  79. struct super_block *sb_super;
  80. struct list_head sb_list;
  81. /* Segment information */
  82. struct nilfs_segsum_info sb_sum;
  83. __u64 sb_segnum;
  84. __u64 sb_nextnum;
  85. sector_t sb_fseg_start, sb_fseg_end;
  86. sector_t sb_pseg_start;
  87. unsigned sb_rest_blocks;
  88. /* Buffers */
  89. struct list_head sb_segsum_buffers;
  90. struct list_head sb_payload_buffers; /* including super root */
  91. /* io status */
  92. int sb_nbio;
  93. atomic_t sb_err;
  94. struct completion sb_bio_event;
  95. };
  96. #define NILFS_LIST_SEGBUF(head) \
  97. list_entry((head), struct nilfs_segment_buffer, sb_list)
  98. #define NILFS_NEXT_SEGBUF(segbuf) NILFS_LIST_SEGBUF((segbuf)->sb_list.next)
  99. #define NILFS_PREV_SEGBUF(segbuf) NILFS_LIST_SEGBUF((segbuf)->sb_list.prev)
  100. #define NILFS_LAST_SEGBUF(head) NILFS_LIST_SEGBUF((head)->prev)
  101. #define NILFS_FIRST_SEGBUF(head) NILFS_LIST_SEGBUF((head)->next)
  102. #define NILFS_SEGBUF_IS_LAST(segbuf, head) ((segbuf)->sb_list.next == (head))
  103. #define nilfs_for_each_segbuf_before(s, t, h) \
  104. for ((s) = NILFS_FIRST_SEGBUF(h); (s) != (t); \
  105. (s) = NILFS_NEXT_SEGBUF(s))
  106. #define NILFS_SEGBUF_FIRST_BH(head) \
  107. (list_entry((head)->next, struct buffer_head, b_assoc_buffers))
  108. #define NILFS_SEGBUF_NEXT_BH(bh) \
  109. (list_entry((bh)->b_assoc_buffers.next, struct buffer_head, \
  110. b_assoc_buffers))
  111. #define NILFS_SEGBUF_BH_IS_LAST(bh, head) ((bh)->b_assoc_buffers.next == head)
  112. int __init nilfs_init_segbuf_cache(void);
  113. void nilfs_destroy_segbuf_cache(void);
  114. struct nilfs_segment_buffer *nilfs_segbuf_new(struct super_block *);
  115. void nilfs_segbuf_free(struct nilfs_segment_buffer *);
  116. void nilfs_segbuf_map(struct nilfs_segment_buffer *, __u64, unsigned long,
  117. struct the_nilfs *);
  118. void nilfs_segbuf_map_cont(struct nilfs_segment_buffer *segbuf,
  119. struct nilfs_segment_buffer *prev);
  120. void nilfs_segbuf_set_next_segnum(struct nilfs_segment_buffer *, __u64,
  121. struct the_nilfs *);
  122. int nilfs_segbuf_reset(struct nilfs_segment_buffer *, unsigned, time_t);
  123. int nilfs_segbuf_extend_segsum(struct nilfs_segment_buffer *);
  124. int nilfs_segbuf_extend_payload(struct nilfs_segment_buffer *,
  125. struct buffer_head **);
  126. void nilfs_segbuf_fill_in_segsum(struct nilfs_segment_buffer *);
  127. void nilfs_segbuf_fill_in_segsum_crc(struct nilfs_segment_buffer *, u32);
  128. void nilfs_segbuf_fill_in_data_crc(struct nilfs_segment_buffer *, u32);
  129. static inline void
  130. nilfs_segbuf_add_segsum_buffer(struct nilfs_segment_buffer *segbuf,
  131. struct buffer_head *bh)
  132. {
  133. list_add_tail(&bh->b_assoc_buffers, &segbuf->sb_segsum_buffers);
  134. segbuf->sb_sum.nblocks++;
  135. segbuf->sb_sum.nsumblk++;
  136. }
  137. static inline void
  138. nilfs_segbuf_add_payload_buffer(struct nilfs_segment_buffer *segbuf,
  139. struct buffer_head *bh)
  140. {
  141. list_add_tail(&bh->b_assoc_buffers, &segbuf->sb_payload_buffers);
  142. segbuf->sb_sum.nblocks++;
  143. }
  144. static inline void
  145. nilfs_segbuf_add_file_buffer(struct nilfs_segment_buffer *segbuf,
  146. struct buffer_head *bh)
  147. {
  148. get_bh(bh);
  149. nilfs_segbuf_add_payload_buffer(segbuf, bh);
  150. segbuf->sb_sum.nfileblk++;
  151. }
  152. int nilfs_segbuf_write(struct nilfs_segment_buffer *segbuf,
  153. struct the_nilfs *nilfs);
  154. int nilfs_segbuf_wait(struct nilfs_segment_buffer *segbuf);
  155. void nilfs_clear_logs(struct list_head *logs);
  156. void nilfs_truncate_logs(struct list_head *logs,
  157. struct nilfs_segment_buffer *last);
  158. int nilfs_wait_on_logs(struct list_head *logs);
  159. static inline void nilfs_destroy_logs(struct list_head *logs)
  160. {
  161. nilfs_truncate_logs(logs, NULL);
  162. }
  163. #endif /* _NILFS_SEGBUF_H */