ext4: ext4_inline_data_fiemap should respect callers argument
[deliverable/linux.git] / fs / ext4 / inline.c
CommitLineData
67cf5b09
TM
1/*
2 * Copyright (c) 2012 Taobao.
3 * Written by Tao Ma <boyu.mt@taobao.com>
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of version 2.1 of the GNU Lesser General Public License
7 * as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 */
14#include "ext4_jbd2.h"
15#include "ext4.h"
16#include "xattr.h"
f19d5870 17#include "truncate.h"
94191985 18#include <linux/fiemap.h>
67cf5b09
TM
19
20#define EXT4_XATTR_SYSTEM_DATA "data"
21#define EXT4_MIN_INLINE_DATA_SIZE ((sizeof(__le32) * EXT4_N_BLOCKS))
8af0f082
TM
22#define EXT4_INLINE_DOTDOT_OFFSET 2
23#define EXT4_INLINE_DOTDOT_SIZE 4
67cf5b09 24
c197855e 25static int ext4_get_inline_size(struct inode *inode)
67cf5b09
TM
26{
27 if (EXT4_I(inode)->i_inline_off)
28 return EXT4_I(inode)->i_inline_size;
29
30 return 0;
31}
32
33static int get_max_inline_xattr_value_size(struct inode *inode,
34 struct ext4_iloc *iloc)
35{
36 struct ext4_xattr_ibody_header *header;
37 struct ext4_xattr_entry *entry;
38 struct ext4_inode *raw_inode;
39 int free, min_offs;
40
41 min_offs = EXT4_SB(inode->i_sb)->s_inode_size -
42 EXT4_GOOD_OLD_INODE_SIZE -
43 EXT4_I(inode)->i_extra_isize -
44 sizeof(struct ext4_xattr_ibody_header);
45
46 /*
47 * We need to subtract another sizeof(__u32) since an in-inode xattr
48 * needs an empty 4 bytes to indicate the gap between the xattr entry
49 * and the name/value pair.
50 */
51 if (!ext4_test_inode_state(inode, EXT4_STATE_XATTR))
52 return EXT4_XATTR_SIZE(min_offs -
53 EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA)) -
54 EXT4_XATTR_ROUND - sizeof(__u32));
55
56 raw_inode = ext4_raw_inode(iloc);
57 header = IHDR(inode, raw_inode);
58 entry = IFIRST(header);
59
60 /* Compute min_offs. */
61 for (; !IS_LAST_ENTRY(entry); entry = EXT4_XATTR_NEXT(entry)) {
62 if (!entry->e_value_block && entry->e_value_size) {
63 size_t offs = le16_to_cpu(entry->e_value_offs);
64 if (offs < min_offs)
65 min_offs = offs;
66 }
67 }
68 free = min_offs -
69 ((void *)entry - (void *)IFIRST(header)) - sizeof(__u32);
70
71 if (EXT4_I(inode)->i_inline_off) {
72 entry = (struct ext4_xattr_entry *)
73 ((void *)raw_inode + EXT4_I(inode)->i_inline_off);
74
c4932dbe 75 free += EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size));
67cf5b09
TM
76 goto out;
77 }
78
79 free -= EXT4_XATTR_LEN(strlen(EXT4_XATTR_SYSTEM_DATA));
80
81 if (free > EXT4_XATTR_ROUND)
82 free = EXT4_XATTR_SIZE(free - EXT4_XATTR_ROUND);
83 else
84 free = 0;
85
86out:
87 return free;
88}
89
90/*
91 * Get the maximum size we now can store in an inode.
92 * If we can't find the space for a xattr entry, don't use the space
93 * of the extents since we have no space to indicate the inline data.
94 */
95int ext4_get_max_inline_size(struct inode *inode)
96{
97 int error, max_inline_size;
98 struct ext4_iloc iloc;
99
100 if (EXT4_I(inode)->i_extra_isize == 0)
101 return 0;
102
103 error = ext4_get_inode_loc(inode, &iloc);
104 if (error) {
105 ext4_error_inode(inode, __func__, __LINE__, 0,
106 "can't get inode location %lu",
107 inode->i_ino);
108 return 0;
109 }
110
111 down_read(&EXT4_I(inode)->xattr_sem);
112 max_inline_size = get_max_inline_xattr_value_size(inode, &iloc);
113 up_read(&EXT4_I(inode)->xattr_sem);
114
115 brelse(iloc.bh);
116
117 if (!max_inline_size)
118 return 0;
119
120 return max_inline_size + EXT4_MIN_INLINE_DATA_SIZE;
121}
122
67cf5b09
TM
123/*
124 * this function does not take xattr_sem, which is OK because it is
125 * currently only used in a code path coming form ext4_iget, before
126 * the new inode has been unlocked
127 */
128int ext4_find_inline_data_nolock(struct inode *inode)
129{
130 struct ext4_xattr_ibody_find is = {
131 .s = { .not_found = -ENODATA, },
132 };
133 struct ext4_xattr_info i = {
134 .name_index = EXT4_XATTR_INDEX_SYSTEM,
135 .name = EXT4_XATTR_SYSTEM_DATA,
136 };
137 int error;
138
139 if (EXT4_I(inode)->i_extra_isize == 0)
140 return 0;
141
142 error = ext4_get_inode_loc(inode, &is.iloc);
143 if (error)
144 return error;
145
146 error = ext4_xattr_ibody_find(inode, &i, &is);
147 if (error)
148 goto out;
149
150 if (!is.s.not_found) {
151 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
152 (void *)ext4_raw_inode(&is.iloc));
153 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
154 le32_to_cpu(is.s.here->e_value_size);
155 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
156 }
157out:
158 brelse(is.iloc.bh);
159 return error;
160}
161
162static int ext4_read_inline_data(struct inode *inode, void *buffer,
163 unsigned int len,
164 struct ext4_iloc *iloc)
165{
166 struct ext4_xattr_entry *entry;
167 struct ext4_xattr_ibody_header *header;
168 int cp_len = 0;
169 struct ext4_inode *raw_inode;
170
171 if (!len)
172 return 0;
173
174 BUG_ON(len > EXT4_I(inode)->i_inline_size);
175
176 cp_len = len < EXT4_MIN_INLINE_DATA_SIZE ?
177 len : EXT4_MIN_INLINE_DATA_SIZE;
178
179 raw_inode = ext4_raw_inode(iloc);
180 memcpy(buffer, (void *)(raw_inode->i_block), cp_len);
181
182 len -= cp_len;
183 buffer += cp_len;
184
185 if (!len)
186 goto out;
187
188 header = IHDR(inode, raw_inode);
189 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
190 EXT4_I(inode)->i_inline_off);
191 len = min_t(unsigned int, len,
192 (unsigned int)le32_to_cpu(entry->e_value_size));
193
194 memcpy(buffer,
195 (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs), len);
196 cp_len += len;
197
198out:
199 return cp_len;
200}
201
202/*
203 * write the buffer to the inline inode.
204 * If 'create' is set, we don't need to do the extra copy in the xattr
0d812f77
TM
205 * value since it is already handled by ext4_xattr_ibody_inline_set.
206 * That saves us one memcpy.
67cf5b09 207 */
c197855e
SH
208static void ext4_write_inline_data(struct inode *inode, struct ext4_iloc *iloc,
209 void *buffer, loff_t pos, unsigned int len)
67cf5b09
TM
210{
211 struct ext4_xattr_entry *entry;
212 struct ext4_xattr_ibody_header *header;
213 struct ext4_inode *raw_inode;
214 int cp_len = 0;
215
216 BUG_ON(!EXT4_I(inode)->i_inline_off);
217 BUG_ON(pos + len > EXT4_I(inode)->i_inline_size);
218
219 raw_inode = ext4_raw_inode(iloc);
220 buffer += pos;
221
222 if (pos < EXT4_MIN_INLINE_DATA_SIZE) {
223 cp_len = pos + len > EXT4_MIN_INLINE_DATA_SIZE ?
224 EXT4_MIN_INLINE_DATA_SIZE - pos : len;
225 memcpy((void *)raw_inode->i_block + pos, buffer, cp_len);
226
227 len -= cp_len;
228 buffer += cp_len;
229 pos += cp_len;
230 }
231
232 if (!len)
233 return;
234
235 pos -= EXT4_MIN_INLINE_DATA_SIZE;
236 header = IHDR(inode, raw_inode);
237 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
238 EXT4_I(inode)->i_inline_off);
239
240 memcpy((void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs) + pos,
241 buffer, len);
242}
243
244static int ext4_create_inline_data(handle_t *handle,
245 struct inode *inode, unsigned len)
246{
247 int error;
248 void *value = NULL;
249 struct ext4_xattr_ibody_find is = {
250 .s = { .not_found = -ENODATA, },
251 };
252 struct ext4_xattr_info i = {
253 .name_index = EXT4_XATTR_INDEX_SYSTEM,
254 .name = EXT4_XATTR_SYSTEM_DATA,
255 };
256
257 error = ext4_get_inode_loc(inode, &is.iloc);
258 if (error)
259 return error;
260
5d601255 261 BUFFER_TRACE(is.iloc.bh, "get_write_access");
67cf5b09
TM
262 error = ext4_journal_get_write_access(handle, is.iloc.bh);
263 if (error)
264 goto out;
265
266 if (len > EXT4_MIN_INLINE_DATA_SIZE) {
bd9926e8 267 value = EXT4_ZERO_XATTR_VALUE;
67cf5b09
TM
268 len -= EXT4_MIN_INLINE_DATA_SIZE;
269 } else {
270 value = "";
271 len = 0;
272 }
273
274 /* Insert the the xttr entry. */
275 i.value = value;
276 i.value_len = len;
277
278 error = ext4_xattr_ibody_find(inode, &i, &is);
279 if (error)
280 goto out;
281
282 BUG_ON(!is.s.not_found);
283
0d812f77 284 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
67cf5b09
TM
285 if (error) {
286 if (error == -ENOSPC)
287 ext4_clear_inode_state(inode,
288 EXT4_STATE_MAY_INLINE_DATA);
289 goto out;
290 }
291
292 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
293 0, EXT4_MIN_INLINE_DATA_SIZE);
294
295 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
296 (void *)ext4_raw_inode(&is.iloc));
297 EXT4_I(inode)->i_inline_size = len + EXT4_MIN_INLINE_DATA_SIZE;
298 ext4_clear_inode_flag(inode, EXT4_INODE_EXTENTS);
299 ext4_set_inode_flag(inode, EXT4_INODE_INLINE_DATA);
300 get_bh(is.iloc.bh);
301 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
302
303out:
304 brelse(is.iloc.bh);
305 return error;
306}
307
308static int ext4_update_inline_data(handle_t *handle, struct inode *inode,
309 unsigned int len)
310{
311 int error;
312 void *value = NULL;
313 struct ext4_xattr_ibody_find is = {
314 .s = { .not_found = -ENODATA, },
315 };
316 struct ext4_xattr_info i = {
317 .name_index = EXT4_XATTR_INDEX_SYSTEM,
318 .name = EXT4_XATTR_SYSTEM_DATA,
319 };
320
321 /* If the old space is ok, write the data directly. */
322 if (len <= EXT4_I(inode)->i_inline_size)
323 return 0;
324
325 error = ext4_get_inode_loc(inode, &is.iloc);
326 if (error)
327 return error;
328
329 error = ext4_xattr_ibody_find(inode, &i, &is);
330 if (error)
331 goto out;
332
333 BUG_ON(is.s.not_found);
334
335 len -= EXT4_MIN_INLINE_DATA_SIZE;
336 value = kzalloc(len, GFP_NOFS);
337 if (!value)
338 goto out;
339
340 error = ext4_xattr_ibody_get(inode, i.name_index, i.name,
341 value, len);
342 if (error == -ENODATA)
343 goto out;
344
5d601255 345 BUFFER_TRACE(is.iloc.bh, "get_write_access");
67cf5b09
TM
346 error = ext4_journal_get_write_access(handle, is.iloc.bh);
347 if (error)
348 goto out;
349
350 /* Update the xttr entry. */
351 i.value = value;
352 i.value_len = len;
353
0d812f77 354 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
67cf5b09
TM
355 if (error)
356 goto out;
357
358 EXT4_I(inode)->i_inline_off = (u16)((void *)is.s.here -
359 (void *)ext4_raw_inode(&is.iloc));
360 EXT4_I(inode)->i_inline_size = EXT4_MIN_INLINE_DATA_SIZE +
361 le32_to_cpu(is.s.here->e_value_size);
362 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
363 get_bh(is.iloc.bh);
364 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
365
366out:
367 kfree(value);
368 brelse(is.iloc.bh);
369 return error;
370}
371
c197855e
SH
372static int ext4_prepare_inline_data(handle_t *handle, struct inode *inode,
373 unsigned int len)
67cf5b09
TM
374{
375 int ret, size;
376 struct ext4_inode_info *ei = EXT4_I(inode);
377
378 if (!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA))
379 return -ENOSPC;
380
381 size = ext4_get_max_inline_size(inode);
382 if (size < len)
383 return -ENOSPC;
384
385 down_write(&EXT4_I(inode)->xattr_sem);
386
387 if (ei->i_inline_off)
388 ret = ext4_update_inline_data(handle, inode, len);
389 else
390 ret = ext4_create_inline_data(handle, inode, len);
391
392 up_write(&EXT4_I(inode)->xattr_sem);
393
394 return ret;
395}
396
397static int ext4_destroy_inline_data_nolock(handle_t *handle,
398 struct inode *inode)
399{
400 struct ext4_inode_info *ei = EXT4_I(inode);
401 struct ext4_xattr_ibody_find is = {
402 .s = { .not_found = 0, },
403 };
404 struct ext4_xattr_info i = {
405 .name_index = EXT4_XATTR_INDEX_SYSTEM,
406 .name = EXT4_XATTR_SYSTEM_DATA,
407 .value = NULL,
408 .value_len = 0,
409 };
410 int error;
411
412 if (!ei->i_inline_off)
413 return 0;
414
415 error = ext4_get_inode_loc(inode, &is.iloc);
416 if (error)
417 return error;
418
419 error = ext4_xattr_ibody_find(inode, &i, &is);
420 if (error)
421 goto out;
422
5d601255 423 BUFFER_TRACE(is.iloc.bh, "get_write_access");
67cf5b09
TM
424 error = ext4_journal_get_write_access(handle, is.iloc.bh);
425 if (error)
426 goto out;
427
0d812f77 428 error = ext4_xattr_ibody_inline_set(handle, inode, &i, &is);
67cf5b09
TM
429 if (error)
430 goto out;
431
432 memset((void *)ext4_raw_inode(&is.iloc)->i_block,
433 0, EXT4_MIN_INLINE_DATA_SIZE);
434
435 if (EXT4_HAS_INCOMPAT_FEATURE(inode->i_sb,
436 EXT4_FEATURE_INCOMPAT_EXTENTS)) {
437 if (S_ISDIR(inode->i_mode) ||
438 S_ISREG(inode->i_mode) || S_ISLNK(inode->i_mode)) {
439 ext4_set_inode_flag(inode, EXT4_INODE_EXTENTS);
440 ext4_ext_tree_init(handle, inode);
441 }
442 }
443 ext4_clear_inode_flag(inode, EXT4_INODE_INLINE_DATA);
444
445 get_bh(is.iloc.bh);
446 error = ext4_mark_iloc_dirty(handle, inode, &is.iloc);
447
448 EXT4_I(inode)->i_inline_off = 0;
449 EXT4_I(inode)->i_inline_size = 0;
450 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
451out:
452 brelse(is.iloc.bh);
453 if (error == -ENODATA)
454 error = 0;
455 return error;
456}
457
46c7f254
TM
458static int ext4_read_inline_page(struct inode *inode, struct page *page)
459{
460 void *kaddr;
461 int ret = 0;
462 size_t len;
463 struct ext4_iloc iloc;
464
465 BUG_ON(!PageLocked(page));
466 BUG_ON(!ext4_has_inline_data(inode));
467 BUG_ON(page->index);
468
469 if (!EXT4_I(inode)->i_inline_off) {
470 ext4_warning(inode->i_sb, "inode %lu doesn't have inline data.",
471 inode->i_ino);
472 goto out;
473 }
474
475 ret = ext4_get_inode_loc(inode, &iloc);
476 if (ret)
477 goto out;
478
479 len = min_t(size_t, ext4_get_inline_size(inode), i_size_read(inode));
480 kaddr = kmap_atomic(page);
481 ret = ext4_read_inline_data(inode, kaddr, len, &iloc);
482 flush_dcache_page(page);
483 kunmap_atomic(kaddr);
484 zero_user_segment(page, len, PAGE_CACHE_SIZE);
485 SetPageUptodate(page);
486 brelse(iloc.bh);
487
488out:
489 return ret;
490}
491
492int ext4_readpage_inline(struct inode *inode, struct page *page)
493{
494 int ret = 0;
495
496 down_read(&EXT4_I(inode)->xattr_sem);
497 if (!ext4_has_inline_data(inode)) {
498 up_read(&EXT4_I(inode)->xattr_sem);
499 return -EAGAIN;
500 }
501
502 /*
503 * Current inline data can only exist in the 1st page,
504 * So for all the other pages, just set them uptodate.
505 */
506 if (!page->index)
507 ret = ext4_read_inline_page(inode, page);
508 else if (!PageUptodate(page)) {
509 zero_user_segment(page, 0, PAGE_CACHE_SIZE);
510 SetPageUptodate(page);
511 }
512
513 up_read(&EXT4_I(inode)->xattr_sem);
514
515 unlock_page(page);
516 return ret >= 0 ? 0 : ret;
517}
518
f19d5870
TM
519static int ext4_convert_inline_data_to_extent(struct address_space *mapping,
520 struct inode *inode,
521 unsigned flags)
522{
523 int ret, needed_blocks;
524 handle_t *handle = NULL;
525 int retries = 0, sem_held = 0;
526 struct page *page = NULL;
527 unsigned from, to;
528 struct ext4_iloc iloc;
529
530 if (!ext4_has_inline_data(inode)) {
531 /*
532 * clear the flag so that no new write
533 * will trap here again.
534 */
535 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
536 return 0;
537 }
538
539 needed_blocks = ext4_writepage_trans_blocks(inode);
540
541 ret = ext4_get_inode_loc(inode, &iloc);
542 if (ret)
543 return ret;
544
545retry:
9924a92a 546 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
f19d5870
TM
547 if (IS_ERR(handle)) {
548 ret = PTR_ERR(handle);
549 handle = NULL;
550 goto out;
551 }
552
553 /* We cannot recurse into the filesystem as the transaction is already
554 * started */
555 flags |= AOP_FLAG_NOFS;
556
557 page = grab_cache_page_write_begin(mapping, 0, flags);
558 if (!page) {
559 ret = -ENOMEM;
560 goto out;
561 }
562
563 down_write(&EXT4_I(inode)->xattr_sem);
564 sem_held = 1;
565 /* If some one has already done this for us, just exit. */
566 if (!ext4_has_inline_data(inode)) {
567 ret = 0;
568 goto out;
569 }
570
571 from = 0;
572 to = ext4_get_inline_size(inode);
573 if (!PageUptodate(page)) {
574 ret = ext4_read_inline_page(inode, page);
575 if (ret < 0)
576 goto out;
577 }
578
579 ret = ext4_destroy_inline_data_nolock(handle, inode);
580 if (ret)
581 goto out;
582
583 if (ext4_should_dioread_nolock(inode))
584 ret = __block_write_begin(page, from, to, ext4_get_block_write);
585 else
586 ret = __block_write_begin(page, from, to, ext4_get_block);
587
588 if (!ret && ext4_should_journal_data(inode)) {
589 ret = ext4_walk_page_buffers(handle, page_buffers(page),
590 from, to, NULL,
591 do_journal_get_write_access);
592 }
593
594 if (ret) {
595 unlock_page(page);
596 page_cache_release(page);
684de574 597 page = NULL;
f19d5870
TM
598 ext4_orphan_add(handle, inode);
599 up_write(&EXT4_I(inode)->xattr_sem);
600 sem_held = 0;
601 ext4_journal_stop(handle);
602 handle = NULL;
603 ext4_truncate_failed_write(inode);
604 /*
605 * If truncate failed early the inode might
606 * still be on the orphan list; we need to
607 * make sure the inode is removed from the
608 * orphan list in that case.
609 */
610 if (inode->i_nlink)
611 ext4_orphan_del(NULL, inode);
612 }
613
614 if (ret == -ENOSPC && ext4_should_retry_alloc(inode->i_sb, &retries))
615 goto retry;
616
684de574
DW
617 if (page)
618 block_commit_write(page, from, to);
f19d5870
TM
619out:
620 if (page) {
621 unlock_page(page);
622 page_cache_release(page);
623 }
624 if (sem_held)
625 up_write(&EXT4_I(inode)->xattr_sem);
626 if (handle)
627 ext4_journal_stop(handle);
628 brelse(iloc.bh);
629 return ret;
630}
631
632/*
633 * Try to write data in the inode.
634 * If the inode has inline data, check whether the new write can be
635 * in the inode also. If not, create the page the handle, move the data
636 * to the page make it update and let the later codes create extent for it.
637 */
638int ext4_try_to_write_inline_data(struct address_space *mapping,
639 struct inode *inode,
640 loff_t pos, unsigned len,
641 unsigned flags,
642 struct page **pagep)
643{
644 int ret;
645 handle_t *handle;
646 struct page *page;
647 struct ext4_iloc iloc;
648
649 if (pos + len > ext4_get_max_inline_size(inode))
650 goto convert;
651
652 ret = ext4_get_inode_loc(inode, &iloc);
653 if (ret)
654 return ret;
655
656 /*
657 * The possible write could happen in the inode,
658 * so try to reserve the space in inode first.
659 */
9924a92a 660 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
f19d5870
TM
661 if (IS_ERR(handle)) {
662 ret = PTR_ERR(handle);
663 handle = NULL;
664 goto out;
665 }
666
667 ret = ext4_prepare_inline_data(handle, inode, pos + len);
668 if (ret && ret != -ENOSPC)
669 goto out;
670
671 /* We don't have space in inline inode, so convert it to extent. */
672 if (ret == -ENOSPC) {
673 ext4_journal_stop(handle);
674 brelse(iloc.bh);
675 goto convert;
676 }
677
678 flags |= AOP_FLAG_NOFS;
679
680 page = grab_cache_page_write_begin(mapping, 0, flags);
681 if (!page) {
682 ret = -ENOMEM;
683 goto out;
684 }
685
686 *pagep = page;
687 down_read(&EXT4_I(inode)->xattr_sem);
688 if (!ext4_has_inline_data(inode)) {
689 ret = 0;
690 unlock_page(page);
691 page_cache_release(page);
692 goto out_up_read;
693 }
694
695 if (!PageUptodate(page)) {
696 ret = ext4_read_inline_page(inode, page);
697 if (ret < 0)
698 goto out_up_read;
699 }
700
701 ret = 1;
702 handle = NULL;
703out_up_read:
704 up_read(&EXT4_I(inode)->xattr_sem);
705out:
706 if (handle)
707 ext4_journal_stop(handle);
708 brelse(iloc.bh);
709 return ret;
710convert:
711 return ext4_convert_inline_data_to_extent(mapping,
712 inode, flags);
713}
714
715int ext4_write_inline_data_end(struct inode *inode, loff_t pos, unsigned len,
716 unsigned copied, struct page *page)
717{
718 int ret;
719 void *kaddr;
720 struct ext4_iloc iloc;
721
722 if (unlikely(copied < len)) {
723 if (!PageUptodate(page)) {
724 copied = 0;
725 goto out;
726 }
727 }
728
729 ret = ext4_get_inode_loc(inode, &iloc);
730 if (ret) {
731 ext4_std_error(inode->i_sb, ret);
732 copied = 0;
733 goto out;
734 }
735
736 down_write(&EXT4_I(inode)->xattr_sem);
737 BUG_ON(!ext4_has_inline_data(inode));
738
739 kaddr = kmap_atomic(page);
740 ext4_write_inline_data(inode, &iloc, kaddr, pos, len);
741 kunmap_atomic(kaddr);
742 SetPageUptodate(page);
743 /* clear page dirty so that writepages wouldn't work for us. */
744 ClearPageDirty(page);
745
746 up_write(&EXT4_I(inode)->xattr_sem);
747 brelse(iloc.bh);
748out:
749 return copied;
750}
751
3fdcfb66
TM
752struct buffer_head *
753ext4_journalled_write_inline_data(struct inode *inode,
754 unsigned len,
755 struct page *page)
756{
757 int ret;
758 void *kaddr;
759 struct ext4_iloc iloc;
760
761 ret = ext4_get_inode_loc(inode, &iloc);
762 if (ret) {
763 ext4_std_error(inode->i_sb, ret);
764 return NULL;
765 }
766
767 down_write(&EXT4_I(inode)->xattr_sem);
768 kaddr = kmap_atomic(page);
769 ext4_write_inline_data(inode, &iloc, kaddr, 0, len);
770 kunmap_atomic(kaddr);
771 up_write(&EXT4_I(inode)->xattr_sem);
772
773 return iloc.bh;
774}
775
9c3569b5
TM
776/*
777 * Try to make the page cache and handle ready for the inline data case.
778 * We can call this function in 2 cases:
779 * 1. The inode is created and the first write exceeds inline size. We can
780 * clear the inode state safely.
781 * 2. The inode has inline data, then we need to read the data, make it
782 * update and dirty so that ext4_da_writepages can handle it. We don't
783 * need to start the journal since the file's metatdata isn't changed now.
784 */
785static int ext4_da_convert_inline_data_to_extent(struct address_space *mapping,
786 struct inode *inode,
787 unsigned flags,
788 void **fsdata)
789{
790 int ret = 0, inline_size;
791 struct page *page;
792
793 page = grab_cache_page_write_begin(mapping, 0, flags);
794 if (!page)
795 return -ENOMEM;
796
797 down_read(&EXT4_I(inode)->xattr_sem);
798 if (!ext4_has_inline_data(inode)) {
799 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
800 goto out;
801 }
802
803 inline_size = ext4_get_inline_size(inode);
804
805 if (!PageUptodate(page)) {
806 ret = ext4_read_inline_page(inode, page);
807 if (ret < 0)
808 goto out;
809 }
810
811 ret = __block_write_begin(page, 0, inline_size,
812 ext4_da_get_block_prep);
813 if (ret) {
814 ext4_truncate_failed_write(inode);
815 goto out;
816 }
817
818 SetPageDirty(page);
819 SetPageUptodate(page);
820 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
821 *fsdata = (void *)CONVERT_INLINE_DATA;
822
823out:
824 up_read(&EXT4_I(inode)->xattr_sem);
825 if (page) {
826 unlock_page(page);
827 page_cache_release(page);
828 }
829 return ret;
830}
831
832/*
833 * Prepare the write for the inline data.
834 * If the the data can be written into the inode, we just read
835 * the page and make it uptodate, and start the journal.
836 * Otherwise read the page, makes it dirty so that it can be
837 * handle in writepages(the i_disksize update is left to the
838 * normal ext4_da_write_end).
839 */
840int ext4_da_write_inline_data_begin(struct address_space *mapping,
841 struct inode *inode,
842 loff_t pos, unsigned len,
843 unsigned flags,
844 struct page **pagep,
845 void **fsdata)
846{
847 int ret, inline_size;
848 handle_t *handle;
849 struct page *page;
850 struct ext4_iloc iloc;
bc0ca9df 851 int retries;
9c3569b5
TM
852
853 ret = ext4_get_inode_loc(inode, &iloc);
854 if (ret)
855 return ret;
856
bc0ca9df 857retry_journal:
9924a92a 858 handle = ext4_journal_start(inode, EXT4_HT_INODE, 1);
9c3569b5
TM
859 if (IS_ERR(handle)) {
860 ret = PTR_ERR(handle);
9c3569b5
TM
861 goto out;
862 }
863
864 inline_size = ext4_get_max_inline_size(inode);
865
866 ret = -ENOSPC;
867 if (inline_size >= pos + len) {
868 ret = ext4_prepare_inline_data(handle, inode, pos + len);
869 if (ret && ret != -ENOSPC)
52e44777 870 goto out_journal;
9c3569b5
TM
871 }
872
5cc28a9e
DM
873 /*
874 * We cannot recurse into the filesystem as the transaction
875 * is already started.
876 */
877 flags |= AOP_FLAG_NOFS;
878
9c3569b5
TM
879 if (ret == -ENOSPC) {
880 ret = ext4_da_convert_inline_data_to_extent(mapping,
881 inode,
882 flags,
883 fsdata);
bc0ca9df 884 ext4_journal_stop(handle);
bc0ca9df
JK
885 if (ret == -ENOSPC &&
886 ext4_should_retry_alloc(inode->i_sb, &retries))
887 goto retry_journal;
9c3569b5
TM
888 goto out;
889 }
890
9c3569b5
TM
891
892 page = grab_cache_page_write_begin(mapping, 0, flags);
893 if (!page) {
894 ret = -ENOMEM;
52e44777 895 goto out_journal;
9c3569b5
TM
896 }
897
898 down_read(&EXT4_I(inode)->xattr_sem);
899 if (!ext4_has_inline_data(inode)) {
900 ret = 0;
901 goto out_release_page;
902 }
903
904 if (!PageUptodate(page)) {
905 ret = ext4_read_inline_page(inode, page);
906 if (ret < 0)
907 goto out_release_page;
908 }
909
910 up_read(&EXT4_I(inode)->xattr_sem);
911 *pagep = page;
9c3569b5
TM
912 brelse(iloc.bh);
913 return 1;
914out_release_page:
915 up_read(&EXT4_I(inode)->xattr_sem);
916 unlock_page(page);
917 page_cache_release(page);
52e44777
JK
918out_journal:
919 ext4_journal_stop(handle);
9c3569b5 920out:
9c3569b5
TM
921 brelse(iloc.bh);
922 return ret;
923}
924
925int ext4_da_write_inline_data_end(struct inode *inode, loff_t pos,
926 unsigned len, unsigned copied,
927 struct page *page)
928{
929 int i_size_changed = 0;
930
931 copied = ext4_write_inline_data_end(inode, pos, len, copied, page);
932
933 /*
934 * No need to use i_size_read() here, the i_size
935 * cannot change under us because we hold i_mutex.
936 *
937 * But it's important to update i_size while still holding page lock:
938 * page writeout could otherwise come in and zero beyond i_size.
939 */
940 if (pos+copied > inode->i_size) {
941 i_size_write(inode, pos+copied);
942 i_size_changed = 1;
943 }
944 unlock_page(page);
945 page_cache_release(page);
946
947 /*
948 * Don't mark the inode dirty under page lock. First, it unnecessarily
949 * makes the holding time of page lock longer. Second, it forces lock
950 * ordering of page lock and transaction start for journaling
951 * filesystems.
952 */
953 if (i_size_changed)
954 mark_inode_dirty(inode);
955
956 return copied;
957}
f19d5870 958
3c47d541
TM
959#ifdef INLINE_DIR_DEBUG
960void ext4_show_inline_dir(struct inode *dir, struct buffer_head *bh,
961 void *inline_start, int inline_size)
962{
963 int offset;
964 unsigned short de_len;
965 struct ext4_dir_entry_2 *de = inline_start;
966 void *dlimit = inline_start + inline_size;
967
968 trace_printk("inode %lu\n", dir->i_ino);
969 offset = 0;
970 while ((void *)de < dlimit) {
971 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size);
972 trace_printk("de: off %u rlen %u name %*.s nlen %u ino %u\n",
973 offset, de_len, de->name_len, de->name,
974 de->name_len, le32_to_cpu(de->inode));
975 if (ext4_check_dir_entry(dir, NULL, de, bh,
976 inline_start, inline_size, offset))
977 BUG();
978
979 offset += de_len;
980 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len);
981 }
982}
983#else
984#define ext4_show_inline_dir(dir, bh, inline_start, inline_size)
985#endif
986
987/*
988 * Add a new entry into a inline dir.
989 * It will return -ENOSPC if no space is available, and -EIO
990 * and -EEXIST if directory entry already exists.
991 */
992static int ext4_add_dirent_to_inline(handle_t *handle,
993 struct dentry *dentry,
994 struct inode *inode,
995 struct ext4_iloc *iloc,
996 void *inline_start, int inline_size)
997{
998 struct inode *dir = dentry->d_parent->d_inode;
999 const char *name = dentry->d_name.name;
1000 int namelen = dentry->d_name.len;
3c47d541
TM
1001 int err;
1002 struct ext4_dir_entry_2 *de;
1003
3c47d541
TM
1004 err = ext4_find_dest_de(dir, inode, iloc->bh,
1005 inline_start, inline_size,
1006 name, namelen, &de);
1007 if (err)
1008 return err;
1009
5d601255 1010 BUFFER_TRACE(iloc->bh, "get_write_access");
3c47d541
TM
1011 err = ext4_journal_get_write_access(handle, iloc->bh);
1012 if (err)
1013 return err;
1014 ext4_insert_dentry(inode, de, inline_size, name, namelen);
1015
1016 ext4_show_inline_dir(dir, iloc->bh, inline_start, inline_size);
1017
1018 /*
1019 * XXX shouldn't update any times until successful
1020 * completion of syscall, but too many callers depend
1021 * on this.
1022 *
1023 * XXX similarly, too many callers depend on
1024 * ext4_new_inode() setting the times, but error
1025 * recovery deletes the inode, so the worst that can
1026 * happen is that the times are slightly out of date
1027 * and/or different from the directory change time.
1028 */
1029 dir->i_mtime = dir->i_ctime = ext4_current_time(dir);
1030 ext4_update_dx_flag(dir);
1031 dir->i_version++;
1032 ext4_mark_inode_dirty(handle, dir);
1033 return 1;
1034}
1035
1036static void *ext4_get_inline_xattr_pos(struct inode *inode,
1037 struct ext4_iloc *iloc)
1038{
1039 struct ext4_xattr_entry *entry;
1040 struct ext4_xattr_ibody_header *header;
1041
1042 BUG_ON(!EXT4_I(inode)->i_inline_off);
1043
1044 header = IHDR(inode, ext4_raw_inode(iloc));
1045 entry = (struct ext4_xattr_entry *)((void *)ext4_raw_inode(iloc) +
1046 EXT4_I(inode)->i_inline_off);
1047
1048 return (void *)IFIRST(header) + le16_to_cpu(entry->e_value_offs);
1049}
1050
1051/* Set the final de to cover the whole block. */
1052static void ext4_update_final_de(void *de_buf, int old_size, int new_size)
1053{
1054 struct ext4_dir_entry_2 *de, *prev_de;
1055 void *limit;
1056 int de_len;
1057
1058 de = (struct ext4_dir_entry_2 *)de_buf;
1059 if (old_size) {
1060 limit = de_buf + old_size;
1061 do {
1062 prev_de = de;
1063 de_len = ext4_rec_len_from_disk(de->rec_len, old_size);
1064 de_buf += de_len;
1065 de = (struct ext4_dir_entry_2 *)de_buf;
1066 } while (de_buf < limit);
1067
1068 prev_de->rec_len = ext4_rec_len_to_disk(de_len + new_size -
1069 old_size, new_size);
1070 } else {
1071 /* this is just created, so create an empty entry. */
1072 de->inode = 0;
1073 de->rec_len = ext4_rec_len_to_disk(new_size, new_size);
1074 }
1075}
1076
1077static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
1078 struct ext4_iloc *iloc)
1079{
1080 int ret;
1081 int old_size = EXT4_I(dir)->i_inline_size - EXT4_MIN_INLINE_DATA_SIZE;
1082 int new_size = get_max_inline_xattr_value_size(dir, iloc);
1083
1084 if (new_size - old_size <= EXT4_DIR_REC_LEN(1))
1085 return -ENOSPC;
1086
1087 ret = ext4_update_inline_data(handle, dir,
1088 new_size + EXT4_MIN_INLINE_DATA_SIZE);
1089 if (ret)
1090 return ret;
1091
1092 ext4_update_final_de(ext4_get_inline_xattr_pos(dir, iloc), old_size,
1093 EXT4_I(dir)->i_inline_size -
1094 EXT4_MIN_INLINE_DATA_SIZE);
1095 dir->i_size = EXT4_I(dir)->i_disksize = EXT4_I(dir)->i_inline_size;
1096 return 0;
1097}
1098
1099static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1100 struct ext4_iloc *iloc,
1101 void *buf, int inline_size)
1102{
1103 ext4_create_inline_data(handle, inode, inline_size);
1104 ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1105 ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1106}
1107
1108static int ext4_finish_convert_inline_dir(handle_t *handle,
1109 struct inode *inode,
1110 struct buffer_head *dir_block,
1111 void *buf,
1112 int inline_size)
1113{
1114 int err, csum_size = 0, header_size = 0;
1115 struct ext4_dir_entry_2 *de;
1116 struct ext4_dir_entry_tail *t;
1117 void *target = dir_block->b_data;
1118
1119 /*
1120 * First create "." and ".." and then copy the dir information
1121 * back to the block.
1122 */
1123 de = (struct ext4_dir_entry_2 *)target;
1124 de = ext4_init_dot_dotdot(inode, de,
1125 inode->i_sb->s_blocksize, csum_size,
1126 le32_to_cpu(((struct ext4_dir_entry_2 *)buf)->inode), 1);
1127 header_size = (void *)de - target;
1128
1129 memcpy((void *)de, buf + EXT4_INLINE_DOTDOT_SIZE,
1130 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1131
9aa5d32b 1132 if (ext4_has_metadata_csum(inode->i_sb))
3c47d541
TM
1133 csum_size = sizeof(struct ext4_dir_entry_tail);
1134
1135 inode->i_size = inode->i_sb->s_blocksize;
1136 i_size_write(inode, inode->i_sb->s_blocksize);
1137 EXT4_I(inode)->i_disksize = inode->i_sb->s_blocksize;
1138 ext4_update_final_de(dir_block->b_data,
1139 inline_size - EXT4_INLINE_DOTDOT_SIZE + header_size,
1140 inode->i_sb->s_blocksize - csum_size);
1141
1142 if (csum_size) {
1143 t = EXT4_DIRENT_TAIL(dir_block->b_data,
1144 inode->i_sb->s_blocksize);
1145 initialize_dirent_tail(t, inode->i_sb->s_blocksize);
1146 }
1147 set_buffer_uptodate(dir_block);
1148 err = ext4_handle_dirty_dirent_node(handle, inode, dir_block);
1149 if (err)
1150 goto out;
1151 set_buffer_verified(dir_block);
1152out:
1153 return err;
1154}
1155
1156static int ext4_convert_inline_data_nolock(handle_t *handle,
1157 struct inode *inode,
1158 struct ext4_iloc *iloc)
1159{
1160 int error;
1161 void *buf = NULL;
1162 struct buffer_head *data_bh = NULL;
1163 struct ext4_map_blocks map;
1164 int inline_size;
1165
1166 inline_size = ext4_get_inline_size(inode);
1167 buf = kmalloc(inline_size, GFP_NOFS);
1168 if (!buf) {
1169 error = -ENOMEM;
1170 goto out;
1171 }
1172
1173 error = ext4_read_inline_data(inode, buf, inline_size, iloc);
1174 if (error < 0)
1175 goto out;
1176
40b163f1
DW
1177 /*
1178 * Make sure the inline directory entries pass checks before we try to
1179 * convert them, so that we avoid touching stuff that needs fsck.
1180 */
1181 if (S_ISDIR(inode->i_mode)) {
1182 error = ext4_check_all_de(inode, iloc->bh,
1183 buf + EXT4_INLINE_DOTDOT_SIZE,
1184 inline_size - EXT4_INLINE_DOTDOT_SIZE);
1185 if (error)
1186 goto out;
1187 }
1188
3c47d541
TM
1189 error = ext4_destroy_inline_data_nolock(handle, inode);
1190 if (error)
1191 goto out;
1192
1193 map.m_lblk = 0;
1194 map.m_len = 1;
1195 map.m_flags = 0;
1196 error = ext4_map_blocks(handle, inode, &map, EXT4_GET_BLOCKS_CREATE);
1197 if (error < 0)
1198 goto out_restore;
1199 if (!(map.m_flags & EXT4_MAP_MAPPED)) {
1200 error = -EIO;
1201 goto out_restore;
1202 }
1203
1204 data_bh = sb_getblk(inode->i_sb, map.m_pblk);
1205 if (!data_bh) {
860d21e2 1206 error = -ENOMEM;
3c47d541
TM
1207 goto out_restore;
1208 }
1209
1210 lock_buffer(data_bh);
1211 error = ext4_journal_get_create_access(handle, data_bh);
1212 if (error) {
1213 unlock_buffer(data_bh);
1214 error = -EIO;
1215 goto out_restore;
1216 }
1217 memset(data_bh->b_data, 0, inode->i_sb->s_blocksize);
1218
1219 if (!S_ISDIR(inode->i_mode)) {
1220 memcpy(data_bh->b_data, buf, inline_size);
1221 set_buffer_uptodate(data_bh);
1222 error = ext4_handle_dirty_metadata(handle,
1223 inode, data_bh);
1224 } else {
1225 error = ext4_finish_convert_inline_dir(handle, inode, data_bh,
1226 buf, inline_size);
1227 }
1228
1229 unlock_buffer(data_bh);
1230out_restore:
1231 if (error)
1232 ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1233
1234out:
1235 brelse(data_bh);
1236 kfree(buf);
1237 return error;
1238}
1239
1240/*
1241 * Try to add the new entry to the inline data.
1242 * If succeeds, return 0. If not, extended the inline dir and copied data to
1243 * the new created block.
1244 */
1245int ext4_try_add_inline_entry(handle_t *handle, struct dentry *dentry,
1246 struct inode *inode)
1247{
1248 int ret, inline_size;
1249 void *inline_start;
1250 struct ext4_iloc iloc;
1251 struct inode *dir = dentry->d_parent->d_inode;
1252
1253 ret = ext4_get_inode_loc(dir, &iloc);
1254 if (ret)
1255 return ret;
1256
1257 down_write(&EXT4_I(dir)->xattr_sem);
1258 if (!ext4_has_inline_data(dir))
1259 goto out;
1260
1261 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1262 EXT4_INLINE_DOTDOT_SIZE;
1263 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1264
1265 ret = ext4_add_dirent_to_inline(handle, dentry, inode, &iloc,
1266 inline_start, inline_size);
1267 if (ret != -ENOSPC)
1268 goto out;
1269
1270 /* check whether it can be inserted to inline xattr space. */
1271 inline_size = EXT4_I(dir)->i_inline_size -
1272 EXT4_MIN_INLINE_DATA_SIZE;
1273 if (!inline_size) {
1274 /* Try to use the xattr space.*/
1275 ret = ext4_update_inline_dir(handle, dir, &iloc);
1276 if (ret && ret != -ENOSPC)
1277 goto out;
1278
1279 inline_size = EXT4_I(dir)->i_inline_size -
1280 EXT4_MIN_INLINE_DATA_SIZE;
1281 }
1282
1283 if (inline_size) {
1284 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1285
1286 ret = ext4_add_dirent_to_inline(handle, dentry, inode, &iloc,
1287 inline_start, inline_size);
1288
1289 if (ret != -ENOSPC)
1290 goto out;
1291 }
1292
1293 /*
1294 * The inline space is filled up, so create a new block for it.
1295 * As the extent tree will be created, we have to save the inline
1296 * dir first.
1297 */
1298 ret = ext4_convert_inline_data_nolock(handle, dir, &iloc);
1299
1300out:
1301 ext4_mark_inode_dirty(handle, dir);
1302 up_write(&EXT4_I(dir)->xattr_sem);
1303 brelse(iloc.bh);
1304 return ret;
1305}
1306
8af0f082
TM
1307/*
1308 * This function fills a red-black tree with information from an
1309 * inlined dir. It returns the number directory entries loaded
1310 * into the tree. If there is an error it is returned in err.
1311 */
1312int htree_inlinedir_to_tree(struct file *dir_file,
1313 struct inode *dir, ext4_lblk_t block,
1314 struct dx_hash_info *hinfo,
1315 __u32 start_hash, __u32 start_minor_hash,
1316 int *has_inline_data)
1317{
1318 int err = 0, count = 0;
1319 unsigned int parent_ino;
1320 int pos;
1321 struct ext4_dir_entry_2 *de;
1322 struct inode *inode = file_inode(dir_file);
1323 int ret, inline_size = 0;
1324 struct ext4_iloc iloc;
1325 void *dir_buf = NULL;
1326 struct ext4_dir_entry_2 fake;
1327
1328 ret = ext4_get_inode_loc(inode, &iloc);
1329 if (ret)
1330 return ret;
1331
1332 down_read(&EXT4_I(inode)->xattr_sem);
1333 if (!ext4_has_inline_data(inode)) {
1334 up_read(&EXT4_I(inode)->xattr_sem);
1335 *has_inline_data = 0;
1336 goto out;
1337 }
1338
1339 inline_size = ext4_get_inline_size(inode);
1340 dir_buf = kmalloc(inline_size, GFP_NOFS);
1341 if (!dir_buf) {
1342 ret = -ENOMEM;
1343 up_read(&EXT4_I(inode)->xattr_sem);
1344 goto out;
1345 }
1346
1347 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1348 up_read(&EXT4_I(inode)->xattr_sem);
1349 if (ret < 0)
1350 goto out;
1351
1352 pos = 0;
1353 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
1354 while (pos < inline_size) {
1355 /*
1356 * As inlined dir doesn't store any information about '.' and
1357 * only the inode number of '..' is stored, we have to handle
1358 * them differently.
1359 */
1360 if (pos == 0) {
1361 fake.inode = cpu_to_le32(inode->i_ino);
1362 fake.name_len = 1;
1363 strcpy(fake.name, ".");
1364 fake.rec_len = ext4_rec_len_to_disk(
1365 EXT4_DIR_REC_LEN(fake.name_len),
1366 inline_size);
1367 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1368 de = &fake;
1369 pos = EXT4_INLINE_DOTDOT_OFFSET;
1370 } else if (pos == EXT4_INLINE_DOTDOT_OFFSET) {
1371 fake.inode = cpu_to_le32(parent_ino);
1372 fake.name_len = 2;
1373 strcpy(fake.name, "..");
1374 fake.rec_len = ext4_rec_len_to_disk(
1375 EXT4_DIR_REC_LEN(fake.name_len),
1376 inline_size);
1377 ext4_set_de_type(inode->i_sb, &fake, S_IFDIR);
1378 de = &fake;
1379 pos = EXT4_INLINE_DOTDOT_SIZE;
1380 } else {
1381 de = (struct ext4_dir_entry_2 *)(dir_buf + pos);
1382 pos += ext4_rec_len_from_disk(de->rec_len, inline_size);
1383 if (ext4_check_dir_entry(inode, dir_file, de,
1384 iloc.bh, dir_buf,
1385 inline_size, pos)) {
1386 ret = count;
1387 goto out;
1388 }
1389 }
1390
1391 ext4fs_dirhash(de->name, de->name_len, hinfo);
1392 if ((hinfo->hash < start_hash) ||
1393 ((hinfo->hash == start_hash) &&
1394 (hinfo->minor_hash < start_minor_hash)))
1395 continue;
1396 if (de->inode == 0)
1397 continue;
1398 err = ext4_htree_store_dirent(dir_file,
1399 hinfo->hash, hinfo->minor_hash, de);
1400 if (err) {
1401 count = err;
1402 goto out;
1403 }
1404 count++;
1405 }
1406 ret = count;
1407out:
1408 kfree(dir_buf);
1409 brelse(iloc.bh);
1410 return ret;
1411}
1412
c4d8b023
TM
1413/*
1414 * So this function is called when the volume is mkfsed with
1415 * dir_index disabled. In order to keep f_pos persistent
1416 * after we convert from an inlined dir to a blocked based,
1417 * we just pretend that we are a normal dir and return the
1418 * offset as if '.' and '..' really take place.
1419 *
1420 */
725bebb2
AV
1421int ext4_read_inline_dir(struct file *file,
1422 struct dir_context *ctx,
65d165d9
TM
1423 int *has_inline_data)
1424{
65d165d9 1425 unsigned int offset, parent_ino;
725bebb2 1426 int i;
65d165d9
TM
1427 struct ext4_dir_entry_2 *de;
1428 struct super_block *sb;
725bebb2 1429 struct inode *inode = file_inode(file);
65d165d9
TM
1430 int ret, inline_size = 0;
1431 struct ext4_iloc iloc;
1432 void *dir_buf = NULL;
c4d8b023 1433 int dotdot_offset, dotdot_size, extra_offset, extra_size;
65d165d9
TM
1434
1435 ret = ext4_get_inode_loc(inode, &iloc);
1436 if (ret)
1437 return ret;
1438
1439 down_read(&EXT4_I(inode)->xattr_sem);
1440 if (!ext4_has_inline_data(inode)) {
1441 up_read(&EXT4_I(inode)->xattr_sem);
1442 *has_inline_data = 0;
1443 goto out;
1444 }
1445
1446 inline_size = ext4_get_inline_size(inode);
1447 dir_buf = kmalloc(inline_size, GFP_NOFS);
1448 if (!dir_buf) {
1449 ret = -ENOMEM;
1450 up_read(&EXT4_I(inode)->xattr_sem);
1451 goto out;
1452 }
1453
1454 ret = ext4_read_inline_data(inode, dir_buf, inline_size, &iloc);
1455 up_read(&EXT4_I(inode)->xattr_sem);
1456 if (ret < 0)
1457 goto out;
1458
48ffdab1 1459 ret = 0;
65d165d9 1460 sb = inode->i_sb;
65d165d9 1461 parent_ino = le32_to_cpu(((struct ext4_dir_entry_2 *)dir_buf)->inode);
725bebb2 1462 offset = ctx->pos;
c4d8b023
TM
1463
1464 /*
1465 * dotdot_offset and dotdot_size is the real offset and
1466 * size for ".." and "." if the dir is block based while
1467 * the real size for them are only EXT4_INLINE_DOTDOT_SIZE.
1468 * So we will use extra_offset and extra_size to indicate them
1469 * during the inline dir iteration.
1470 */
1471 dotdot_offset = EXT4_DIR_REC_LEN(1);
1472 dotdot_size = dotdot_offset + EXT4_DIR_REC_LEN(2);
1473 extra_offset = dotdot_size - EXT4_INLINE_DOTDOT_SIZE;
1474 extra_size = extra_offset + inline_size;
65d165d9 1475
725bebb2
AV
1476 /*
1477 * If the version has changed since the last call to
1478 * readdir(2), then we might be pointing to an invalid
1479 * dirent right now. Scan from the start of the inline
1480 * dir to make sure.
1481 */
1482 if (file->f_version != inode->i_version) {
1483 for (i = 0; i < extra_size && i < offset;) {
1484 /*
1485 * "." is with offset 0 and
1486 * ".." is dotdot_offset.
1487 */
1488 if (!i) {
1489 i = dotdot_offset;
1490 continue;
1491 } else if (i == dotdot_offset) {
1492 i = dotdot_size;
c4d8b023
TM
1493 continue;
1494 }
725bebb2
AV
1495 /* for other entry, the real offset in
1496 * the buf has to be tuned accordingly.
1497 */
1498 de = (struct ext4_dir_entry_2 *)
1499 (dir_buf + i - extra_offset);
1500 /* It's too expensive to do a full
1501 * dirent test each time round this
1502 * loop, but we do have to test at
1503 * least that it is non-zero. A
1504 * failure will be detected in the
1505 * dirent test below. */
1506 if (ext4_rec_len_from_disk(de->rec_len, extra_size)
1507 < EXT4_DIR_REC_LEN(1))
1508 break;
1509 i += ext4_rec_len_from_disk(de->rec_len,
1510 extra_size);
1511 }
1512 offset = i;
1513 ctx->pos = offset;
1514 file->f_version = inode->i_version;
1515 }
65d165d9 1516
725bebb2
AV
1517 while (ctx->pos < extra_size) {
1518 if (ctx->pos == 0) {
1519 if (!dir_emit(ctx, ".", 1, inode->i_ino, DT_DIR))
1520 goto out;
1521 ctx->pos = dotdot_offset;
1522 continue;
1523 }
65d165d9 1524
725bebb2
AV
1525 if (ctx->pos == dotdot_offset) {
1526 if (!dir_emit(ctx, "..", 2, parent_ino, DT_DIR))
1527 goto out;
1528 ctx->pos = dotdot_size;
1529 continue;
1530 }
65d165d9 1531
725bebb2
AV
1532 de = (struct ext4_dir_entry_2 *)
1533 (dir_buf + ctx->pos - extra_offset);
1534 if (ext4_check_dir_entry(inode, file, de, iloc.bh, dir_buf,
1535 extra_size, ctx->pos))
1536 goto out;
1537 if (le32_to_cpu(de->inode)) {
1538 if (!dir_emit(ctx, de->name, de->name_len,
1539 le32_to_cpu(de->inode),
1540 get_dtype(sb, de->file_type)))
65d165d9 1541 goto out;
65d165d9 1542 }
725bebb2 1543 ctx->pos += ext4_rec_len_from_disk(de->rec_len, extra_size);
65d165d9
TM
1544 }
1545out:
1546 kfree(dir_buf);
1547 brelse(iloc.bh);
1548 return ret;
1549}
1550
32f7f22c
TM
1551struct buffer_head *ext4_get_first_inline_block(struct inode *inode,
1552 struct ext4_dir_entry_2 **parent_de,
1553 int *retval)
1554{
1555 struct ext4_iloc iloc;
1556
1557 *retval = ext4_get_inode_loc(inode, &iloc);
1558 if (*retval)
1559 return NULL;
1560
1561 *parent_de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1562
1563 return iloc.bh;
1564}
1565
3c47d541
TM
1566/*
1567 * Try to create the inline data for the new dir.
1568 * If it succeeds, return 0, otherwise return the error.
1569 * In case of ENOSPC, the caller should create the normal disk layout dir.
1570 */
1571int ext4_try_create_inline_dir(handle_t *handle, struct inode *parent,
1572 struct inode *inode)
1573{
1574 int ret, inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1575 struct ext4_iloc iloc;
1576 struct ext4_dir_entry_2 *de;
1577
1578 ret = ext4_get_inode_loc(inode, &iloc);
1579 if (ret)
1580 return ret;
1581
1582 ret = ext4_prepare_inline_data(handle, inode, inline_size);
1583 if (ret)
1584 goto out;
1585
1586 /*
1587 * For inline dir, we only save the inode information for the ".."
1588 * and create a fake dentry to cover the left space.
1589 */
1590 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1591 de->inode = cpu_to_le32(parent->i_ino);
1592 de = (struct ext4_dir_entry_2 *)((void *)de + EXT4_INLINE_DOTDOT_SIZE);
1593 de->inode = 0;
1594 de->rec_len = ext4_rec_len_to_disk(
1595 inline_size - EXT4_INLINE_DOTDOT_SIZE,
1596 inline_size);
1597 set_nlink(inode, 2);
1598 inode->i_size = EXT4_I(inode)->i_disksize = inline_size;
1599out:
1600 brelse(iloc.bh);
1601 return ret;
1602}
1603
e8e948e7
TM
1604struct buffer_head *ext4_find_inline_entry(struct inode *dir,
1605 const struct qstr *d_name,
1606 struct ext4_dir_entry_2 **res_dir,
1607 int *has_inline_data)
1608{
1609 int ret;
1610 struct ext4_iloc iloc;
1611 void *inline_start;
1612 int inline_size;
1613
1614 if (ext4_get_inode_loc(dir, &iloc))
1615 return NULL;
1616
1617 down_read(&EXT4_I(dir)->xattr_sem);
1618 if (!ext4_has_inline_data(dir)) {
1619 *has_inline_data = 0;
1620 goto out;
1621 }
1622
1623 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1624 EXT4_INLINE_DOTDOT_SIZE;
1625 inline_size = EXT4_MIN_INLINE_DATA_SIZE - EXT4_INLINE_DOTDOT_SIZE;
1626 ret = search_dir(iloc.bh, inline_start, inline_size,
1627 dir, d_name, 0, res_dir);
1628 if (ret == 1)
1629 goto out_find;
1630 if (ret < 0)
1631 goto out;
1632
1633 if (ext4_get_inline_size(dir) == EXT4_MIN_INLINE_DATA_SIZE)
1634 goto out;
1635
1636 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1637 inline_size = ext4_get_inline_size(dir) - EXT4_MIN_INLINE_DATA_SIZE;
1638
1639 ret = search_dir(iloc.bh, inline_start, inline_size,
1640 dir, d_name, 0, res_dir);
1641 if (ret == 1)
1642 goto out_find;
1643
1644out:
1645 brelse(iloc.bh);
1646 iloc.bh = NULL;
1647out_find:
1648 up_read(&EXT4_I(dir)->xattr_sem);
1649 return iloc.bh;
1650}
1651
9f40fe54
TM
1652int ext4_delete_inline_entry(handle_t *handle,
1653 struct inode *dir,
1654 struct ext4_dir_entry_2 *de_del,
1655 struct buffer_head *bh,
1656 int *has_inline_data)
1657{
1658 int err, inline_size;
1659 struct ext4_iloc iloc;
1660 void *inline_start;
1661
1662 err = ext4_get_inode_loc(dir, &iloc);
1663 if (err)
1664 return err;
1665
1666 down_write(&EXT4_I(dir)->xattr_sem);
1667 if (!ext4_has_inline_data(dir)) {
1668 *has_inline_data = 0;
1669 goto out;
1670 }
1671
1672 if ((void *)de_del - ((void *)ext4_raw_inode(&iloc)->i_block) <
1673 EXT4_MIN_INLINE_DATA_SIZE) {
1674 inline_start = (void *)ext4_raw_inode(&iloc)->i_block +
1675 EXT4_INLINE_DOTDOT_SIZE;
1676 inline_size = EXT4_MIN_INLINE_DATA_SIZE -
1677 EXT4_INLINE_DOTDOT_SIZE;
1678 } else {
1679 inline_start = ext4_get_inline_xattr_pos(dir, &iloc);
1680 inline_size = ext4_get_inline_size(dir) -
1681 EXT4_MIN_INLINE_DATA_SIZE;
1682 }
1683
5d601255 1684 BUFFER_TRACE(bh, "get_write_access");
9f40fe54
TM
1685 err = ext4_journal_get_write_access(handle, bh);
1686 if (err)
1687 goto out;
1688
1689 err = ext4_generic_delete_entry(handle, dir, de_del, bh,
1690 inline_start, inline_size, 0);
1691 if (err)
1692 goto out;
1693
1694 BUFFER_TRACE(bh, "call ext4_handle_dirty_metadata");
1695 err = ext4_mark_inode_dirty(handle, dir);
1696 if (unlikely(err))
1697 goto out;
1698
1699 ext4_show_inline_dir(dir, iloc.bh, inline_start, inline_size);
1700out:
1701 up_write(&EXT4_I(dir)->xattr_sem);
1702 brelse(iloc.bh);
1703 if (err != -ENOENT)
1704 ext4_std_error(dir->i_sb, err);
1705 return err;
1706}
1707
61f86638
TM
1708/*
1709 * Get the inline dentry at offset.
1710 */
1711static inline struct ext4_dir_entry_2 *
1712ext4_get_inline_entry(struct inode *inode,
1713 struct ext4_iloc *iloc,
1714 unsigned int offset,
1715 void **inline_start,
1716 int *inline_size)
1717{
1718 void *inline_pos;
1719
1720 BUG_ON(offset > ext4_get_inline_size(inode));
1721
1722 if (offset < EXT4_MIN_INLINE_DATA_SIZE) {
1723 inline_pos = (void *)ext4_raw_inode(iloc)->i_block;
1724 *inline_size = EXT4_MIN_INLINE_DATA_SIZE;
1725 } else {
1726 inline_pos = ext4_get_inline_xattr_pos(inode, iloc);
1727 offset -= EXT4_MIN_INLINE_DATA_SIZE;
1728 *inline_size = ext4_get_inline_size(inode) -
1729 EXT4_MIN_INLINE_DATA_SIZE;
1730 }
1731
1732 if (inline_start)
1733 *inline_start = inline_pos;
1734 return (struct ext4_dir_entry_2 *)(inline_pos + offset);
1735}
1736
1737int empty_inline_dir(struct inode *dir, int *has_inline_data)
1738{
1739 int err, inline_size;
1740 struct ext4_iloc iloc;
1741 void *inline_pos;
1742 unsigned int offset;
1743 struct ext4_dir_entry_2 *de;
1744 int ret = 1;
1745
1746 err = ext4_get_inode_loc(dir, &iloc);
1747 if (err) {
1748 EXT4_ERROR_INODE(dir, "error %d getting inode %lu block",
1749 err, dir->i_ino);
1750 return 1;
1751 }
1752
1753 down_read(&EXT4_I(dir)->xattr_sem);
1754 if (!ext4_has_inline_data(dir)) {
1755 *has_inline_data = 0;
1756 goto out;
1757 }
1758
1759 de = (struct ext4_dir_entry_2 *)ext4_raw_inode(&iloc)->i_block;
1760 if (!le32_to_cpu(de->inode)) {
1761 ext4_warning(dir->i_sb,
1762 "bad inline directory (dir #%lu) - no `..'",
1763 dir->i_ino);
1764 ret = 1;
1765 goto out;
1766 }
1767
1768 offset = EXT4_INLINE_DOTDOT_SIZE;
1769 while (offset < dir->i_size) {
1770 de = ext4_get_inline_entry(dir, &iloc, offset,
1771 &inline_pos, &inline_size);
1772 if (ext4_check_dir_entry(dir, NULL, de,
1773 iloc.bh, inline_pos,
1774 inline_size, offset)) {
1775 ext4_warning(dir->i_sb,
1776 "bad inline directory (dir #%lu) - "
1777 "inode %u, rec_len %u, name_len %d"
1778 "inline size %d\n",
1779 dir->i_ino, le32_to_cpu(de->inode),
1780 le16_to_cpu(de->rec_len), de->name_len,
1781 inline_size);
1782 ret = 1;
1783 goto out;
1784 }
1785 if (le32_to_cpu(de->inode)) {
1786 ret = 0;
1787 goto out;
1788 }
1789 offset += ext4_rec_len_from_disk(de->rec_len, inline_size);
1790 }
1791
1792out:
1793 up_read(&EXT4_I(dir)->xattr_sem);
1794 brelse(iloc.bh);
1795 return ret;
1796}
1797
67cf5b09
TM
1798int ext4_destroy_inline_data(handle_t *handle, struct inode *inode)
1799{
1800 int ret;
1801
1802 down_write(&EXT4_I(inode)->xattr_sem);
1803 ret = ext4_destroy_inline_data_nolock(handle, inode);
1804 up_write(&EXT4_I(inode)->xattr_sem);
1805
1806 return ret;
1807}
94191985
TM
1808
1809int ext4_inline_data_fiemap(struct inode *inode,
1810 struct fiemap_extent_info *fieinfo,
d952d69e 1811 int *has_inline, __u64 start, __u64 len)
94191985
TM
1812{
1813 __u64 physical = 0;
d952d69e
DM
1814 __u64 inline_len;
1815 __u32 flags = FIEMAP_EXTENT_DATA_INLINE | FIEMAP_EXTENT_NOT_ALIGNED |
1816 FIEMAP_EXTENT_LAST;
94191985
TM
1817 int error = 0;
1818 struct ext4_iloc iloc;
1819
1820 down_read(&EXT4_I(inode)->xattr_sem);
1821 if (!ext4_has_inline_data(inode)) {
1822 *has_inline = 0;
1823 goto out;
1824 }
d952d69e
DM
1825 inline_len = min_t(size_t, ext4_get_inline_size(inode),
1826 i_size_read(inode));
1827 if (start >= inline_len)
1828 goto out;
1829 if (start + len < inline_len)
1830 inline_len = start + len;
1831 inline_len -= start;
94191985
TM
1832
1833 error = ext4_get_inode_loc(inode, &iloc);
1834 if (error)
1835 goto out;
1836
eaf37937 1837 physical = (__u64)iloc.bh->b_blocknr << inode->i_sb->s_blocksize_bits;
94191985
TM
1838 physical += (char *)ext4_raw_inode(&iloc) - iloc.bh->b_data;
1839 physical += offsetof(struct ext4_inode, i_block);
94191985
TM
1840
1841 if (physical)
d952d69e
DM
1842 error = fiemap_fill_next_extent(fieinfo, start, physical,
1843 inline_len, flags);
94191985
TM
1844 brelse(iloc.bh);
1845out:
1846 up_read(&EXT4_I(inode)->xattr_sem);
1847 return (error < 0 ? error : 0);
1848}
0d812f77
TM
1849
1850/*
1851 * Called during xattr set, and if we can sparse space 'needed',
1852 * just create the extent tree evict the data to the outer block.
1853 *
1854 * We use jbd2 instead of page cache to move data to the 1st block
1855 * so that the whole transaction can be committed as a whole and
1856 * the data isn't lost because of the delayed page cache write.
1857 */
1858int ext4_try_to_evict_inline_data(handle_t *handle,
1859 struct inode *inode,
1860 int needed)
1861{
1862 int error;
1863 struct ext4_xattr_entry *entry;
0d812f77
TM
1864 struct ext4_inode *raw_inode;
1865 struct ext4_iloc iloc;
1866
1867 error = ext4_get_inode_loc(inode, &iloc);
1868 if (error)
1869 return error;
1870
1871 raw_inode = ext4_raw_inode(&iloc);
0d812f77
TM
1872 entry = (struct ext4_xattr_entry *)((void *)raw_inode +
1873 EXT4_I(inode)->i_inline_off);
1874 if (EXT4_XATTR_LEN(entry->e_name_len) +
1875 EXT4_XATTR_SIZE(le32_to_cpu(entry->e_value_size)) < needed) {
1876 error = -ENOSPC;
1877 goto out;
1878 }
1879
1880 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
1881out:
1882 brelse(iloc.bh);
1883 return error;
1884}
aef1c851
TM
1885
1886void ext4_inline_data_truncate(struct inode *inode, int *has_inline)
1887{
1888 handle_t *handle;
1889 int inline_size, value_len, needed_blocks;
1890 size_t i_size;
1891 void *value = NULL;
1892 struct ext4_xattr_ibody_find is = {
1893 .s = { .not_found = -ENODATA, },
1894 };
1895 struct ext4_xattr_info i = {
1896 .name_index = EXT4_XATTR_INDEX_SYSTEM,
1897 .name = EXT4_XATTR_SYSTEM_DATA,
1898 };
1899
1900
1901 needed_blocks = ext4_writepage_trans_blocks(inode);
9924a92a 1902 handle = ext4_journal_start(inode, EXT4_HT_INODE, needed_blocks);
aef1c851
TM
1903 if (IS_ERR(handle))
1904 return;
1905
1906 down_write(&EXT4_I(inode)->xattr_sem);
1907 if (!ext4_has_inline_data(inode)) {
1908 *has_inline = 0;
1909 ext4_journal_stop(handle);
1910 return;
1911 }
1912
1913 if (ext4_orphan_add(handle, inode))
1914 goto out;
1915
1916 if (ext4_get_inode_loc(inode, &is.iloc))
1917 goto out;
1918
1919 down_write(&EXT4_I(inode)->i_data_sem);
1920 i_size = inode->i_size;
1921 inline_size = ext4_get_inline_size(inode);
1922 EXT4_I(inode)->i_disksize = i_size;
1923
1924 if (i_size < inline_size) {
1925 /* Clear the content in the xattr space. */
1926 if (inline_size > EXT4_MIN_INLINE_DATA_SIZE) {
1927 if (ext4_xattr_ibody_find(inode, &i, &is))
1928 goto out_error;
1929
1930 BUG_ON(is.s.not_found);
1931
1932 value_len = le32_to_cpu(is.s.here->e_value_size);
1933 value = kmalloc(value_len, GFP_NOFS);
1934 if (!value)
1935 goto out_error;
1936
1937 if (ext4_xattr_ibody_get(inode, i.name_index, i.name,
1938 value, value_len))
1939 goto out_error;
1940
1941 i.value = value;
1942 i.value_len = i_size > EXT4_MIN_INLINE_DATA_SIZE ?
1943 i_size - EXT4_MIN_INLINE_DATA_SIZE : 0;
1944 if (ext4_xattr_ibody_inline_set(handle, inode, &i, &is))
1945 goto out_error;
1946 }
1947
1948 /* Clear the content within i_blocks. */
09c455aa
TT
1949 if (i_size < EXT4_MIN_INLINE_DATA_SIZE) {
1950 void *p = (void *) ext4_raw_inode(&is.iloc)->i_block;
1951 memset(p + i_size, 0,
1952 EXT4_MIN_INLINE_DATA_SIZE - i_size);
1953 }
aef1c851
TM
1954
1955 EXT4_I(inode)->i_inline_size = i_size <
1956 EXT4_MIN_INLINE_DATA_SIZE ?
1957 EXT4_MIN_INLINE_DATA_SIZE : i_size;
1958 }
1959
1960out_error:
1961 up_write(&EXT4_I(inode)->i_data_sem);
1962out:
1963 brelse(is.iloc.bh);
1964 up_write(&EXT4_I(inode)->xattr_sem);
1965 kfree(value);
1966 if (inode->i_nlink)
1967 ext4_orphan_del(handle, inode);
1968
1969 inode->i_mtime = inode->i_ctime = ext4_current_time(inode);
1970 ext4_mark_inode_dirty(handle, inode);
1971 if (IS_SYNC(inode))
1972 ext4_handle_sync(handle);
1973
1974 ext4_journal_stop(handle);
1975 return;
1976}
0c8d414f
TM
1977
1978int ext4_convert_inline_data(struct inode *inode)
1979{
1980 int error, needed_blocks;
1981 handle_t *handle;
1982 struct ext4_iloc iloc;
1983
1984 if (!ext4_has_inline_data(inode)) {
1985 ext4_clear_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1986 return 0;
1987 }
1988
1989 needed_blocks = ext4_writepage_trans_blocks(inode);
1990
1991 iloc.bh = NULL;
1992 error = ext4_get_inode_loc(inode, &iloc);
1993 if (error)
1994 return error;
1995
9924a92a 1996 handle = ext4_journal_start(inode, EXT4_HT_WRITE_PAGE, needed_blocks);
0c8d414f
TM
1997 if (IS_ERR(handle)) {
1998 error = PTR_ERR(handle);
1999 goto out_free;
2000 }
2001
2002 down_write(&EXT4_I(inode)->xattr_sem);
2003 if (!ext4_has_inline_data(inode)) {
2004 up_write(&EXT4_I(inode)->xattr_sem);
2005 goto out;
2006 }
2007
2008 error = ext4_convert_inline_data_nolock(handle, inode, &iloc);
2009 up_write(&EXT4_I(inode)->xattr_sem);
2010out:
2011 ext4_journal_stop(handle);
2012out_free:
2013 brelse(iloc.bh);
2014 return error;
2015}
This page took 0.195997 seconds and 5 git commands to generate.