blob: 19599bded62a834be3bc52dbf68cfb0414ec564d [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>
Kent Overstreeta27bb332013-05-07 16:19:08 -070021#include <linux/aio.h>
Theodore Ts'obd2d0212010-10-27 21:30:10 -040022#include <linux/uio.h>
23#include <linux/bio.h>
24#include <linux/workqueue.h>
25#include <linux/kernel.h>
26#include <linux/slab.h>
Jan Kara1ae48a62013-01-28 09:32:54 -050027#include <linux/mm.h>
Theodore Ts'obd2d0212010-10-27 21:30:10 -040028
29#include "ext4_jbd2.h"
30#include "xattr.h"
31#include "acl.h"
Theodore Ts'obd2d0212010-10-27 21:30:10 -040032
Jan Kara0058f962013-04-11 23:48:32 -040033static struct kmem_cache *io_end_cachep;
Theodore Ts'obd2d0212010-10-27 21:30:10 -040034
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040035int __init ext4_init_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040036{
Theodore Ts'obd2d0212010-10-27 21:30:10 -040037 io_end_cachep = KMEM_CACHE(ext4_io_end, SLAB_RECLAIM_ACCOUNT);
Jan Kara0058f962013-04-11 23:48:32 -040038 if (io_end_cachep == NULL)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040039 return -ENOMEM;
Theodore Ts'obd2d0212010-10-27 21:30:10 -040040 return 0;
41}
42
Theodore Ts'o5dabfc72010-10-27 21:30:14 -040043void ext4_exit_pageio(void)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040044{
45 kmem_cache_destroy(io_end_cachep);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040046}
47
Theodore Ts'o1ada47d2013-03-20 09:39:42 -040048/*
49 * This function is called by ext4_evict_inode() to make sure there is
50 * no more pending I/O completion work left to do.
51 */
52void ext4_ioend_shutdown(struct inode *inode)
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050053{
Eric Sandeene9e3bce2011-02-12 08:17:34 -050054 wait_queue_head_t *wq = ext4_ioend_wq(inode);
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050055
56 wait_event(*wq, (atomic_read(&EXT4_I(inode)->i_ioend_count) == 0));
Theodore Ts'o1ada47d2013-03-20 09:39:42 -040057 /*
58 * We need to make sure the work structure is finished being
59 * used before we let the inode get destroyed.
60 */
61 if (work_pending(&EXT4_I(inode)->i_unwritten_work))
62 cancel_work_sync(&EXT4_I(inode)->i_unwritten_work);
Theodore Ts'of7ad6d22010-11-08 13:43:33 -050063}
64
Jan Kara97a851e2013-06-04 11:58:58 -040065static void ext4_release_io_end(ext4_io_end_t *io_end)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040066{
Jan Kara97a851e2013-06-04 11:58:58 -040067 BUG_ON(!list_empty(&io_end->list));
68 BUG_ON(io_end->flag & EXT4_IO_END_UNWRITTEN);
Theodore Ts'obd2d0212010-10-27 21:30:10 -040069
Jan Kara97a851e2013-06-04 11:58:58 -040070 if (atomic_dec_and_test(&EXT4_I(io_end->inode)->i_ioend_count))
71 wake_up_all(ext4_ioend_wq(io_end->inode));
72 if (io_end->flag & EXT4_IO_END_DIRECT)
73 inode_dio_done(io_end->inode);
74 if (io_end->iocb)
75 aio_complete(io_end->iocb, io_end->result, 0);
76 kmem_cache_free(io_end_cachep, io_end);
77}
78
79static void ext4_clear_io_unwritten_flag(ext4_io_end_t *io_end)
80{
81 struct inode *inode = io_end->inode;
82
83 io_end->flag &= ~EXT4_IO_END_UNWRITTEN;
84 /* Wake up anyone waiting on unwritten extent conversion */
85 if (atomic_dec_and_test(&EXT4_I(inode)->i_unwritten))
86 wake_up_all(ext4_ioend_wq(inode));
Theodore Ts'obd2d0212010-10-27 21:30:10 -040087}
88
Dmitry Monakhov28a535f2012-09-29 00:14:55 -040089/* check a range of space and convert unwritten extents to written. */
90static int ext4_end_io(ext4_io_end_t *io)
Theodore Ts'obd2d0212010-10-27 21:30:10 -040091{
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 }
Jan Kara97a851e2013-06-04 11:58:58 -0400109 ext4_clear_io_unwritten_flag(io);
110 ext4_release_io_end(io);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400111 return ret;
112}
113
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400114static void dump_completed_IO(struct inode *inode)
115{
116#ifdef EXT4FS_DEBUG
117 struct list_head *cur, *before, *after;
118 ext4_io_end_t *io, *io0, *io1;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400119
120 if (list_empty(&EXT4_I(inode)->i_completed_io_list)) {
121 ext4_debug("inode %lu completed_io list is empty\n",
122 inode->i_ino);
123 return;
124 }
125
126 ext4_debug("Dump inode %lu completed_io list\n", inode->i_ino);
127 list_for_each_entry(io, &EXT4_I(inode)->i_completed_io_list, list) {
128 cur = &io->list;
129 before = cur->prev;
130 io0 = container_of(before, ext4_io_end_t, list);
131 after = cur->next;
132 io1 = container_of(after, ext4_io_end_t, list);
133
134 ext4_debug("io 0x%p from inode %lu,prev 0x%p,next 0x%p\n",
135 io, inode->i_ino, io0, io1);
136 }
137#endif
138}
139
140/* Add the io_end to per-inode completed end_io list. */
Jan Kara97a851e2013-06-04 11:58:58 -0400141static void ext4_add_complete_io(ext4_io_end_t *io_end)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400142{
143 struct ext4_inode_info *ei = EXT4_I(io_end->inode);
144 struct workqueue_struct *wq;
145 unsigned long flags;
146
147 BUG_ON(!(io_end->flag & EXT4_IO_END_UNWRITTEN));
148 wq = EXT4_SB(io_end->inode->i_sb)->dio_unwritten_wq;
149
150 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
Jan Kara84c17542013-01-28 09:43:46 -0500151 if (list_empty(&ei->i_completed_io_list))
152 queue_work(wq, &ei->i_unwritten_work);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400153 list_add_tail(&io_end->list, &ei->i_completed_io_list);
154 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
155}
156
Jan Kara84c17542013-01-28 09:43:46 -0500157static int ext4_do_flush_completed_IO(struct inode *inode)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400158{
159 ext4_io_end_t *io;
Jan Kara002bd7f2013-01-28 09:49:15 -0500160 struct list_head unwritten;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400161 unsigned long flags;
162 struct ext4_inode_info *ei = EXT4_I(inode);
163 int err, ret = 0;
164
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400165 spin_lock_irqsave(&ei->i_completed_io_lock, flags);
166 dump_completed_IO(inode);
167 list_replace_init(&ei->i_completed_io_list, &unwritten);
168 spin_unlock_irqrestore(&ei->i_completed_io_lock, flags);
169
170 while (!list_empty(&unwritten)) {
171 io = list_entry(unwritten.next, ext4_io_end_t, list);
172 BUG_ON(!(io->flag & EXT4_IO_END_UNWRITTEN));
173 list_del_init(&io->list);
174
175 err = ext4_end_io(io);
176 if (unlikely(!ret && err))
177 ret = err;
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400178 }
179 return ret;
180}
181
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400182/*
183 * work on completed aio dio IO, to convert unwritten extents to extents
184 */
Jan Kara84c17542013-01-28 09:43:46 -0500185void ext4_end_io_work(struct work_struct *work)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400186{
Jan Kara84c17542013-01-28 09:43:46 -0500187 struct ext4_inode_info *ei = container_of(work, struct ext4_inode_info,
188 i_unwritten_work);
189 ext4_do_flush_completed_IO(&ei->vfs_inode);
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400190}
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400191
Dmitry Monakhovc2785312012-10-05 11:31:55 -0400192int ext4_flush_unwritten_io(struct inode *inode)
Dmitry Monakhov28a535f2012-09-29 00:14:55 -0400193{
Dmitry Monakhovc2785312012-10-05 11:31:55 -0400194 int ret;
195 WARN_ON_ONCE(!mutex_is_locked(&inode->i_mutex) &&
196 !(inode->i_state & I_FREEING));
Jan Kara84c17542013-01-28 09:43:46 -0500197 ret = ext4_do_flush_completed_IO(inode);
Dmitry Monakhovc2785312012-10-05 11:31:55 -0400198 ext4_unwritten_wait(inode);
199 return ret;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400200}
201
202ext4_io_end_t *ext4_init_io_end(struct inode *inode, gfp_t flags)
203{
Jesper Juhlb17b35e2010-12-19 21:41:55 -0500204 ext4_io_end_t *io = kmem_cache_zalloc(io_end_cachep, flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400205 if (io) {
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500206 atomic_inc(&EXT4_I(inode)->i_ioend_count);
207 io->inode = inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400208 INIT_LIST_HEAD(&io->list);
Jan Kara97a851e2013-06-04 11:58:58 -0400209 atomic_set(&io->count, 1);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400210 }
211 return io;
212}
213
Jan Kara97a851e2013-06-04 11:58:58 -0400214void ext4_put_io_end_defer(ext4_io_end_t *io_end)
215{
216 if (atomic_dec_and_test(&io_end->count)) {
217 if (!(io_end->flag & EXT4_IO_END_UNWRITTEN) || !io_end->size) {
218 ext4_release_io_end(io_end);
219 return;
220 }
221 ext4_add_complete_io(io_end);
222 }
223}
224
225int ext4_put_io_end(ext4_io_end_t *io_end)
226{
227 int err = 0;
228
229 if (atomic_dec_and_test(&io_end->count)) {
230 if (io_end->flag & EXT4_IO_END_UNWRITTEN) {
231 err = ext4_convert_unwritten_extents(io_end->inode,
232 io_end->offset, io_end->size);
233 ext4_clear_io_unwritten_flag(io_end);
234 }
235 ext4_release_io_end(io_end);
236 }
237 return err;
238}
239
240ext4_io_end_t *ext4_get_io_end(ext4_io_end_t *io_end)
241{
242 atomic_inc(&io_end->count);
243 return io_end;
244}
245
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400246/*
247 * Print an buffer I/O error compatible with the fs/buffer.c. This
248 * provides compatibility with dmesg scrapers that look for a specific
249 * buffer I/O error message. We really need a unified error reporting
250 * structure to userspace ala Digital Unix's uerf system, but it's
251 * probably not going to happen in my lifetime, due to LKML politics...
252 */
253static void buffer_io_error(struct buffer_head *bh)
254{
255 char b[BDEVNAME_SIZE];
256 printk(KERN_ERR "Buffer I/O error on device %s, logical block %llu\n",
257 bdevname(bh->b_bdev, b),
258 (unsigned long long)bh->b_blocknr);
259}
260
261static void ext4_end_bio(struct bio *bio, int error)
262{
263 ext4_io_end_t *io_end = bio->bi_private;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400264 struct inode *inode;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400265 int i;
Jan Kara0058f962013-04-11 23:48:32 -0400266 int blocksize;
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500267 sector_t bi_sector = bio->bi_sector;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400268
269 BUG_ON(!io_end);
Jan Kara0058f962013-04-11 23:48:32 -0400270 inode = io_end->inode;
271 blocksize = 1 << inode->i_blkbits;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400272 bio->bi_private = NULL;
273 bio->bi_end_io = NULL;
274 if (test_bit(BIO_UPTODATE, &bio->bi_flags))
275 error = 0;
Jan Kara0058f962013-04-11 23:48:32 -0400276 for (i = 0; i < bio->bi_vcnt; i++) {
277 struct bio_vec *bvec = &bio->bi_io_vec[i];
278 struct page *page = bvec->bv_page;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400279 struct buffer_head *bh, *head;
Jan Kara0058f962013-04-11 23:48:32 -0400280 unsigned bio_start = bvec->bv_offset;
281 unsigned bio_end = bio_start + bvec->bv_len;
282 unsigned under_io = 0;
283 unsigned long flags;
284
285 if (!page)
286 continue;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400287
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400288 if (error) {
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400289 SetPageError(page);
Curt Wohlgemuth39db00f2011-04-30 13:26:26 -0400290 set_bit(AS_EIO, &page->mapping->flags);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400291 }
Jan Kara0058f962013-04-11 23:48:32 -0400292 bh = head = page_buffers(page);
293 /*
294 * We check all buffers in the page under BH_Uptodate_Lock
295 * to avoid races with other end io clearing async_write flags
296 */
297 local_irq_save(flags);
298 bit_spin_lock(BH_Uptodate_Lock, &head->b_state);
299 do {
300 if (bh_offset(bh) < bio_start ||
301 bh_offset(bh) + blocksize > bio_end) {
302 if (buffer_async_write(bh))
303 under_io++;
304 continue;
305 }
306 clear_buffer_async_write(bh);
307 if (error)
308 buffer_io_error(bh);
309 } while ((bh = bh->b_this_page) != head);
310 bit_spin_unlock(BH_Uptodate_Lock, &head->b_state);
311 local_irq_restore(flags);
312 if (!under_io)
313 end_page_writeback(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400314 }
Jan Kara0058f962013-04-11 23:48:32 -0400315 bio_put(bio);
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500316
317 if (error) {
318 io_end->flag |= EXT4_IO_END_ERROR;
319 ext4_warning(inode->i_sb, "I/O error writing to inode %lu "
320 "(offset %llu size %ld starting block %llu)",
321 inode->i_ino,
322 (unsigned long long) io_end->offset,
323 (long) io_end->size,
324 (unsigned long long)
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500325 bi_sector >> (inode->i_blkbits - 9));
Theodore Ts'of7ad6d22010-11-08 13:43:33 -0500326 }
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400327
Jan Kara97a851e2013-06-04 11:58:58 -0400328 ext4_put_io_end_defer(io_end);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400329}
330
331void ext4_io_submit(struct ext4_io_submit *io)
332{
333 struct bio *bio = io->io_bio;
334
335 if (bio) {
336 bio_get(io->io_bio);
337 submit_bio(io->io_op, io->io_bio);
338 BUG_ON(bio_flagged(io->io_bio, BIO_EOPNOTSUPP));
339 bio_put(io->io_bio);
340 }
Peter Huewe7dc57612011-02-21 21:01:42 -0500341 io->io_bio = NULL;
Jan Kara97a851e2013-06-04 11:58:58 -0400342}
343
344void ext4_io_submit_init(struct ext4_io_submit *io,
345 struct writeback_control *wbc)
346{
347 io->io_op = (wbc->sync_mode == WB_SYNC_ALL ? WRITE_SYNC : WRITE);
348 io->io_bio = NULL;
Peter Huewe7dc57612011-02-21 21:01:42 -0500349 io->io_end = NULL;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400350}
351
Jan Kara97a851e2013-06-04 11:58:58 -0400352static int io_submit_init_bio(struct ext4_io_submit *io,
353 struct buffer_head *bh)
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400354{
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400355 int nvecs = bio_get_nr_vecs(bh->b_bdev);
356 struct bio *bio;
357
Theodore Ts'o275d3ba2011-06-29 21:44:45 -0400358 bio = bio_alloc(GFP_NOIO, min(nvecs, BIO_MAX_PAGES));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400359 bio->bi_sector = bh->b_blocknr * (bh->b_size >> 9);
360 bio->bi_bdev = bh->b_bdev;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400361 bio->bi_end_io = ext4_end_bio;
Jan Kara97a851e2013-06-04 11:58:58 -0400362 bio->bi_private = ext4_get_io_end(io->io_end);
363 if (!io->io_end->size)
364 io->io_end->offset = (bh->b_page->index << PAGE_CACHE_SHIFT)
365 + bh_offset(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400366 io->io_bio = bio;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400367 io->io_next_block = bh->b_blocknr;
368 return 0;
369}
370
371static int io_submit_add_bh(struct ext4_io_submit *io,
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400372 struct inode *inode,
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400373 struct buffer_head *bh)
374{
375 ext4_io_end_t *io_end;
376 int ret;
377
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400378 if (io->io_bio && bh->b_blocknr != io->io_next_block) {
379submit_and_retry:
380 ext4_io_submit(io);
381 }
382 if (io->io_bio == NULL) {
Jan Kara97a851e2013-06-04 11:58:58 -0400383 ret = io_submit_init_bio(io, bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400384 if (ret)
385 return ret;
386 }
Theodore Ts'oa5499842013-05-11 19:07:42 -0400387 ret = bio_add_page(io->io_bio, bh->b_page, bh->b_size, bh_offset(bh));
388 if (ret != bh->b_size)
389 goto submit_and_retry;
Jan Kara97a851e2013-06-04 11:58:58 -0400390 io_end = io->io_end;
391 if (test_clear_buffer_uninit(bh))
392 ext4_set_io_unwritten_flag(inode, io_end);
393 io_end->size += bh->b_size;
394 io->io_next_block++;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400395 return 0;
396}
397
398int ext4_bio_write_page(struct ext4_io_submit *io,
399 struct page *page,
400 int len,
401 struct writeback_control *wbc)
402{
403 struct inode *inode = page->mapping->host;
Jan Kara0058f962013-04-11 23:48:32 -0400404 unsigned block_start, blocksize;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400405 struct buffer_head *bh, *head;
406 int ret = 0;
Jan Kara0058f962013-04-11 23:48:32 -0400407 int nr_submitted = 0;
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400408
409 blocksize = 1 << inode->i_blkbits;
410
Curt Wohlgemuthd50bdd52011-02-07 12:46:14 -0500411 BUG_ON(!PageLocked(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400412 BUG_ON(PageWriteback(page));
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400413
Theodore Ts'oa54aa762011-02-27 16:43:24 -0500414 set_page_writeback(page);
415 ClearPageError(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400416
Jan Kara0058f962013-04-11 23:48:32 -0400417 /*
418 * In the first loop we prepare and mark buffers to submit. We have to
419 * mark all buffers in the page before submitting so that
420 * end_page_writeback() cannot be called from ext4_bio_end_io() when IO
421 * on the first buffer finishes and we are still working on submitting
422 * the second buffer.
423 */
424 bh = head = page_buffers(page);
425 do {
426 block_start = bh_offset(bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400427 if (block_start >= len) {
Yongqiang Yang5a0dc732011-12-13 22:29:12 -0500428 /*
429 * Comments copied from block_write_full_page_endio:
430 *
431 * The page straddles i_size. It must be zeroed out on
432 * each and every writepage invocation because it may
433 * be mmapped. "A file is mapped in multiples of the
434 * page size. For a file that is not a multiple of
435 * the page size, the remaining memory is zeroed when
436 * mapped, and writes to that region are not written
437 * out to the file."
438 */
Jan Kara0058f962013-04-11 23:48:32 -0400439 zero_user_segment(page, block_start,
440 block_start + blocksize);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400441 clear_buffer_dirty(bh);
442 set_buffer_uptodate(bh);
443 continue;
444 }
Jan Kara8a850c32013-01-28 20:53:28 -0500445 if (!buffer_dirty(bh) || buffer_delay(bh) ||
446 !buffer_mapped(bh) || buffer_unwritten(bh)) {
447 /* A hole? We can safely clear the dirty bit */
448 if (!buffer_mapped(bh))
449 clear_buffer_dirty(bh);
450 if (io->io_bio)
451 ext4_io_submit(io);
452 continue;
453 }
Jan Kara0058f962013-04-11 23:48:32 -0400454 if (buffer_new(bh)) {
455 clear_buffer_new(bh);
456 unmap_underlying_metadata(bh->b_bdev, bh->b_blocknr);
457 }
458 set_buffer_async_write(bh);
459 } while ((bh = bh->b_this_page) != head);
460
461 /* Now submit buffers to write */
462 bh = head = page_buffers(page);
463 do {
464 if (!buffer_async_write(bh))
465 continue;
Jan Kara97a851e2013-06-04 11:58:58 -0400466 ret = io_submit_add_bh(io, inode, bh);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400467 if (ret) {
468 /*
469 * We only get here on ENOMEM. Not much else
470 * we can do but mark the page as dirty, and
471 * better luck next time.
472 */
Jan Kara1ae48a62013-01-28 09:32:54 -0500473 redirty_page_for_writepage(wbc, page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400474 break;
475 }
Jan Kara0058f962013-04-11 23:48:32 -0400476 nr_submitted++;
Jan Kara1ae48a62013-01-28 09:32:54 -0500477 clear_buffer_dirty(bh);
Jan Kara0058f962013-04-11 23:48:32 -0400478 } while ((bh = bh->b_this_page) != head);
479
480 /* Error stopped previous loop? Clean up buffers... */
481 if (ret) {
482 do {
483 clear_buffer_async_write(bh);
484 bh = bh->b_this_page;
485 } while (bh != head);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400486 }
487 unlock_page(page);
Jan Kara0058f962013-04-11 23:48:32 -0400488 /* Nothing submitted - we have to end page writeback */
489 if (!nr_submitted)
490 end_page_writeback(page);
Theodore Ts'obd2d0212010-10-27 21:30:10 -0400491 return ret;
492}