blob: 4758518965187749815eb7b76736313faa5e95c5 [file] [log] [blame]
Theodore Ts'obd2d0212010-10-27 21:30:10 -04001/*
2 * linux/fs/ext4/page-io.c
3 *
4 * This contains the new page_io functions for ext4
5 *
6 * Written by Theodore Ts'o, 2010.
7 */
8
Theodore Ts'obd2d0212010-10-27 21:30:10 -04009#include <linux/fs.h>
10#include <linux/time.h>
11#include <linux/jbd2.h>
12#include <linux/highuid.h>
13#include <linux/pagemap.h>
14#include <linux/quotaops.h>
15#include <linux/string.h>
16#include <linux/buffer_head.h>
17#include <linux/writeback.h>
18#include <linux/pagevec.h>
19#include <linux/mpage.h>
20#include <linux/namei.h>
21#include <linux/uio.h>
22#include <linux/bio.h>
23#include <linux/workqueue.h>
24#include <linux/kernel.h>
25#include <linux/slab.h>
26
27#include "ext4_jbd2.h"
28#include "xattr.h"
29#include "acl.h"
30#include "ext4_extents.h"
31
32static struct kmem_cache *io_page_cachep, *io_end_cachep;
33
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040034int __init ext4_init_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040035{
36 io_page_cachep = KMEM_CACHE(ext4_io_page, SLAB_RECLAIM_ACCOUNT);
37 if (io_page_cachep == NULL)
38 return -ENOMEM;
39 io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
Dan Carpenter13195182011-01-10 12:10:44 -050040 if (io_end_cachep == NULL) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -040041 kmem_cache_destroy(io_page_cachep);
42 return -ENOMEM;
43 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -040044 return 0;
45}
46
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040047void ext4_exit_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040048{
49 kmem_cache_destroy(io_end_cachep);
50 kmem_cache_destroy(io_page_cachep);
51}
52
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050053void ext4_ioend_wait(struct inode *inode)
54{
Eric Sandeene9e3bce2011-02-12 08:17:34 -050055 wait_queue_head_t *wq = ext4_ioend_wq(inode);
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050056
57 wait_event(*wq, (atomic_read(&EXT4_I(inode)->i_ioend_count) == 0));
58}
59
Theodore Ts'o83668e72010-11-08 13:45:33 -050060static void put_io_page(struct ext4_io_page *io_page)
61{
62 if (atomic_dec_and_test(&io_page->p_count)) {
63 end_page_writeback(io_page->p_page);
64 put_page(io_page->p_page);
65 kmem_cache_free(io_page_cachep, io_page);
66 }
67}
68
Theodore Ts'obd2d0212010-10-27 21:30:10 -040069void ext4_free_io_end(ext4_io_end_t *io)
70{
71 int i;
72
73 BUG_ON(!io);
74 if (io->page)
75 put_page(io->page);
Theodore Ts'o83668e72010-11-08 13:45:33 -050076 for (i = 0; i < io->num_io_pages; i++)
77 put_io_page(io->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040078 io->num_io_pages = 0;
Theodore Ts'o4e298022011-10-30 18:41:19 -040079 if (atomic_dec_and_test(&EXT4_I(io->inode)->i_ioend_count))
80 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -040081 kmem_cache_free(io_end_cachep, io);
82}
83
84/*
85 * check a range of space and convert unwritten extents to written.
Tao Mad73d5042011-10-30 18:26:08 -040086 *
87 * Called with inode->i_mutex; we depend on this when we manipulate
88 * io->flag, since we could otherwise race with ext4_flush_completed_IO()
Theodore Ts'obd2d0212010-10-27 21:30:10 -040089 */
90int ext4_end_io_nolock(ext4_io_end_t *io)
91{
92 struct inode *inode = io->inode;
93 loff_t offset = io->offset;
94 ssize_t size = io->size;
95 int ret = 0;
96
97 ext4_debug("ext4_end_io_nolock: io 0x%p from inode %lu,list->next 0x%p,"
98 "list->prev 0x%p\n",
99 io, inode->i_ino, io->list.next, io->list.prev);
100
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400101 ret = ext4_convert_unwritten_extents(inode, offset, size);
102 if (ret < 0) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400103 ext4_msg(inode->i_sb, KERN_EMERG,
104 "failed to convert unwritten extents to written "
105 "extents -- potential data loss! "
106 "(inode %lu, offset %llu, size %zd, error %d)",
107 inode->i_ino, offset, size, ret);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400108 }
109
110 if (io->iocb)
111 aio_complete(io->iocb, io->result, 0);
Eric Sandeene9e3bce2011-02-12 08:17:34 -0500112
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400113 /* Wake up anyone waiting on unwritten extent conversion */
114 if (atomic_dec_and_test(&EXT4_I(inode)->i_aiodio_unwritten))
115 wake_up_all(ext4_ioend_wq(io->inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400116 return ret;
117}
118
119/*
120 * work on completed aio dio IO, to convert unwritten extents to extents
121 */
122static void ext4_end_io_work(struct work_struct *work)
123{
124 ext4_io_end_t *io = container_of(work, ext4_io_end_t, work);
125 struct inode *inode = io->inode;
126 struct ext4_inode_info *ei = EXT4_I(inode);
127 unsigned long flags;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400128
Tao Mad73d5042011-10-30 18:26:08 -0400129 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
130 if (list_empty(&io->list)) {
131 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
132 goto free;
133 }
Tao Mad73d5042011-10-30 18:26:08 -0400134
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400135 if (!mutex_trylock(&inode->i_mutex)) {
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400136 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
Jiaying Zhang8c0bec22011-08-31 11:50:51 -0400137 /*
138 * Requeue the work instead of waiting so that the work
139 * items queued after this can be processed.
140 */
141 queue_work(EXT4_SB(inode->i_sb)->dio_unwritten_wq, &io->work);
142 /*
143 * To prevent the ext4-dio-unwritten thread from keeping
144 * requeueing end_io requests and occupying cpu for too long,
145 * yield the cpu if it sees an end_io request that has already
146 * been requeued.
147 */
148 if (io->flag & EXT4_IO_END_QUEUED)
149 yield();
150 io->flag |= EXT4_IO_END_QUEUED;
151 return;
152 }
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400153 list_del_init(&io->list);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400154 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
Theodore Ts'ob82e3842011-10-31 10:56:32 -0400155 (void) ext4_end_io_nolock(io);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400156 mutex_unlock(&inode->i_mutex);
Tao Mad73d5042011-10-30 18:26:08 -0400157free:
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400158 ext4_free_io_end(io);
159}
160
161ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
162{
Jesper Juhlb17b35e2010-12-19 21:41:55 -0500163 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400164 if (io) {
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500165 atomic_inc(&EXT4_I(inode)->i_ioend_count);
166 io->inode = inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400167 INIT_WORK(&io->work, ext4_end_io_work);
168 INIT_LIST_HEAD(&io->list);
169 }
170 return io;
171}
172
173/*
174 * Print an buffer I/O error compatible with the fs/buffer.c. This
175 * provides compatibility with dmesg scrapers that look for a specific
176 * buffer I/O error message. We really need a unified error reporting
177 * structure to userspace ala Digital Unix's uerf system, but it's
178 * probably not going to happen in my lifetime, due to LKML politics...
179 */
180static void buffer_io_error(struct buffer_head *bh)
181{
182 char b[BDEVNAME_SIZE];
183 printk(KERN_ERR "Buffer I/O error on device %s, logical block %llu\n",
184 bdevname(bh->b_bdev, b),
185 (unsigned long long)bh->b_blocknr);
186}
187
188static void ext4_end_bio(struct bio *bio, int error)
189{
190 ext4_io_end_t *io_end = bio->bi_private;
191 struct workqueue_struct *wq;
192 struct inode *inode;
193 unsigned long flags;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400194 int i;
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500195 sector_t bi_sector = bio->bi_sector;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400196
197 BUG_ON(!io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400198 bio->bi_private = NULL;
199 bio->bi_end_io = NULL;
200 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
201 error = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400202 bio_put(bio);
203
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400204 for (i = 0; i < io_end->num_io_pages; i++) {
205 struct page *page = io_end->pages[i]->p_page;
206 struct buffer_head *bh, *head;
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400207 loff_t offset;
208 loff_t io_end_offset;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400209
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400210 if (error) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400211 SetPageError(page);
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400212 set_bit(AS_EIO, &page->mapping->flags);
213 head = page_buffers(page);
214 BUG_ON(!head);
215
216 io_end_offset = io_end->offset + io_end->size;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400217
218 offset = (sector_t) page->index << PAGE_CACHE_SHIFT;
219 bh = head;
220 do {
221 if ((offset >= io_end->offset) &&
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400222 (offset+bh->b_size <= io_end_offset))
223 buffer_io_error(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400224
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400225 offset += bh->b_size;
226 bh = bh->b_this_page;
227 } while (bh != head);
228 }
229
Markus Trippelsdorf08da1192010-11-17 21:46:06 -0500230 put_io_page(io_end->pages[i]);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400231 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400232 io_end->num_io_pages = 0;
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500233 inode = io_end->inode;
234
235 if (error) {
236 io_end->flag |= EXT4_IO_END_ERROR;
237 ext4_warning(inode->i_sb, "I/O error writing to inode %lu "
238 "(offset %llu size %ld starting block %llu)",
239 inode->i_ino,
240 (unsigned long long) io_end->offset,
241 (long) io_end->size,
242 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500243 bi_sector >> (inode->i_blkbits - 9));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500244 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400245
Theodore Ts'ob6168442011-02-28 13:12:38 -0500246 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN)) {
247 ext4_free_io_end(io_end);
248 return;
249 }
250
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400251 /* Add the io_end to per-inode completed io list*/
252 spin_lock_irqsave(&EXT4_I(inode)->i_completed_io_lock, flags);
253 list_add_tail(&io_end->list, &EXT4_I(inode)->i_completed_io_list);
254 spin_unlock_irqrestore(&EXT4_I(inode)->i_completed_io_lock, flags);
255
256 wq = EXT4_SB(inode->i_sb)->dio_unwritten_wq;
257 /* queue the work to convert unwritten extents to written */
258 queue_work(wq, &io_end->work);
259}
260
261void ext4_io_submit(struct ext4_io_submit *io)
262{
263 struct bio *bio = io->io_bio;
264
265 if (bio) {
266 bio_get(io->io_bio);
267 submit_bio(io->io_op, io->io_bio);
268 BUG_ON(bio_flagged(io->io_bio, BIO_EOPNOTSUPP));
269 bio_put(io->io_bio);
270 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500271 io->io_bio = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400272 io->io_op = 0;
Peter Huewe7dc57612011-02-21 21:01:42 -0500273 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400274}
275
276static int io_submit_init(struct ext4_io_submit *io,
277 struct inode *inode,
278 struct writeback_control *wbc,
279 struct buffer_head *bh)
280{
281 ext4_io_end_t *io_end;
282 struct page *page = bh->b_page;
283 int nvecs = bio_get_nr_vecs(bh->b_bdev);
284 struct bio *bio;
285
286 io_end = ext4_init_io_end(inode, GFP_NOFS);
287 if (!io_end)
288 return -ENOMEM;
Theodore Ts'o275d3ba2011-06-29 21:44:45 -0400289 bio = bio_alloc(GFP_NOIO, min(nvecs, BIO_MAX_PAGES));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400290 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
291 bio->bi_bdev = bh->b_bdev;
292 bio->bi_private = io->io_end = io_end;
293 bio->bi_end_io = ext4_end_bio;
294
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400295 io_end->offset = (page->index << PAGE_CACHE_SHIFT) + bh_offset(bh);
296
297 io->io_bio = bio;
Jens Axboe721a9602011-03-09 11:56:30 +0100298 io->io_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400299 io->io_next_block = bh->b_blocknr;
300 return 0;
301}
302
303static int io_submit_add_bh(struct ext4_io_submit *io,
304 struct ext4_io_page *io_page,
305 struct inode *inode,
306 struct writeback_control *wbc,
307 struct buffer_head *bh)
308{
309 ext4_io_end_t *io_end;
310 int ret;
311
312 if (buffer_new(bh)) {
313 clear_buffer_new(bh);
314 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
315 }
316
317 if (!buffer_mapped(bh) || buffer_delay(bh)) {
318 if (!buffer_mapped(bh))
319 clear_buffer_dirty(bh);
320 if (io->io_bio)
321 ext4_io_submit(io);
322 return 0;
323 }
324
325 if (io->io_bio && bh->b_blocknr != io->io_next_block) {
326submit_and_retry:
327 ext4_io_submit(io);
328 }
329 if (io->io_bio == NULL) {
330 ret = io_submit_init(io, inode, wbc, bh);
331 if (ret)
332 return ret;
333 }
334 io_end = io->io_end;
335 if ((io_end->num_io_pages >= MAX_IO_PAGES) &&
336 (io_end->pages[io_end->num_io_pages-1] != io_page))
337 goto submit_and_retry;
Tao Ma0edeb712011-10-31 17:30:44 -0400338 if (buffer_uninit(bh))
339 ext4_set_io_unwritten_flag(inode, io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400340 io->io_end->size += bh->b_size;
341 io->io_next_block++;
342 ret = bio_add_page(io->io_bio, bh->b_page, bh->b_size, bh_offset(bh));
343 if (ret != bh->b_size)
344 goto submit_and_retry;
345 if ((io_end->num_io_pages == 0) ||
346 (io_end->pages[io_end->num_io_pages-1] != io_page)) {
347 io_end->pages[io_end->num_io_pages++] = io_page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500348 atomic_inc(&io_page->p_count);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400349 }
350 return 0;
351}
352
353int ext4_bio_write_page(struct ext4_io_submit *io,
354 struct page *page,
355 int len,
356 struct writeback_control *wbc)
357{
358 struct inode *inode = page->mapping->host;
359 unsigned block_start, block_end, blocksize;
360 struct ext4_io_page *io_page;
361 struct buffer_head *bh, *head;
362 int ret = 0;
363
364 blocksize = 1 << inode->i_blkbits;
365
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500366 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400367 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400368
369 io_page = kmem_cache_alloc(io_page_cachep, GFP_NOFS);
370 if (!io_page) {
371 set_page_dirty(page);
372 unlock_page(page);
373 return -ENOMEM;
374 }
375 io_page->p_page = page;
Theodore Ts'o83668e72010-11-08 13:45:33 -0500376 atomic_set(&io_page->p_count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400377 get_page(page);
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500378 set_page_writeback(page);
379 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400380
381 for (bh = head = page_buffers(page), block_start = 0;
382 bh != head || !block_start;
383 block_start = block_end, bh = bh->b_this_page) {
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500384
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400385 block_end = block_start + blocksize;
386 if (block_start >= len) {
Yongqiang Yang5a0dc732011-12-13 22:29:12 -0500387 /*
388 * Comments copied from block_write_full_page_endio:
389 *
390 * The page straddles i_size. It must be zeroed out on
391 * each and every writepage invocation because it may
392 * be mmapped. "A file is mapped in multiples of the
393 * page size. For a file that is not a multiple of
394 * the page size, the remaining memory is zeroed when
395 * mapped, and writes to that region are not written
396 * out to the file."
397 */
398 zero_user_segment(page, block_start, block_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400399 clear_buffer_dirty(bh);
400 set_buffer_uptodate(bh);
401 continue;
402 }
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500403 clear_buffer_dirty(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400404 ret = io_submit_add_bh(io, io_page, inode, wbc, bh);
405 if (ret) {
406 /*
407 * We only get here on ENOMEM. Not much else
408 * we can do but mark the page as dirty, and
409 * better luck next time.
410 */
411 set_page_dirty(page);
412 break;
413 }
414 }
415 unlock_page(page);
416 /*
417 * If the page was truncated before we could do the writeback,
418 * or we had a memory allocation error while trying to write
419 * the first buffer head, we won't have submitted any pages for
420 * I/O. In that case we need to make sure we've cleared the
421 * PageWriteback bit from the page to prevent the system from
422 * wedging later on.
423 */
Theodore Ts'o83668e72010-11-08 13:45:33 -0500424 put_io_page(io_page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400425 return ret;
426}