1
2
3
4
5
6#include <linux/time.h>
7#include <linux/pagemap.h>
8#include <linux/buffer_head.h>
9#include "reiserfs.h"
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24int direct2indirect(struct reiserfs_transaction_handle *th, struct inode *inode,
25 struct treepath *path, struct buffer_head *unbh,
26 loff_t tail_offset)
27{
28 struct super_block *sb = inode->i_sb;
29 struct buffer_head *up_to_date_bh;
30 struct item_head *p_le_ih = tp_item_head(path);
31 unsigned long total_tail = 0;
32
33
34 struct cpu_key end_key;
35
36
37
38
39
40 struct item_head ind_ih;
41 int blk_size;
42
43 int retval;
44
45 unp_t unfm_ptr;
46
47 BUG_ON(!th->t_trans_id);
48
49 REISERFS_SB(sb)->s_direct2indirect++;
50
51 blk_size = sb->s_blocksize;
52
53
54
55
56
57 copy_item_head(&ind_ih, p_le_ih);
58 set_le_ih_k_offset(&ind_ih, tail_offset);
59 set_le_ih_k_type(&ind_ih, TYPE_INDIRECT);
60
61
62 make_cpu_key(&end_key, inode, tail_offset, TYPE_INDIRECT, 4);
63
64
65 if (search_for_position_by_key(sb, &end_key, path) == POSITION_FOUND) {
66 reiserfs_error(sb, "PAP-14030",
67 "pasted or inserted byte exists in "
68 "the tree %K. Use fsck to repair.", &end_key);
69 pathrelse(path);
70 return -EIO;
71 }
72
73 p_le_ih = tp_item_head(path);
74
75 unfm_ptr = cpu_to_le32(unbh->b_blocknr);
76
77 if (is_statdata_le_ih(p_le_ih)) {
78
79 set_ih_free_space(&ind_ih, 0);
80 put_ih_item_len(&ind_ih, UNFM_P_SIZE);
81 PATH_LAST_POSITION(path)++;
82 retval =
83 reiserfs_insert_item(th, path, &end_key, &ind_ih, inode,
84 (char *)&unfm_ptr);
85 } else {
86
87 retval = reiserfs_paste_into_item(th, path, &end_key, inode,
88 (char *)&unfm_ptr,
89 UNFM_P_SIZE);
90 }
91 if (retval) {
92 return retval;
93 }
94
95
96
97
98
99
100 make_cpu_key(&end_key, inode, max_reiserfs_offset(inode), TYPE_DIRECT,
101 4);
102
103
104
105
106
107 while (1) {
108 int tail_size;
109
110
111
112
113
114 if (search_for_position_by_key(sb, &end_key, path) ==
115 POSITION_FOUND)
116 reiserfs_panic(sb, "PAP-14050",
117 "direct item (%K) not found", &end_key);
118 p_le_ih = tp_item_head(path);
119 RFALSE(!is_direct_le_ih(p_le_ih),
120 "vs-14055: direct item expected(%K), found %h",
121 &end_key, p_le_ih);
122 tail_size = (le_ih_k_offset(p_le_ih) & (blk_size - 1))
123 + ih_item_len(p_le_ih) - 1;
124
125
126
127
128
129
130
131
132 if (!unbh->b_page || buffer_uptodate(unbh)
133 || PageUptodate(unbh->b_page)) {
134 up_to_date_bh = NULL;
135 } else {
136 up_to_date_bh = unbh;
137 }
138 retval = reiserfs_delete_item(th, path, &end_key, inode,
139 up_to_date_bh);
140
141 total_tail += retval;
142
143
144 if (tail_size == retval)
145 break;
146
147 }
148
149
150
151
152 if (up_to_date_bh) {
153 unsigned pgoff =
154 (tail_offset + total_tail - 1) & (PAGE_CACHE_SIZE - 1);
155 char *kaddr = kmap_atomic(up_to_date_bh->b_page);
156 memset(kaddr + pgoff, 0, blk_size - total_tail);
157 kunmap_atomic(kaddr);
158 }
159
160 REISERFS_I(inode)->i_first_direct_byte = U32_MAX;
161
162 return 0;
163}
164
165
166void reiserfs_unmap_buffer(struct buffer_head *bh)
167{
168 lock_buffer(bh);
169 if (buffer_journaled(bh) || buffer_journal_dirty(bh)) {
170 BUG();
171 }
172 clear_buffer_dirty(bh);
173
174
175
176
177
178 if ((!list_empty(&bh->b_assoc_buffers) || bh->b_private) && bh->b_page) {
179 struct inode *inode = bh->b_page->mapping->host;
180 struct reiserfs_journal *j = SB_JOURNAL(inode->i_sb);
181 spin_lock(&j->j_dirty_buffers_lock);
182 list_del_init(&bh->b_assoc_buffers);
183 reiserfs_free_jh(bh);
184 spin_unlock(&j->j_dirty_buffers_lock);
185 }
186 clear_buffer_mapped(bh);
187 clear_buffer_req(bh);
188 clear_buffer_new(bh);
189 bh->b_bdev = NULL;
190 unlock_buffer(bh);
191}
192
193
194
195
196
197
198
199
200
201int indirect2direct(struct reiserfs_transaction_handle *th,
202 struct inode *inode, struct page *page,
203 struct treepath *path,
204 const struct cpu_key *item_key,
205
206
207 loff_t n_new_file_size,
208 char *mode)
209{
210 struct super_block *sb = inode->i_sb;
211 struct item_head s_ih;
212 unsigned long block_size = sb->s_blocksize;
213 char *tail;
214 int tail_len, round_tail_len;
215 loff_t pos, pos1;
216 struct cpu_key key;
217
218 BUG_ON(!th->t_trans_id);
219
220 REISERFS_SB(sb)->s_indirect2direct++;
221
222 *mode = M_SKIP_BALANCING;
223
224
225 copy_item_head(&s_ih, tp_item_head(path));
226
227 tail_len = (n_new_file_size & (block_size - 1));
228 if (get_inode_sd_version(inode) == STAT_DATA_V2)
229 round_tail_len = ROUND_UP(tail_len);
230 else
231 round_tail_len = tail_len;
232
233 pos =
234 le_ih_k_offset(&s_ih) - 1 + (ih_item_len(&s_ih) / UNFM_P_SIZE -
235 1) * sb->s_blocksize;
236 pos1 = pos;
237
238
239
240
241
242
243
244 tail = (char *)kmap(page);
245
246 if (path_changed(&s_ih, path)) {
247
248 if (search_for_position_by_key(sb, item_key, path)
249 == POSITION_NOT_FOUND)
250 reiserfs_panic(sb, "PAP-5520",
251 "item to be converted %K does not exist",
252 item_key);
253 copy_item_head(&s_ih, tp_item_head(path));
254#ifdef CONFIG_REISERFS_CHECK
255 pos = le_ih_k_offset(&s_ih) - 1 +
256 (ih_item_len(&s_ih) / UNFM_P_SIZE -
257 1) * sb->s_blocksize;
258 if (pos != pos1)
259 reiserfs_panic(sb, "vs-5530", "tail position "
260 "changed while we were reading it");
261#endif
262 }
263
264
265 make_le_item_head(&s_ih, NULL, get_inode_item_key_version(inode),
266 pos1 + 1, TYPE_DIRECT, round_tail_len,
267 0xffff );
268
269
270
271
272
273
274 tail = tail + (pos & (PAGE_CACHE_SIZE - 1));
275
276 PATH_LAST_POSITION(path)++;
277
278 key = *item_key;
279 set_cpu_key_k_type(&key, TYPE_DIRECT);
280 key.key_length = 4;
281
282 if (reiserfs_insert_item(th, path, &key, &s_ih, inode,
283 tail ? tail : NULL) < 0) {
284
285
286
287
288
289
290
291
292 kunmap(page);
293 return block_size - round_tail_len;
294 }
295 kunmap(page);
296
297
298 reiserfs_update_sd(th, inode);
299
300
301
302
303
304
305
306
307
308
309
310 *mode = M_CUT;
311
312
313
314 REISERFS_I(inode)->i_first_direct_byte = pos1 + 1;
315
316 return block_size - round_tail_len;
317}
318