blob: bd076cca37a87d1254a3f3c760369a779dd9b025 [file] [log] [blame]
Ryusuke Konishi64b5a322009-04-06 19:01:36 -07001/*
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
26#include <linux/fs.h>
27#include <linux/buffer_head.h>
28#include <linux/bio.h>
29#include <linux/completion.h>
30#include <linux/backing-dev.h>
31
32/**
33 * struct nilfs_segsum_info - On-memory segment summary
34 * @flags: Flags
35 * @nfinfo: Number of file information structures
36 * @nblocks: Number of blocks included in the partial segment
37 * @nsumblk: Number of summary blocks
38 * @sumbytes: Byte count of segment summary
39 * @nfileblk: Total number of file blocks
40 * @seg_seq: Segment sequence number
41 * @ctime: Creation time
42 * @next: Block number of the next full segment
43 */
44struct nilfs_segsum_info {
45 unsigned int flags;
46 unsigned long nfinfo;
47 unsigned long nblocks;
48 unsigned long nsumblk;
49 unsigned long sumbytes;
50 unsigned long nfileblk;
51 u64 seg_seq;
52 time_t ctime;
53 sector_t next;
54};
55
56/* macro for the flags */
57#define NILFS_SEG_HAS_SR(sum) ((sum)->flags & NILFS_SS_SR)
58#define NILFS_SEG_LOGBGN(sum) ((sum)->flags & NILFS_SS_LOGBGN)
59#define NILFS_SEG_LOGEND(sum) ((sum)->flags & NILFS_SS_LOGEND)
60#define NILFS_SEG_DSYNC(sum) ((sum)->flags & NILFS_SS_SYNDT)
61#define NILFS_SEG_SIMPLEX(sum) \
62 (((sum)->flags & (NILFS_SS_LOGBGN | NILFS_SS_LOGEND)) == \
63 (NILFS_SS_LOGBGN | NILFS_SS_LOGEND))
64
65#define NILFS_SEG_EMPTY(sum) ((sum)->nblocks == (sum)->nsumblk)
66
67/**
68 * struct nilfs_segment_buffer - Segment buffer
69 * @sb_super: back pointer to a superblock struct
70 * @sb_list: List head to chain this structure
Ryusuke Konishi64b5a322009-04-06 19:01:36 -070071 * @sb_sum: On-memory segment summary
72 * @sb_segnum: Index number of the full segment
73 * @sb_nextnum: Index number of the next full segment
74 * @sb_fseg_start: Start block number of the full segment
75 * @sb_fseg_end: End block number of the full segment
76 * @sb_pseg_start: Disk block number of partial segment
77 * @sb_rest_blocks: Number of residual blocks in the current segment
78 * @sb_segsum_buffers: List of buffers for segment summaries
79 * @sb_payload_buffers: List of buffers for segment payload
Ryusuke Konishi9284ad22009-11-25 01:04:21 +090080 * @sb_nbio: Number of flying bio requests
81 * @sb_err: I/O error status
82 * @sb_bio_event: Completion event of log writing
Ryusuke Konishi64b5a322009-04-06 19:01:36 -070083 */
84struct nilfs_segment_buffer {
85 struct super_block *sb_super;
86 struct list_head sb_list;
Ryusuke Konishi64b5a322009-04-06 19:01:36 -070087
88 /* Segment information */
89 struct nilfs_segsum_info sb_sum;
90 __u64 sb_segnum;
91 __u64 sb_nextnum;
92 sector_t sb_fseg_start, sb_fseg_end;
93 sector_t sb_pseg_start;
94 unsigned sb_rest_blocks;
95
96 /* Buffers */
97 struct list_head sb_segsum_buffers;
98 struct list_head sb_payload_buffers; /* including super root */
99
100 /* io status */
Ryusuke Konishi9284ad22009-11-25 01:04:21 +0900101 int sb_nbio;
102 atomic_t sb_err;
103 struct completion sb_bio_event;
Ryusuke Konishi64b5a322009-04-06 19:01:36 -0700104};
105
106#define NILFS_LIST_SEGBUF(head) \
107 list_entry((head), struct nilfs_segment_buffer, sb_list)
108#define NILFS_NEXT_SEGBUF(segbuf) NILFS_LIST_SEGBUF((segbuf)->sb_list.next)
109#define NILFS_PREV_SEGBUF(segbuf) NILFS_LIST_SEGBUF((segbuf)->sb_list.prev)
110#define NILFS_LAST_SEGBUF(head) NILFS_LIST_SEGBUF((head)->prev)
111#define NILFS_FIRST_SEGBUF(head) NILFS_LIST_SEGBUF((head)->next)
112#define NILFS_SEGBUF_IS_LAST(segbuf, head) ((segbuf)->sb_list.next == (head))
113
114#define nilfs_for_each_segbuf_before(s, t, h) \
115 for ((s) = NILFS_FIRST_SEGBUF(h); (s) != (t); \
116 (s) = NILFS_NEXT_SEGBUF(s))
117
118#define NILFS_SEGBUF_FIRST_BH(head) \
119 (list_entry((head)->next, struct buffer_head, b_assoc_buffers))
120#define NILFS_SEGBUF_NEXT_BH(bh) \
121 (list_entry((bh)->b_assoc_buffers.next, struct buffer_head, \
122 b_assoc_buffers))
123#define NILFS_SEGBUF_BH_IS_LAST(bh, head) ((bh)->b_assoc_buffers.next == head)
124
125
126int __init nilfs_init_segbuf_cache(void);
127void nilfs_destroy_segbuf_cache(void);
128struct nilfs_segment_buffer *nilfs_segbuf_new(struct super_block *);
129void nilfs_segbuf_free(struct nilfs_segment_buffer *);
Ryusuke Konishicece5522009-04-06 19:01:58 -0700130void nilfs_segbuf_map(struct nilfs_segment_buffer *, __u64, unsigned long,
131 struct the_nilfs *);
Ryusuke Konishi64b5a322009-04-06 19:01:36 -0700132void nilfs_segbuf_set_next_segnum(struct nilfs_segment_buffer *, __u64,
133 struct the_nilfs *);
134int nilfs_segbuf_reset(struct nilfs_segment_buffer *, unsigned, time_t);
135int nilfs_segbuf_extend_segsum(struct nilfs_segment_buffer *);
136int nilfs_segbuf_extend_payload(struct nilfs_segment_buffer *,
137 struct buffer_head **);
138void nilfs_segbuf_fill_in_segsum(struct nilfs_segment_buffer *);
139void nilfs_segbuf_fill_in_segsum_crc(struct nilfs_segment_buffer *, u32);
140void nilfs_segbuf_fill_in_data_crc(struct nilfs_segment_buffer *, u32);
141
142static inline void
143nilfs_segbuf_add_segsum_buffer(struct nilfs_segment_buffer *segbuf,
144 struct buffer_head *bh)
145{
146 list_add_tail(&bh->b_assoc_buffers, &segbuf->sb_segsum_buffers);
147 segbuf->sb_sum.nblocks++;
148 segbuf->sb_sum.nsumblk++;
149}
150
151static inline void
152nilfs_segbuf_add_payload_buffer(struct nilfs_segment_buffer *segbuf,
153 struct buffer_head *bh)
154{
155 list_add_tail(&bh->b_assoc_buffers, &segbuf->sb_payload_buffers);
156 segbuf->sb_sum.nblocks++;
157}
158
159static inline void
160nilfs_segbuf_add_file_buffer(struct nilfs_segment_buffer *segbuf,
161 struct buffer_head *bh)
162{
163 get_bh(bh);
164 nilfs_segbuf_add_payload_buffer(segbuf, bh);
165 segbuf->sb_sum.nfileblk++;
166}
167
168void nilfs_release_buffers(struct list_head *);
169
170static inline void nilfs_segbuf_clear(struct nilfs_segment_buffer *segbuf)
171{
172 nilfs_release_buffers(&segbuf->sb_segsum_buffers);
173 nilfs_release_buffers(&segbuf->sb_payload_buffers);
174}
175
176struct nilfs_write_info {
177 struct bio *bio;
178 int start, end; /* The region to be submitted */
179 int rest_blocks;
180 int max_pages;
181 int nr_vecs;
182 sector_t blocknr;
183
Ryusuke Konishi64b5a322009-04-06 19:01:36 -0700184 /*
185 * The following fields must be set explicitly
186 */
187 struct super_block *sb;
188 struct backing_dev_info *bdi; /* backing dev info */
189 struct buffer_head *bh_sr;
190};
191
192
193void nilfs_segbuf_prepare_write(struct nilfs_segment_buffer *,
194 struct nilfs_write_info *);
195int nilfs_segbuf_write(struct nilfs_segment_buffer *,
196 struct nilfs_write_info *);
Ryusuke Konishi9284ad22009-11-25 01:04:21 +0900197int nilfs_segbuf_wait(struct nilfs_segment_buffer *segbuf);
Ryusuke Konishi64b5a322009-04-06 19:01:36 -0700198
199#endif /* _NILFS_SEGBUF_H */