blob: c9ebd4fe8f7ee3d39d4afa06ac70721ecedfc357 [file] [log] [blame]
Chris Mason6cbd5572007-06-12 09:07:21 -04001/*
2 * Copyright (C) 2007 Oracle. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public
6 * License v2 as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public
14 * License along with this program; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 021110-1307, USA.
17 */
18
Chris Mason39279cc2007-06-12 06:35:45 -040019#include <linux/fs.h>
20#include <linux/pagemap.h>
21#include <linux/highmem.h>
22#include <linux/time.h>
23#include <linux/init.h>
24#include <linux/string.h>
25#include <linux/smp_lock.h>
26#include <linux/backing-dev.h>
27#include <linux/mpage.h>
28#include <linux/swap.h>
29#include <linux/writeback.h>
30#include <linux/statfs.h>
31#include <linux/compat.h>
Chris Mason92fee662007-07-25 12:31:35 -040032#include <linux/version.h>
Chris Mason39279cc2007-06-12 06:35:45 -040033#include "ctree.h"
34#include "disk-io.h"
35#include "transaction.h"
36#include "btrfs_inode.h"
37#include "ioctl.h"
38#include "print-tree.h"
39
40
41static int btrfs_copy_from_user(loff_t pos, int num_pages, int write_bytes,
42 struct page **prepared_pages,
43 const char __user * buf)
44{
45 long page_fault = 0;
46 int i;
47 int offset = pos & (PAGE_CACHE_SIZE - 1);
48
49 for (i = 0; i < num_pages && write_bytes > 0; i++, offset = 0) {
50 size_t count = min_t(size_t,
51 PAGE_CACHE_SIZE - offset, write_bytes);
52 struct page *page = prepared_pages[i];
53 fault_in_pages_readable(buf, count);
54
55 /* Copy data from userspace to the current page */
56 kmap(page);
57 page_fault = __copy_from_user(page_address(page) + offset,
58 buf, count);
59 /* Flush processor's dcache for this page */
60 flush_dcache_page(page);
61 kunmap(page);
62 buf += count;
63 write_bytes -= count;
64
65 if (page_fault)
66 break;
67 }
68 return page_fault ? -EFAULT : 0;
69}
70
71static void btrfs_drop_pages(struct page **pages, size_t num_pages)
72{
73 size_t i;
74 for (i = 0; i < num_pages; i++) {
75 if (!pages[i])
76 break;
77 unlock_page(pages[i]);
78 mark_page_accessed(pages[i]);
79 page_cache_release(pages[i]);
80 }
81}
82
Chris Mason98ed5172008-01-03 10:01:48 -050083static int noinline insert_inline_extent(struct btrfs_trans_handle *trans,
Chris Masona52d9a82007-08-27 16:49:44 -040084 struct btrfs_root *root, struct inode *inode,
Chris Mason3326d1b2007-10-15 16:18:25 -040085 u64 offset, size_t size,
86 struct page **pages, size_t page_offset,
87 int num_pages)
Chris Mason54aa1f42007-06-22 14:16:25 -040088{
89 struct btrfs_key key;
90 struct btrfs_path *path;
Chris Mason5f39d392007-10-15 16:14:19 -040091 struct extent_buffer *leaf;
92 char *kaddr;
93 unsigned long ptr;
Chris Mason54aa1f42007-06-22 14:16:25 -040094 struct btrfs_file_extent_item *ei;
Chris Mason3326d1b2007-10-15 16:18:25 -040095 struct page *page;
Chris Mason54aa1f42007-06-22 14:16:25 -040096 u32 datasize;
97 int err = 0;
98 int ret;
Chris Mason3326d1b2007-10-15 16:18:25 -040099 int i;
100 ssize_t cur_size;
Chris Mason54aa1f42007-06-22 14:16:25 -0400101
102 path = btrfs_alloc_path();
103 if (!path)
104 return -ENOMEM;
105
Chris Mason54aa1f42007-06-22 14:16:25 -0400106 btrfs_set_trans_block_group(trans, inode);
107
108 key.objectid = inode->i_ino;
109 key.offset = offset;
Chris Mason54aa1f42007-06-22 14:16:25 -0400110 btrfs_set_key_type(&key, BTRFS_EXTENT_DATA_KEY);
Chris Mason54aa1f42007-06-22 14:16:25 -0400111
Chris Mason3326d1b2007-10-15 16:18:25 -0400112 ret = btrfs_search_slot(trans, root, &key, path, 0, 1);
113 if (ret < 0) {
Chris Mason54aa1f42007-06-22 14:16:25 -0400114 err = ret;
115 goto fail;
116 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400117 if (ret == 1) {
Chris Mason179e29e2007-11-01 11:28:41 -0400118 struct btrfs_key found_key;
119
120 if (path->slots[0] == 0)
121 goto insert;
122
Chris Mason3326d1b2007-10-15 16:18:25 -0400123 path->slots[0]--;
124 leaf = path->nodes[0];
Chris Mason179e29e2007-11-01 11:28:41 -0400125 btrfs_item_key_to_cpu(leaf, &found_key, path->slots[0]);
126
127 if (found_key.objectid != inode->i_ino)
128 goto insert;
129
130 if (found_key.type != BTRFS_EXTENT_DATA_KEY)
131 goto insert;
Chris Mason3326d1b2007-10-15 16:18:25 -0400132 ei = btrfs_item_ptr(leaf, path->slots[0],
133 struct btrfs_file_extent_item);
Chris Mason54aa1f42007-06-22 14:16:25 -0400134
Chris Mason3326d1b2007-10-15 16:18:25 -0400135 if (btrfs_file_extent_type(leaf, ei) !=
136 BTRFS_FILE_EXTENT_INLINE) {
137 goto insert;
138 }
139 btrfs_item_key_to_cpu(leaf, &key, path->slots[0]);
140 ret = 0;
141 }
142 if (ret == 0) {
143 u32 found_size;
Yan18f16f72007-10-25 15:42:57 -0400144 u64 found_end;
Chris Mason3326d1b2007-10-15 16:18:25 -0400145
146 leaf = path->nodes[0];
147 ei = btrfs_item_ptr(leaf, path->slots[0],
148 struct btrfs_file_extent_item);
149
150 if (btrfs_file_extent_type(leaf, ei) !=
151 BTRFS_FILE_EXTENT_INLINE) {
152 err = ret;
153 btrfs_print_leaf(root, leaf);
154 printk("found wasn't inline offset %Lu inode %lu\n",
155 offset, inode->i_ino);
156 goto fail;
157 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400158 found_size = btrfs_file_extent_inline_len(leaf,
159 btrfs_item_nr(leaf, path->slots[0]));
Yan18f16f72007-10-25 15:42:57 -0400160 found_end = key.offset + found_size;
Chris Mason3326d1b2007-10-15 16:18:25 -0400161
Yan18f16f72007-10-25 15:42:57 -0400162 if (found_end < offset + size) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400163 btrfs_release_path(root, path);
164 ret = btrfs_search_slot(trans, root, &key, path,
Yan18f16f72007-10-25 15:42:57 -0400165 offset + size - found_end, 1);
Chris Mason3326d1b2007-10-15 16:18:25 -0400166 BUG_ON(ret != 0);
Chris Mason179e29e2007-11-01 11:28:41 -0400167
Chris Mason3326d1b2007-10-15 16:18:25 -0400168 ret = btrfs_extend_item(trans, root, path,
Yan18f16f72007-10-25 15:42:57 -0400169 offset + size - found_end);
Chris Mason3326d1b2007-10-15 16:18:25 -0400170 if (ret) {
171 err = ret;
172 goto fail;
173 }
174 leaf = path->nodes[0];
175 ei = btrfs_item_ptr(leaf, path->slots[0],
176 struct btrfs_file_extent_item);
177 }
Yan18f16f72007-10-25 15:42:57 -0400178 if (found_end < offset) {
179 ptr = btrfs_file_extent_inline_start(ei) + found_size;
180 memset_extent_buffer(leaf, 0, ptr, offset - found_end);
181 }
Chris Mason3326d1b2007-10-15 16:18:25 -0400182 } else {
183insert:
184 btrfs_release_path(root, path);
Yan18f16f72007-10-25 15:42:57 -0400185 datasize = offset + size - key.offset;
186 datasize = btrfs_file_extent_calc_inline_size(datasize);
Chris Mason3326d1b2007-10-15 16:18:25 -0400187 ret = btrfs_insert_empty_item(trans, root, path, &key,
188 datasize);
189 if (ret) {
190 err = ret;
191 printk("got bad ret %d\n", ret);
192 goto fail;
193 }
194 leaf = path->nodes[0];
195 ei = btrfs_item_ptr(leaf, path->slots[0],
196 struct btrfs_file_extent_item);
197 btrfs_set_file_extent_generation(leaf, ei, trans->transid);
198 btrfs_set_file_extent_type(leaf, ei, BTRFS_FILE_EXTENT_INLINE);
199 }
Yan18f16f72007-10-25 15:42:57 -0400200 ptr = btrfs_file_extent_inline_start(ei) + offset - key.offset;
Chris Mason3326d1b2007-10-15 16:18:25 -0400201
202 cur_size = size;
203 i = 0;
204 while (size > 0) {
205 page = pages[i];
206 kaddr = kmap_atomic(page, KM_USER0);
Jens Axboeae2f5412007-10-19 09:22:59 -0400207 cur_size = min_t(size_t, PAGE_CACHE_SIZE - page_offset, size);
Chris Mason3326d1b2007-10-15 16:18:25 -0400208 write_extent_buffer(leaf, kaddr + page_offset, ptr, cur_size);
209 kunmap_atomic(kaddr, KM_USER0);
210 page_offset = 0;
211 ptr += cur_size;
212 size -= cur_size;
213 if (i >= num_pages) {
214 printk("i %d num_pages %d\n", i, num_pages);
215 }
216 i++;
217 }
Chris Mason5f39d392007-10-15 16:14:19 -0400218 btrfs_mark_buffer_dirty(leaf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400219fail:
220 btrfs_free_path(path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400221 return err;
222}
223
Chris Mason98ed5172008-01-03 10:01:48 -0500224static int noinline dirty_and_release_pages(struct btrfs_trans_handle *trans,
Chris Mason39279cc2007-06-12 06:35:45 -0400225 struct btrfs_root *root,
226 struct file *file,
227 struct page **pages,
228 size_t num_pages,
229 loff_t pos,
230 size_t write_bytes)
231{
Chris Mason39279cc2007-06-12 06:35:45 -0400232 int err = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400233 int i;
Chris Mason6da6aba2007-12-18 16:15:09 -0500234 struct inode *inode = fdentry(file)->d_inode;
Chris Masona52d9a82007-08-27 16:49:44 -0400235 struct extent_map *em;
236 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
Chris Masondb945352007-10-15 16:15:53 -0400237 u64 hint_byte;
238 u64 num_bytes;
Chris Masona52d9a82007-08-27 16:49:44 -0400239 u64 start_pos;
240 u64 end_of_last_block;
241 u64 end_pos = pos + write_bytes;
Yandcfec0d2007-11-06 10:26:26 -0500242 u64 inline_size;
Chris Masona52d9a82007-08-27 16:49:44 -0400243 loff_t isize = i_size_read(inode);
Chris Masona52d9a82007-08-27 16:49:44 -0400244 em = alloc_extent_map(GFP_NOFS);
245 if (!em)
246 return -ENOMEM;
Chris Mason39279cc2007-06-12 06:35:45 -0400247
Chris Masona52d9a82007-08-27 16:49:44 -0400248 em->bdev = inode->i_sb->s_bdev;
Chris Mason39279cc2007-06-12 06:35:45 -0400249
Chris Mason5f39d392007-10-15 16:14:19 -0400250 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Masondb945352007-10-15 16:15:53 -0400251 num_bytes = (write_bytes + pos - start_pos +
252 root->sectorsize - 1) & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400253
Chris Mason011410b2007-09-10 19:58:36 -0400254 down_read(&BTRFS_I(inode)->root->snap_sem);
Chris Masondb945352007-10-15 16:15:53 -0400255 end_of_last_block = start_pos + num_bytes - 1;
256
Chris Masonb888db22007-08-27 16:49:44 -0400257 lock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400258 mutex_lock(&root->fs_info->fs_mutex);
259 trans = btrfs_start_transaction(root, 1);
260 if (!trans) {
261 err = -ENOMEM;
262 goto out_unlock;
263 }
264 btrfs_set_trans_block_group(trans, inode);
Chris Masondb945352007-10-15 16:15:53 -0400265 inode->i_blocks += num_bytes >> 9;
266 hint_byte = 0;
Chris Masona52d9a82007-08-27 16:49:44 -0400267
268 if ((end_of_last_block & 4095) == 0) {
Christoph Hellwig94330632007-09-10 20:02:22 -0400269 printk("strange end of last %Lu %zu %Lu\n", start_pos, write_bytes, end_of_last_block);
Chris Masona52d9a82007-08-27 16:49:44 -0400270 }
271 set_extent_uptodate(em_tree, start_pos, end_of_last_block, GFP_NOFS);
272
273 /* FIXME...EIEIO, ENOSPC and more */
274
Chris Masona52d9a82007-08-27 16:49:44 -0400275 /* insert any holes we need to create */
276 if (inode->i_size < start_pos) {
277 u64 last_pos_in_file;
278 u64 hole_size;
Chris Mason5f39d392007-10-15 16:14:19 -0400279 u64 mask = root->sectorsize - 1;
Chris Masona52d9a82007-08-27 16:49:44 -0400280 last_pos_in_file = (isize + mask) & ~mask;
281 hole_size = (start_pos - last_pos_in_file + mask) & ~mask;
Chris Mason2bf5a722007-08-30 11:54:02 -0400282
Chris Masona52d9a82007-08-27 16:49:44 -0400283 if (last_pos_in_file < start_pos) {
Chris Mason2bf5a722007-08-30 11:54:02 -0400284 err = btrfs_drop_extents(trans, root, inode,
285 last_pos_in_file,
286 last_pos_in_file + hole_size,
Chris Mason3326d1b2007-10-15 16:18:25 -0400287 last_pos_in_file,
Chris Masondb945352007-10-15 16:15:53 -0400288 &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400289 if (err)
290 goto failed;
291
Chris Masona52d9a82007-08-27 16:49:44 -0400292 err = btrfs_insert_file_extent(trans, root,
293 inode->i_ino,
294 last_pos_in_file,
295 0, 0, hole_size);
Chris Mason39279cc2007-06-12 06:35:45 -0400296 }
Chris Masona52d9a82007-08-27 16:49:44 -0400297 if (err)
298 goto failed;
299 }
300
301 /*
302 * either allocate an extent for the new bytes or setup the key
303 * to show we are doing inline data in the extent
304 */
Chris Mason3326d1b2007-10-15 16:18:25 -0400305 inline_size = end_pos;
306 if (isize >= BTRFS_MAX_INLINE_DATA_SIZE(root) ||
Chris Mason179e29e2007-11-01 11:28:41 -0400307 inline_size > 32768 ||
Chris Mason3326d1b2007-10-15 16:18:25 -0400308 inline_size >= BTRFS_MAX_INLINE_DATA_SIZE(root)) {
Chris Masonb888db22007-08-27 16:49:44 -0400309 u64 last_end;
Chris Mason1832a6d2007-12-21 16:27:21 -0500310 u64 existing_delalloc = 0;
Chris Mason3326d1b2007-10-15 16:18:25 -0400311
Chris Masona52d9a82007-08-27 16:49:44 -0400312 for (i = 0; i < num_pages; i++) {
313 struct page *p = pages[i];
314 SetPageUptodate(p);
Chris Masonb888db22007-08-27 16:49:44 -0400315 set_page_dirty(p);
Chris Masona52d9a82007-08-27 16:49:44 -0400316 }
Chris Mason35ebb932007-10-30 16:56:53 -0400317 last_end = (u64)(pages[num_pages -1]->index) <<
318 PAGE_CACHE_SHIFT;
Chris Masonb888db22007-08-27 16:49:44 -0400319 last_end += PAGE_CACHE_SIZE - 1;
Chris Mason1832a6d2007-12-21 16:27:21 -0500320 if (start_pos < isize) {
321 u64 delalloc_start = start_pos;
322 existing_delalloc = count_range_bits(em_tree,
323 &delalloc_start,
324 end_of_last_block, (u64)-1,
325 EXTENT_DELALLOC);
326 }
Chris Masonb888db22007-08-27 16:49:44 -0400327 set_extent_delalloc(em_tree, start_pos, end_of_last_block,
328 GFP_NOFS);
Chris Mason1832a6d2007-12-21 16:27:21 -0500329 spin_lock(&root->fs_info->delalloc_lock);
330 root->fs_info->delalloc_bytes += (end_of_last_block + 1 -
331 start_pos) - existing_delalloc;
332 spin_unlock(&root->fs_info->delalloc_lock);
Chris Masona52d9a82007-08-27 16:49:44 -0400333 } else {
Chris Mason3326d1b2007-10-15 16:18:25 -0400334 u64 aligned_end;
Chris Masonb888db22007-08-27 16:49:44 -0400335 /* step one, delete the existing extents in this range */
Chris Mason3326d1b2007-10-15 16:18:25 -0400336 aligned_end = (pos + write_bytes + root->sectorsize - 1) &
337 ~((u64)root->sectorsize - 1);
Chris Mason2bf5a722007-08-30 11:54:02 -0400338 err = btrfs_drop_extents(trans, root, inode, start_pos,
Chris Mason179e29e2007-11-01 11:28:41 -0400339 aligned_end, aligned_end, &hint_byte);
Chris Mason2bf5a722007-08-30 11:54:02 -0400340 if (err)
341 goto failed;
Yandcfec0d2007-11-06 10:26:26 -0500342 if (isize > inline_size)
343 inline_size = min_t(u64, isize, aligned_end);
344 inline_size -= start_pos;
Chris Masona52d9a82007-08-27 16:49:44 -0400345 err = insert_inline_extent(trans, root, inode, start_pos,
Yandcfec0d2007-11-06 10:26:26 -0500346 inline_size, pages, 0, num_pages);
Chris Masona52d9a82007-08-27 16:49:44 -0400347 BUG_ON(err);
Chris Masona52d9a82007-08-27 16:49:44 -0400348 }
349 if (end_pos > isize) {
350 i_size_write(inode, end_pos);
351 btrfs_update_inode(trans, root, inode);
Chris Mason39279cc2007-06-12 06:35:45 -0400352 }
353failed:
Chris Masona52d9a82007-08-27 16:49:44 -0400354 err = btrfs_end_transaction(trans, root);
355out_unlock:
356 mutex_unlock(&root->fs_info->fs_mutex);
Chris Masonb888db22007-08-27 16:49:44 -0400357 unlock_extent(em_tree, start_pos, end_of_last_block, GFP_NOFS);
Chris Masona52d9a82007-08-27 16:49:44 -0400358 free_extent_map(em);
Chris Mason011410b2007-09-10 19:58:36 -0400359 up_read(&BTRFS_I(inode)->root->snap_sem);
Chris Mason39279cc2007-06-12 06:35:45 -0400360 return err;
361}
362
Chris Masona52d9a82007-08-27 16:49:44 -0400363int btrfs_drop_extent_cache(struct inode *inode, u64 start, u64 end)
364{
365 struct extent_map *em;
366 struct extent_map_tree *em_tree = &BTRFS_I(inode)->extent_tree;
367
368 while(1) {
369 em = lookup_extent_mapping(em_tree, start, end);
370 if (!em)
371 break;
372 remove_extent_mapping(em_tree, em);
373 /* once for us */
374 free_extent_map(em);
375 /* once for the tree*/
376 free_extent_map(em);
377 }
378 return 0;
379}
380
Chris Mason39279cc2007-06-12 06:35:45 -0400381/*
382 * this is very complex, but the basic idea is to drop all extents
383 * in the range start - end. hint_block is filled in with a block number
384 * that would be a good hint to the block allocator for this file.
385 *
386 * If an extent intersects the range but is not entirely inside the range
387 * it is either truncated or split. Anything entirely inside the range
388 * is deleted from the tree.
389 */
390int btrfs_drop_extents(struct btrfs_trans_handle *trans,
391 struct btrfs_root *root, struct inode *inode,
Chris Mason00f5c792007-11-30 10:09:33 -0500392 u64 start, u64 end, u64 inline_limit, u64 *hint_byte)
Chris Mason39279cc2007-06-12 06:35:45 -0400393{
Chris Mason39279cc2007-06-12 06:35:45 -0400394 u64 extent_end = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400395 u64 search_start = start;
Chris Mason00f5c792007-11-30 10:09:33 -0500396 struct extent_buffer *leaf;
397 struct btrfs_file_extent_item *extent;
398 struct btrfs_path *path;
399 struct btrfs_key key;
400 struct btrfs_file_extent_item old;
401 int keep;
402 int slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400403 int bookend;
404 int found_type;
405 int found_extent;
406 int found_inline;
Chris Masonccd467d2007-06-28 15:57:36 -0400407 int recow;
Chris Mason00f5c792007-11-30 10:09:33 -0500408 int ret;
Chris Mason39279cc2007-06-12 06:35:45 -0400409
Chris Masona52d9a82007-08-27 16:49:44 -0400410 btrfs_drop_extent_cache(inode, start, end - 1);
411
Chris Mason39279cc2007-06-12 06:35:45 -0400412 path = btrfs_alloc_path();
413 if (!path)
414 return -ENOMEM;
415 while(1) {
Chris Masonccd467d2007-06-28 15:57:36 -0400416 recow = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400417 btrfs_release_path(root, path);
418 ret = btrfs_lookup_file_extent(trans, root, path, inode->i_ino,
419 search_start, -1);
420 if (ret < 0)
421 goto out;
422 if (ret > 0) {
423 if (path->slots[0] == 0) {
424 ret = 0;
425 goto out;
426 }
427 path->slots[0]--;
428 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400429next_slot:
Chris Mason39279cc2007-06-12 06:35:45 -0400430 keep = 0;
431 bookend = 0;
432 found_extent = 0;
433 found_inline = 0;
434 extent = NULL;
Chris Mason5f39d392007-10-15 16:14:19 -0400435 leaf = path->nodes[0];
Chris Mason39279cc2007-06-12 06:35:45 -0400436 slot = path->slots[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400437 ret = 0;
Chris Mason5f39d392007-10-15 16:14:19 -0400438 btrfs_item_key_to_cpu(leaf, &key, slot);
Chris Mason39279cc2007-06-12 06:35:45 -0400439 if (key.offset >= end || key.objectid != inode->i_ino) {
Chris Mason39279cc2007-06-12 06:35:45 -0400440 goto out;
441 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400442 if (btrfs_key_type(&key) > BTRFS_EXTENT_DATA_KEY) {
Chris Mason39279cc2007-06-12 06:35:45 -0400443 goto out;
444 }
Chris Masonccd467d2007-06-28 15:57:36 -0400445 if (recow) {
446 search_start = key.offset;
447 continue;
448 }
Chris Mason8c2383c2007-06-18 09:57:58 -0400449 if (btrfs_key_type(&key) == BTRFS_EXTENT_DATA_KEY) {
450 extent = btrfs_item_ptr(leaf, slot,
451 struct btrfs_file_extent_item);
Chris Mason5f39d392007-10-15 16:14:19 -0400452 found_type = btrfs_file_extent_type(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400453 if (found_type == BTRFS_FILE_EXTENT_REG) {
Chris Mason257d0ce2007-11-07 21:08:16 -0500454 extent_end =
455 btrfs_file_extent_disk_bytenr(leaf,
456 extent);
457 if (extent_end)
458 *hint_byte = extent_end;
459
Chris Mason8c2383c2007-06-18 09:57:58 -0400460 extent_end = key.offset +
Chris Masondb945352007-10-15 16:15:53 -0400461 btrfs_file_extent_num_bytes(leaf, extent);
Chris Mason8c2383c2007-06-18 09:57:58 -0400462 found_extent = 1;
463 } else if (found_type == BTRFS_FILE_EXTENT_INLINE) {
Chris Mason5f39d392007-10-15 16:14:19 -0400464 struct btrfs_item *item;
465 item = btrfs_item_nr(leaf, slot);
Chris Mason8c2383c2007-06-18 09:57:58 -0400466 found_inline = 1;
467 extent_end = key.offset +
Chris Mason5f39d392007-10-15 16:14:19 -0400468 btrfs_file_extent_inline_len(leaf, item);
Chris Mason8c2383c2007-06-18 09:57:58 -0400469 }
470 } else {
471 extent_end = search_start;
Chris Mason39279cc2007-06-12 06:35:45 -0400472 }
473
474 /* we found nothing we can drop */
Chris Mason8c2383c2007-06-18 09:57:58 -0400475 if ((!found_extent && !found_inline) ||
476 search_start >= extent_end) {
477 int nextret;
478 u32 nritems;
Chris Mason5f39d392007-10-15 16:14:19 -0400479 nritems = btrfs_header_nritems(leaf);
Chris Mason8c2383c2007-06-18 09:57:58 -0400480 if (slot >= nritems - 1) {
481 nextret = btrfs_next_leaf(root, path);
482 if (nextret)
483 goto out;
Chris Masonccd467d2007-06-28 15:57:36 -0400484 recow = 1;
Chris Mason8c2383c2007-06-18 09:57:58 -0400485 } else {
486 path->slots[0]++;
487 }
488 goto next_slot;
Chris Mason39279cc2007-06-12 06:35:45 -0400489 }
490
Chris Mason39279cc2007-06-12 06:35:45 -0400491 if (found_inline) {
Chris Mason5f39d392007-10-15 16:14:19 -0400492 u64 mask = root->sectorsize - 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400493 search_start = (extent_end + mask) & ~mask;
494 } else
495 search_start = extent_end;
Yan6e3b9662007-12-14 11:14:42 -0500496 if (end <= extent_end && start >= key.offset && found_inline) {
Chris Mason179e29e2007-11-01 11:28:41 -0400497 *hint_byte = EXTENT_MAP_INLINE;
Yan6e3b9662007-12-14 11:14:42 -0500498 continue;
Chris Mason179e29e2007-11-01 11:28:41 -0400499 }
Chris Mason39279cc2007-06-12 06:35:45 -0400500 if (end < extent_end && end >= key.offset) {
501 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400502 u64 disk_bytenr =
503 btrfs_file_extent_disk_bytenr(leaf, extent);
504 u64 disk_num_bytes =
505 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400506 extent);
507 read_extent_buffer(leaf, &old,
508 (unsigned long)extent,
509 sizeof(old));
Chris Masondb945352007-10-15 16:15:53 -0400510 if (disk_bytenr != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400511 ret = btrfs_inc_extent_ref(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500512 disk_bytenr, disk_num_bytes,
513 root->root_key.objectid,
514 trans->transid,
515 key.objectid, end);
Chris Mason39279cc2007-06-12 06:35:45 -0400516 BUG_ON(ret);
517 }
518 }
Chris Mason179e29e2007-11-01 11:28:41 -0400519 bookend = 1;
520 if (found_inline && start <= key.offset &&
Chris Mason00f5c792007-11-30 10:09:33 -0500521 inline_limit < extent_end)
Chris Mason179e29e2007-11-01 11:28:41 -0400522 keep = 1;
Chris Mason39279cc2007-06-12 06:35:45 -0400523 }
Chris Mason39279cc2007-06-12 06:35:45 -0400524 /* truncate existing extent */
525 if (start > key.offset) {
526 u64 new_num;
527 u64 old_num;
528 keep = 1;
Chris Mason5f39d392007-10-15 16:14:19 -0400529 WARN_ON(start & (root->sectorsize - 1));
Chris Mason39279cc2007-06-12 06:35:45 -0400530 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400531 new_num = start - key.offset;
532 old_num = btrfs_file_extent_num_bytes(leaf,
533 extent);
534 *hint_byte =
535 btrfs_file_extent_disk_bytenr(leaf,
536 extent);
537 if (btrfs_file_extent_disk_bytenr(leaf,
538 extent)) {
Chris Mason39279cc2007-06-12 06:35:45 -0400539 inode->i_blocks -=
Chris Masondb945352007-10-15 16:15:53 -0400540 (old_num - new_num) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400541 }
Chris Masondb945352007-10-15 16:15:53 -0400542 btrfs_set_file_extent_num_bytes(leaf, extent,
543 new_num);
Chris Mason5f39d392007-10-15 16:14:19 -0400544 btrfs_mark_buffer_dirty(leaf);
Chris Mason00f5c792007-11-30 10:09:33 -0500545 } else if (key.offset < inline_limit &&
546 (end > extent_end) &&
547 (inline_limit < extent_end)) {
Chris Mason3326d1b2007-10-15 16:18:25 -0400548 u32 new_size;
549 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500550 inline_limit - key.offset);
Chris Mason3326d1b2007-10-15 16:18:25 -0400551 btrfs_truncate_item(trans, root, path,
Chris Mason179e29e2007-11-01 11:28:41 -0400552 new_size, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400553 }
554 }
555 /* delete the entire extent */
556 if (!keep) {
Chris Masondb945352007-10-15 16:15:53 -0400557 u64 disk_bytenr = 0;
558 u64 disk_num_bytes = 0;
559 u64 extent_num_bytes = 0;
Chris Mason7bb86312007-12-11 09:25:06 -0500560 u64 root_gen;
Chris Masond8d5f3e2007-12-11 12:42:00 -0500561 u64 root_owner;
Chris Mason7bb86312007-12-11 09:25:06 -0500562
Chris Masond8d5f3e2007-12-11 12:42:00 -0500563 root_gen = btrfs_header_generation(leaf);
564 root_owner = btrfs_header_owner(leaf);
Chris Mason39279cc2007-06-12 06:35:45 -0400565 if (found_extent) {
Chris Masondb945352007-10-15 16:15:53 -0400566 disk_bytenr =
567 btrfs_file_extent_disk_bytenr(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400568 extent);
Chris Masondb945352007-10-15 16:15:53 -0400569 disk_num_bytes =
570 btrfs_file_extent_disk_num_bytes(leaf,
Chris Mason5f39d392007-10-15 16:14:19 -0400571 extent);
Chris Masondb945352007-10-15 16:15:53 -0400572 extent_num_bytes =
573 btrfs_file_extent_num_bytes(leaf, extent);
574 *hint_byte =
575 btrfs_file_extent_disk_bytenr(leaf,
576 extent);
Chris Mason39279cc2007-06-12 06:35:45 -0400577 }
578 ret = btrfs_del_item(trans, root, path);
Chris Mason54aa1f42007-06-22 14:16:25 -0400579 /* TODO update progress marker and return */
Chris Mason39279cc2007-06-12 06:35:45 -0400580 BUG_ON(ret);
581 btrfs_release_path(root, path);
582 extent = NULL;
Chris Masondb945352007-10-15 16:15:53 -0400583 if (found_extent && disk_bytenr != 0) {
584 inode->i_blocks -= extent_num_bytes >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400585 ret = btrfs_free_extent(trans, root,
Chris Mason7bb86312007-12-11 09:25:06 -0500586 disk_bytenr,
587 disk_num_bytes,
Chris Masond8d5f3e2007-12-11 12:42:00 -0500588 root_owner,
Chris Mason7bb86312007-12-11 09:25:06 -0500589 root_gen, inode->i_ino,
590 key.offset, 0);
Chris Mason39279cc2007-06-12 06:35:45 -0400591 }
592
593 BUG_ON(ret);
594 if (!bookend && search_start >= end) {
595 ret = 0;
596 goto out;
597 }
598 if (!bookend)
599 continue;
600 }
Chris Mason179e29e2007-11-01 11:28:41 -0400601 if (bookend && found_inline && start <= key.offset &&
Chris Mason00f5c792007-11-30 10:09:33 -0500602 inline_limit < extent_end && key.offset <= inline_limit) {
Chris Mason179e29e2007-11-01 11:28:41 -0400603 u32 new_size;
604 new_size = btrfs_file_extent_calc_inline_size(
Chris Mason00f5c792007-11-30 10:09:33 -0500605 extent_end - inline_limit);
Chris Mason179e29e2007-11-01 11:28:41 -0400606 btrfs_truncate_item(trans, root, path, new_size, 0);
607 }
Chris Mason39279cc2007-06-12 06:35:45 -0400608 /* create bookend, splitting the extent in two */
609 if (bookend && found_extent) {
610 struct btrfs_key ins;
611 ins.objectid = inode->i_ino;
612 ins.offset = end;
Chris Mason39279cc2007-06-12 06:35:45 -0400613 btrfs_set_key_type(&ins, BTRFS_EXTENT_DATA_KEY);
Chris Mason39279cc2007-06-12 06:35:45 -0400614 btrfs_release_path(root, path);
615 ret = btrfs_insert_empty_item(trans, root, path, &ins,
616 sizeof(*extent));
Chris Mason8c2383c2007-06-18 09:57:58 -0400617
Chris Mason5f39d392007-10-15 16:14:19 -0400618 leaf = path->nodes[0];
Chris Mason8c2383c2007-06-18 09:57:58 -0400619 if (ret) {
Chris Mason5f39d392007-10-15 16:14:19 -0400620 btrfs_print_leaf(root, leaf);
621 printk("got %d on inserting %Lu %u %Lu start %Lu end %Lu found %Lu %Lu keep was %d\n", ret , ins.objectid, ins.type, ins.offset, start, end, key.offset, extent_end, keep);
Chris Mason8c2383c2007-06-18 09:57:58 -0400622 }
Chris Mason39279cc2007-06-12 06:35:45 -0400623 BUG_ON(ret);
Chris Mason5f39d392007-10-15 16:14:19 -0400624 extent = btrfs_item_ptr(leaf, path->slots[0],
625 struct btrfs_file_extent_item);
626 write_extent_buffer(leaf, &old,
627 (unsigned long)extent, sizeof(old));
Chris Mason39279cc2007-06-12 06:35:45 -0400628
Chris Mason5f39d392007-10-15 16:14:19 -0400629 btrfs_set_file_extent_offset(leaf, extent,
Chris Masondb945352007-10-15 16:15:53 -0400630 le64_to_cpu(old.offset) + end - key.offset);
631 WARN_ON(le64_to_cpu(old.num_bytes) <
632 (extent_end - end));
633 btrfs_set_file_extent_num_bytes(leaf, extent,
634 extent_end - end);
Chris Mason5f39d392007-10-15 16:14:19 -0400635 btrfs_set_file_extent_type(leaf, extent,
Chris Mason39279cc2007-06-12 06:35:45 -0400636 BTRFS_FILE_EXTENT_REG);
Chris Masondb945352007-10-15 16:15:53 -0400637
Chris Mason39279cc2007-06-12 06:35:45 -0400638 btrfs_mark_buffer_dirty(path->nodes[0]);
Chris Masondb945352007-10-15 16:15:53 -0400639 if (le64_to_cpu(old.disk_bytenr) != 0) {
Chris Mason39279cc2007-06-12 06:35:45 -0400640 inode->i_blocks +=
Chris Masondb945352007-10-15 16:15:53 -0400641 btrfs_file_extent_num_bytes(leaf,
642 extent) >> 9;
Chris Mason39279cc2007-06-12 06:35:45 -0400643 }
644 ret = 0;
645 goto out;
646 }
647 }
648out:
649 btrfs_free_path(path);
650 return ret;
651}
652
653/*
654 * this gets pages into the page cache and locks them down
655 */
Chris Mason98ed5172008-01-03 10:01:48 -0500656static int prepare_pages(struct btrfs_root *root, struct file *file,
657 struct page **pages, size_t num_pages,
658 loff_t pos, unsigned long first_index,
659 unsigned long last_index, size_t write_bytes)
Chris Mason39279cc2007-06-12 06:35:45 -0400660{
661 int i;
662 unsigned long index = pos >> PAGE_CACHE_SHIFT;
Chris Mason6da6aba2007-12-18 16:15:09 -0500663 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400664 int err = 0;
Chris Mason8c2383c2007-06-18 09:57:58 -0400665 u64 start_pos;
Chris Mason8c2383c2007-06-18 09:57:58 -0400666
Chris Mason5f39d392007-10-15 16:14:19 -0400667 start_pos = pos & ~((u64)root->sectorsize - 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400668
669 memset(pages, 0, num_pages * sizeof(struct page *));
670
671 for (i = 0; i < num_pages; i++) {
672 pages[i] = grab_cache_page(inode->i_mapping, index + i);
673 if (!pages[i]) {
674 err = -ENOMEM;
Chris Masona52d9a82007-08-27 16:49:44 -0400675 BUG_ON(1);
Chris Mason39279cc2007-06-12 06:35:45 -0400676 }
Chris Mason6da6aba2007-12-18 16:15:09 -0500677#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
678 ClearPageDirty(pages[i]);
679#else
Chris Masonccd467d2007-06-28 15:57:36 -0400680 cancel_dirty_page(pages[i], PAGE_CACHE_SIZE);
Chris Mason6da6aba2007-12-18 16:15:09 -0500681#endif
Chris Masonccd467d2007-06-28 15:57:36 -0400682 wait_on_page_writeback(pages[i]);
Christoph Hellwigb3cfa352007-09-17 11:25:58 -0400683 set_page_extent_mapped(pages[i]);
Chris Masonb888db22007-08-27 16:49:44 -0400684 WARN_ON(!PageLocked(pages[i]));
Chris Mason39279cc2007-06-12 06:35:45 -0400685 }
686 return 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400687}
688
689static ssize_t btrfs_file_write(struct file *file, const char __user *buf,
690 size_t count, loff_t *ppos)
691{
692 loff_t pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400693 loff_t start_pos;
694 ssize_t num_written = 0;
695 ssize_t err = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400696 int ret = 0;
Chris Mason6da6aba2007-12-18 16:15:09 -0500697 struct inode *inode = fdentry(file)->d_inode;
Chris Mason39279cc2007-06-12 06:35:45 -0400698 struct btrfs_root *root = BTRFS_I(inode)->root;
Chris Mason8c2383c2007-06-18 09:57:58 -0400699 struct page **pages = NULL;
700 int nrptrs;
Chris Mason39279cc2007-06-12 06:35:45 -0400701 struct page *pinned[2];
702 unsigned long first_index;
703 unsigned long last_index;
Chris Mason8c2383c2007-06-18 09:57:58 -0400704
705 nrptrs = min((count + PAGE_CACHE_SIZE - 1) / PAGE_CACHE_SIZE,
706 PAGE_CACHE_SIZE / (sizeof(struct page *)));
Chris Mason39279cc2007-06-12 06:35:45 -0400707 pinned[0] = NULL;
708 pinned[1] = NULL;
709 if (file->f_flags & O_DIRECT)
710 return -EINVAL;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400711
Chris Mason39279cc2007-06-12 06:35:45 -0400712 pos = *ppos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400713 start_pos = pos;
714
Chris Mason39279cc2007-06-12 06:35:45 -0400715 vfs_check_frozen(inode->i_sb, SB_FREEZE_WRITE);
716 current->backing_dev_info = inode->i_mapping->backing_dev_info;
717 err = generic_write_checks(file, &pos, &count, S_ISBLK(inode->i_mode));
718 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500719 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400720 if (count == 0)
Chris Mason1832a6d2007-12-21 16:27:21 -0500721 goto out_nolock;
Chris Mason6da6aba2007-12-18 16:15:09 -0500722 err = remove_suid(fdentry(file));
Chris Mason39279cc2007-06-12 06:35:45 -0400723 if (err)
Chris Mason1832a6d2007-12-21 16:27:21 -0500724 goto out_nolock;
Chris Mason39279cc2007-06-12 06:35:45 -0400725 file_update_time(file);
726
Chris Mason8c2383c2007-06-18 09:57:58 -0400727 pages = kmalloc(nrptrs * sizeof(struct page *), GFP_KERNEL);
Chris Mason39279cc2007-06-12 06:35:45 -0400728
729 mutex_lock(&inode->i_mutex);
730 first_index = pos >> PAGE_CACHE_SHIFT;
731 last_index = (pos + count) >> PAGE_CACHE_SHIFT;
732
733 /*
734 * there are lots of better ways to do this, but this code
735 * makes sure the first and last page in the file range are
736 * up to date and ready for cow
737 */
738 if ((pos & (PAGE_CACHE_SIZE - 1))) {
739 pinned[0] = grab_cache_page(inode->i_mapping, first_index);
740 if (!PageUptodate(pinned[0])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400741 ret = btrfs_readpage(NULL, pinned[0]);
Chris Mason39279cc2007-06-12 06:35:45 -0400742 BUG_ON(ret);
743 wait_on_page_locked(pinned[0]);
744 } else {
745 unlock_page(pinned[0]);
746 }
747 }
748 if ((pos + count) & (PAGE_CACHE_SIZE - 1)) {
749 pinned[1] = grab_cache_page(inode->i_mapping, last_index);
750 if (!PageUptodate(pinned[1])) {
Chris Mason9ebefb182007-06-15 13:50:00 -0400751 ret = btrfs_readpage(NULL, pinned[1]);
Chris Mason39279cc2007-06-12 06:35:45 -0400752 BUG_ON(ret);
753 wait_on_page_locked(pinned[1]);
754 } else {
755 unlock_page(pinned[1]);
756 }
757 }
758
Chris Mason39279cc2007-06-12 06:35:45 -0400759 while(count > 0) {
760 size_t offset = pos & (PAGE_CACHE_SIZE - 1);
Chris Mason11bd1432007-06-22 14:16:24 -0400761 size_t write_bytes = min(count, nrptrs *
762 (size_t)PAGE_CACHE_SIZE -
Chris Mason8c2383c2007-06-18 09:57:58 -0400763 offset);
Chris Mason39279cc2007-06-12 06:35:45 -0400764 size_t num_pages = (write_bytes + PAGE_CACHE_SIZE - 1) >>
765 PAGE_CACHE_SHIFT;
766
Chris Mason8c2383c2007-06-18 09:57:58 -0400767 WARN_ON(num_pages > nrptrs);
Chris Mason39279cc2007-06-12 06:35:45 -0400768 memset(pages, 0, sizeof(pages));
Chris Mason1832a6d2007-12-21 16:27:21 -0500769
770 mutex_lock(&root->fs_info->fs_mutex);
771 ret = btrfs_check_free_space(root, write_bytes, 0);
772 mutex_unlock(&root->fs_info->fs_mutex);
773 if (ret)
774 goto out;
775
Chris Mason39279cc2007-06-12 06:35:45 -0400776 ret = prepare_pages(root, file, pages, num_pages,
777 pos, first_index, last_index,
Chris Mason8c2383c2007-06-18 09:57:58 -0400778 write_bytes);
Chris Mason54aa1f42007-06-22 14:16:25 -0400779 if (ret)
780 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400781
Chris Mason39279cc2007-06-12 06:35:45 -0400782 ret = btrfs_copy_from_user(pos, num_pages,
783 write_bytes, pages, buf);
Chris Mason54aa1f42007-06-22 14:16:25 -0400784 if (ret) {
785 btrfs_drop_pages(pages, num_pages);
786 goto out;
787 }
Chris Mason39279cc2007-06-12 06:35:45 -0400788
789 ret = dirty_and_release_pages(NULL, root, file, pages,
790 num_pages, pos, write_bytes);
Chris Mason39279cc2007-06-12 06:35:45 -0400791 btrfs_drop_pages(pages, num_pages);
Chris Mason54aa1f42007-06-22 14:16:25 -0400792 if (ret)
793 goto out;
Chris Mason39279cc2007-06-12 06:35:45 -0400794
795 buf += write_bytes;
796 count -= write_bytes;
797 pos += write_bytes;
798 num_written += write_bytes;
799
Chris Mason8c2383c2007-06-18 09:57:58 -0400800 balance_dirty_pages_ratelimited_nr(inode->i_mapping, num_pages);
Chris Mason448d6402007-11-27 07:52:01 -0800801 if (num_pages < (root->leafsize >> PAGE_CACHE_SHIFT) + 1)
802 btrfs_btree_balance_dirty(root, 1);
Chris Mason39279cc2007-06-12 06:35:45 -0400803 cond_resched();
804 }
Chris Mason39279cc2007-06-12 06:35:45 -0400805out:
Chris Mason1832a6d2007-12-21 16:27:21 -0500806 mutex_unlock(&inode->i_mutex);
807out_nolock:
Chris Mason8c2383c2007-06-18 09:57:58 -0400808 kfree(pages);
Chris Mason39279cc2007-06-12 06:35:45 -0400809 if (pinned[0])
810 page_cache_release(pinned[0]);
811 if (pinned[1])
812 page_cache_release(pinned[1]);
813 *ppos = pos;
Chris Mason2ff3e9b2007-10-29 14:36:41 -0400814
815 if (num_written > 0 && ((file->f_flags & O_SYNC) || IS_SYNC(inode))) {
816 err = sync_page_range(inode, inode->i_mapping,
817 start_pos, num_written);
818 if (err < 0)
819 num_written = err;
820 }
Chris Mason39279cc2007-06-12 06:35:45 -0400821 current->backing_dev_info = NULL;
Chris Mason39279cc2007-06-12 06:35:45 -0400822 return num_written ? num_written : err;
823}
824
Chris Mason39279cc2007-06-12 06:35:45 -0400825static int btrfs_sync_file(struct file *file,
826 struct dentry *dentry, int datasync)
827{
828 struct inode *inode = dentry->d_inode;
829 struct btrfs_root *root = BTRFS_I(inode)->root;
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400830 int ret = 0;
Chris Mason39279cc2007-06-12 06:35:45 -0400831 struct btrfs_trans_handle *trans;
832
833 /*
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400834 * check the transaction that last modified this inode
835 * and see if its already been committed
Chris Mason39279cc2007-06-12 06:35:45 -0400836 */
837 mutex_lock(&root->fs_info->fs_mutex);
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400838 if (!BTRFS_I(inode)->last_trans)
839 goto out;
840 mutex_lock(&root->fs_info->trans_mutex);
841 if (BTRFS_I(inode)->last_trans <=
842 root->fs_info->last_trans_committed) {
843 BTRFS_I(inode)->last_trans = 0;
844 mutex_unlock(&root->fs_info->trans_mutex);
845 goto out;
846 }
847 mutex_unlock(&root->fs_info->trans_mutex);
848
849 /*
Chris Masona52d9a82007-08-27 16:49:44 -0400850 * ok we haven't committed the transaction yet, lets do a commit
851 */
Chris Mason39279cc2007-06-12 06:35:45 -0400852 trans = btrfs_start_transaction(root, 1);
853 if (!trans) {
854 ret = -ENOMEM;
855 goto out;
856 }
857 ret = btrfs_commit_transaction(trans, root);
Chris Mason39279cc2007-06-12 06:35:45 -0400858out:
Josef Bacik15ee9bc2007-08-10 16:22:09 -0400859 mutex_unlock(&root->fs_info->fs_mutex);
Chris Mason39279cc2007-06-12 06:35:45 -0400860 return ret > 0 ? EIO : ret;
861}
862
Chris Mason9ebefb182007-06-15 13:50:00 -0400863static struct vm_operations_struct btrfs_file_vm_ops = {
Chris Mason92fee662007-07-25 12:31:35 -0400864#if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,23)
865 .nopage = filemap_nopage,
866 .populate = filemap_populate,
867#else
868 .fault = filemap_fault,
869#endif
Chris Mason9ebefb182007-06-15 13:50:00 -0400870 .page_mkwrite = btrfs_page_mkwrite,
871};
872
873static int btrfs_file_mmap(struct file *filp, struct vm_area_struct *vma)
874{
875 vma->vm_ops = &btrfs_file_vm_ops;
876 file_accessed(filp);
877 return 0;
878}
879
Chris Mason39279cc2007-06-12 06:35:45 -0400880struct file_operations btrfs_file_operations = {
881 .llseek = generic_file_llseek,
882 .read = do_sync_read,
Chris Mason9ebefb182007-06-15 13:50:00 -0400883 .aio_read = generic_file_aio_read,
Chris Masone9906a92007-12-14 12:56:58 -0500884 .splice_read = generic_file_splice_read,
Chris Mason6da6aba2007-12-18 16:15:09 -0500885#if LINUX_VERSION_CODE <= KERNEL_VERSION(2,6,18)
886 .sendfile = generic_file_sendfile,
887#endif
Chris Mason39279cc2007-06-12 06:35:45 -0400888 .write = btrfs_file_write,
Chris Mason9ebefb182007-06-15 13:50:00 -0400889 .mmap = btrfs_file_mmap,
Chris Mason39279cc2007-06-12 06:35:45 -0400890 .open = generic_file_open,
Chris Mason39279cc2007-06-12 06:35:45 -0400891 .fsync = btrfs_sync_file,
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400892 .unlocked_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400893#ifdef CONFIG_COMPAT
Christoph Hellwig34287aa2007-09-14 10:22:47 -0400894 .compat_ioctl = btrfs_ioctl,
Chris Mason39279cc2007-06-12 06:35:45 -0400895#endif
896};
897