~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise-security

« back to all changes in this revision

Viewing changes to fs/direct-io.c

  • Committer: Package Import Robot
  • Author(s): Paolo Pisati, Paolo Pisati
  • Date: 2011-12-06 15:56:07 UTC
  • Revision ID: package-import@ubuntu.com-20111206155607-pcf44kv5fmhk564f
Tags: 3.2.0-1401.1
[ Paolo Pisati ]

* Rebased on top of Ubuntu-3.2.0-3.8
* Tilt-tracking @ ef2487af4bb15bdd0689631774b5a5e3a59f74e2
* Delete debian.ti-omap4/control, it shoudln't be tracked
* Fix architecture spelling (s/armel/armhf/)
* [Config] Update configs following 3.2 import
* [Config] Fix compilation: disable CODA and ARCH_OMAP3
* [Config] Fix compilation: disable Ethernet Faraday
* Update series to precise

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
#include <linux/buffer_head.h>
36
36
#include <linux/rwsem.h>
37
37
#include <linux/uio.h>
38
 
#include <asm/atomic.h>
 
38
#include <linux/atomic.h>
39
39
 
40
40
/*
41
41
 * How many user pages to map in one call to get_user_pages().  This determines
42
 
 * the size of a structure on the stack.
 
42
 * the size of a structure in the slab cache
43
43
 */
44
44
#define DIO_PAGES       64
45
45
 
55
55
 * blocksize.
56
56
 */
57
57
 
58
 
struct dio {
59
 
        /* BIO submission state */
 
58
/* dio_state only used in the submission path */
 
59
 
 
60
struct dio_submit {
60
61
        struct bio *bio;                /* bio under assembly */
61
 
        struct inode *inode;
62
 
        int rw;
63
 
        loff_t i_size;                  /* i_size when submitted */
64
 
        int flags;                      /* doesn't change */
65
62
        unsigned blkbits;               /* doesn't change */
66
63
        unsigned blkfactor;             /* When we're using an alignment which
67
64
                                           is finer than the filesystem's soft
76
73
        sector_t block_in_file;         /* Current offset into the underlying
77
74
                                           file in dio_block units. */
78
75
        unsigned blocks_available;      /* At block_in_file.  changes */
 
76
        int reap_counter;               /* rate limit reaping */
79
77
        sector_t final_block_in_request;/* doesn't change */
80
78
        unsigned first_block_in_page;   /* doesn't change, Used only once */
81
79
        int boundary;                   /* prev block is at a boundary */
82
 
        int reap_counter;               /* rate limit reaping */
83
80
        get_block_t *get_block;         /* block mapping function */
84
 
        dio_iodone_t *end_io;           /* IO completion function */
85
81
        dio_submit_t *submit_io;        /* IO submition function */
 
82
 
86
83
        loff_t logical_offset_in_bio;   /* current first logical block in bio */
87
84
        sector_t final_block_in_bio;    /* current final block in bio + 1 */
88
85
        sector_t next_block_for_io;     /* next block to be put under IO,
89
86
                                           in dio_blocks units */
90
 
        struct buffer_head map_bh;      /* last get_block() result */
91
87
 
92
88
        /*
93
89
         * Deferred addition of a page to the dio.  These variables are
100
96
        sector_t cur_page_block;        /* Where it starts */
101
97
        loff_t cur_page_fs_offset;      /* Offset in file */
102
98
 
103
 
        /* BIO completion state */
104
 
        spinlock_t bio_lock;            /* protects BIO fields below */
105
 
        unsigned long refcount;         /* direct_io_worker() and bios */
106
 
        struct bio *bio_list;           /* singly linked via bi_private */
107
 
        struct task_struct *waiter;     /* waiting task (NULL if none) */
108
 
 
109
 
        /* AIO related stuff */
110
 
        struct kiocb *iocb;             /* kiocb */
111
 
        int is_async;                   /* is IO async ? */
112
 
        int io_error;                   /* IO error in completion path */
113
 
        ssize_t result;                 /* IO result */
114
 
 
115
99
        /*
116
100
         * Page fetching state. These variables belong to dio_refill_pages().
117
101
         */
125
109
         */
126
110
        unsigned head;                  /* next page to process */
127
111
        unsigned tail;                  /* last valid page + 1 */
 
112
};
 
113
 
 
114
/* dio_state communicated between submission path and end_io */
 
115
struct dio {
 
116
        int flags;                      /* doesn't change */
 
117
        int rw;
 
118
        struct inode *inode;
 
119
        loff_t i_size;                  /* i_size when submitted */
 
120
        dio_iodone_t *end_io;           /* IO completion function */
 
121
 
 
122
        void *private;                  /* copy from map_bh.b_private */
 
123
 
 
124
        /* BIO completion state */
 
125
        spinlock_t bio_lock;            /* protects BIO fields below */
128
126
        int page_errors;                /* errno from get_user_pages() */
 
127
        int is_async;                   /* is IO async ? */
 
128
        int io_error;                   /* IO error in completion path */
 
129
        unsigned long refcount;         /* direct_io_worker() and bios */
 
130
        struct bio *bio_list;           /* singly linked via bi_private */
 
131
        struct task_struct *waiter;     /* waiting task (NULL if none) */
 
132
 
 
133
        /* AIO related stuff */
 
134
        struct kiocb *iocb;             /* kiocb */
 
135
        ssize_t result;                 /* IO result */
129
136
 
130
137
        /*
131
138
         * pages[] (and any fields placed after it) are not zeroed out at
133
140
         * wish that they not be zeroed.
134
141
         */
135
142
        struct page *pages[DIO_PAGES];  /* page buffer */
136
 
};
 
143
} ____cacheline_aligned_in_smp;
 
144
 
 
145
static struct kmem_cache *dio_cache __read_mostly;
 
146
 
 
147
static void __inode_dio_wait(struct inode *inode)
 
148
{
 
149
        wait_queue_head_t *wq = bit_waitqueue(&inode->i_state, __I_DIO_WAKEUP);
 
150
        DEFINE_WAIT_BIT(q, &inode->i_state, __I_DIO_WAKEUP);
 
151
 
 
152
        do {
 
153
                prepare_to_wait(wq, &q.wait, TASK_UNINTERRUPTIBLE);
 
154
                if (atomic_read(&inode->i_dio_count))
 
155
                        schedule();
 
156
        } while (atomic_read(&inode->i_dio_count));
 
157
        finish_wait(wq, &q.wait);
 
158
}
 
159
 
 
160
/**
 
161
 * inode_dio_wait - wait for outstanding DIO requests to finish
 
162
 * @inode: inode to wait for
 
163
 *
 
164
 * Waits for all pending direct I/O requests to finish so that we can
 
165
 * proceed with a truncate or equivalent operation.
 
166
 *
 
167
 * Must be called under a lock that serializes taking new references
 
168
 * to i_dio_count, usually by inode->i_mutex.
 
169
 */
 
170
void inode_dio_wait(struct inode *inode)
 
171
{
 
172
        if (atomic_read(&inode->i_dio_count))
 
173
                __inode_dio_wait(inode);
 
174
}
 
175
EXPORT_SYMBOL_GPL(inode_dio_wait);
 
176
 
 
177
/*
 
178
 * inode_dio_done - signal finish of a direct I/O requests
 
179
 * @inode: inode the direct I/O happens on
 
180
 *
 
181
 * This is called once we've finished processing a direct I/O request,
 
182
 * and is used to wake up callers waiting for direct I/O to be quiesced.
 
183
 */
 
184
void inode_dio_done(struct inode *inode)
 
185
{
 
186
        if (atomic_dec_and_test(&inode->i_dio_count))
 
187
                wake_up_bit(&inode->i_state, __I_DIO_WAKEUP);
 
188
}
 
189
EXPORT_SYMBOL_GPL(inode_dio_done);
137
190
 
138
191
/*
139
192
 * How many pages are in the queue?
140
193
 */
141
 
static inline unsigned dio_pages_present(struct dio *dio)
 
194
static inline unsigned dio_pages_present(struct dio_submit *sdio)
142
195
{
143
 
        return dio->tail - dio->head;
 
196
        return sdio->tail - sdio->head;
144
197
}
145
198
 
146
199
/*
147
200
 * Go grab and pin some userspace pages.   Typically we'll get 64 at a time.
148
201
 */
149
 
static int dio_refill_pages(struct dio *dio)
 
202
static inline int dio_refill_pages(struct dio *dio, struct dio_submit *sdio)
150
203
{
151
204
        int ret;
152
205
        int nr_pages;
153
206
 
154
 
        nr_pages = min(dio->total_pages - dio->curr_page, DIO_PAGES);
 
207
        nr_pages = min(sdio->total_pages - sdio->curr_page, DIO_PAGES);
155
208
        ret = get_user_pages_fast(
156
 
                dio->curr_user_address,         /* Where from? */
 
209
                sdio->curr_user_address,                /* Where from? */
157
210
                nr_pages,                       /* How many pages? */
158
211
                dio->rw == READ,                /* Write to memory? */
159
212
                &dio->pages[0]);                /* Put results here */
160
213
 
161
 
        if (ret < 0 && dio->blocks_available && (dio->rw & WRITE)) {
 
214
        if (ret < 0 && sdio->blocks_available && (dio->rw & WRITE)) {
162
215
                struct page *page = ZERO_PAGE(0);
163
216
                /*
164
217
                 * A memory fault, but the filesystem has some outstanding
169
222
                        dio->page_errors = ret;
170
223
                page_cache_get(page);
171
224
                dio->pages[0] = page;
172
 
                dio->head = 0;
173
 
                dio->tail = 1;
 
225
                sdio->head = 0;
 
226
                sdio->tail = 1;
174
227
                ret = 0;
175
228
                goto out;
176
229
        }
177
230
 
178
231
        if (ret >= 0) {
179
 
                dio->curr_user_address += ret * PAGE_SIZE;
180
 
                dio->curr_page += ret;
181
 
                dio->head = 0;
182
 
                dio->tail = ret;
 
232
                sdio->curr_user_address += ret * PAGE_SIZE;
 
233
                sdio->curr_page += ret;
 
234
                sdio->head = 0;
 
235
                sdio->tail = ret;
183
236
                ret = 0;
184
237
        }
185
238
out:
192
245
 * decent number of pages, less frequently.  To provide nicer use of the
193
246
 * L1 cache.
194
247
 */
195
 
static struct page *dio_get_page(struct dio *dio)
 
248
static inline struct page *dio_get_page(struct dio *dio,
 
249
                struct dio_submit *sdio)
196
250
{
197
 
        if (dio_pages_present(dio) == 0) {
 
251
        if (dio_pages_present(sdio) == 0) {
198
252
                int ret;
199
253
 
200
 
                ret = dio_refill_pages(dio);
 
254
                ret = dio_refill_pages(dio, sdio);
201
255
                if (ret)
202
256
                        return ERR_PTR(ret);
203
 
                BUG_ON(dio_pages_present(dio) == 0);
 
257
                BUG_ON(dio_pages_present(sdio) == 0);
204
258
        }
205
 
        return dio->pages[dio->head++];
 
259
        return dio->pages[sdio->head++];
206
260
}
207
261
 
208
262
/**
248
302
 
249
303
        if (dio->end_io && dio->result) {
250
304
                dio->end_io(dio->iocb, offset, transferred,
251
 
                            dio->map_bh.b_private, ret, is_async);
252
 
        } else if (is_async) {
253
 
                aio_complete(dio->iocb, ret, 0);
 
305
                            dio->private, ret, is_async);
 
306
        } else {
 
307
                if (is_async)
 
308
                        aio_complete(dio->iocb, ret, 0);
 
309
                inode_dio_done(dio->inode);
254
310
        }
255
311
 
256
 
        if (dio->flags & DIO_LOCKING)
257
 
                /* lockdep: non-owner release */
258
 
                up_read_non_owner(&dio->inode->i_alloc_sem);
259
 
 
260
312
        return ret;
261
313
}
262
314
 
281
333
 
282
334
        if (remaining == 0) {
283
335
                dio_complete(dio, dio->iocb->ki_pos, 0, true);
284
 
                kfree(dio);
 
336
                kmem_cache_free(dio_cache, dio);
285
337
        }
286
338
}
287
339
 
325
377
}
326
378
EXPORT_SYMBOL_GPL(dio_end_io);
327
379
 
328
 
static void
329
 
dio_bio_alloc(struct dio *dio, struct block_device *bdev,
330
 
                sector_t first_sector, int nr_vecs)
 
380
static inline void
 
381
dio_bio_alloc(struct dio *dio, struct dio_submit *sdio,
 
382
              struct block_device *bdev,
 
383
              sector_t first_sector, int nr_vecs)
331
384
{
332
385
        struct bio *bio;
333
386
 
344
397
        else
345
398
                bio->bi_end_io = dio_bio_end_io;
346
399
 
347
 
        dio->bio = bio;
348
 
        dio->logical_offset_in_bio = dio->cur_page_fs_offset;
 
400
        sdio->bio = bio;
 
401
        sdio->logical_offset_in_bio = sdio->cur_page_fs_offset;
349
402
}
350
403
 
351
404
/*
355
408
 *
356
409
 * bios hold a dio reference between submit_bio and ->end_io.
357
410
 */
358
 
static void dio_bio_submit(struct dio *dio)
 
411
static inline void dio_bio_submit(struct dio *dio, struct dio_submit *sdio)
359
412
{
360
 
        struct bio *bio = dio->bio;
 
413
        struct bio *bio = sdio->bio;
361
414
        unsigned long flags;
362
415
 
363
416
        bio->bi_private = dio;
369
422
        if (dio->is_async && dio->rw == READ)
370
423
                bio_set_pages_dirty(bio);
371
424
 
372
 
        if (dio->submit_io)
373
 
                dio->submit_io(dio->rw, bio, dio->inode,
374
 
                               dio->logical_offset_in_bio);
 
425
        if (sdio->submit_io)
 
426
                sdio->submit_io(dio->rw, bio, dio->inode,
 
427
                               sdio->logical_offset_in_bio);
375
428
        else
376
429
                submit_bio(dio->rw, bio);
377
430
 
378
 
        dio->bio = NULL;
379
 
        dio->boundary = 0;
380
 
        dio->logical_offset_in_bio = 0;
 
431
        sdio->bio = NULL;
 
432
        sdio->boundary = 0;
 
433
        sdio->logical_offset_in_bio = 0;
381
434
}
382
435
 
383
436
/*
384
437
 * Release any resources in case of a failure
385
438
 */
386
 
static void dio_cleanup(struct dio *dio)
 
439
static inline void dio_cleanup(struct dio *dio, struct dio_submit *sdio)
387
440
{
388
 
        while (dio_pages_present(dio))
389
 
                page_cache_release(dio_get_page(dio));
 
441
        while (dio_pages_present(sdio))
 
442
                page_cache_release(dio_get_page(dio, sdio));
390
443
}
391
444
 
392
445
/*
476
529
 *
477
530
 * This also helps to limit the peak amount of pinned userspace memory.
478
531
 */
479
 
static int dio_bio_reap(struct dio *dio)
 
532
static inline int dio_bio_reap(struct dio *dio, struct dio_submit *sdio)
480
533
{
481
534
        int ret = 0;
482
535
 
483
 
        if (dio->reap_counter++ >= 64) {
 
536
        if (sdio->reap_counter++ >= 64) {
484
537
                while (dio->bio_list) {
485
538
                        unsigned long flags;
486
539
                        struct bio *bio;
494
547
                        if (ret == 0)
495
548
                                ret = ret2;
496
549
                }
497
 
                dio->reap_counter = 0;
 
550
                sdio->reap_counter = 0;
498
551
        }
499
552
        return ret;
500
553
}
501
554
 
502
555
/*
503
556
 * Call into the fs to map some more disk blocks.  We record the current number
504
 
 * of available blocks at dio->blocks_available.  These are in units of the
 
557
 * of available blocks at sdio->blocks_available.  These are in units of the
505
558
 * fs blocksize, (1 << inode->i_blkbits).
506
559
 *
507
560
 * The fs is allowed to map lots of blocks at once.  If it wants to do that,
522
575
 * buffer_mapped().  However the direct-io code will only process holes one
523
576
 * block at a time - it will repeatedly call get_block() as it walks the hole.
524
577
 */
525
 
static int get_more_blocks(struct dio *dio)
 
578
static int get_more_blocks(struct dio *dio, struct dio_submit *sdio,
 
579
                           struct buffer_head *map_bh)
526
580
{
527
581
        int ret;
528
 
        struct buffer_head *map_bh = &dio->map_bh;
529
582
        sector_t fs_startblk;   /* Into file, in filesystem-sized blocks */
530
583
        unsigned long fs_count; /* Number of filesystem-sized blocks */
531
584
        unsigned long dio_count;/* Number of dio_block-sized blocks */
538
591
         */
539
592
        ret = dio->page_errors;
540
593
        if (ret == 0) {
541
 
                BUG_ON(dio->block_in_file >= dio->final_block_in_request);
542
 
                fs_startblk = dio->block_in_file >> dio->blkfactor;
543
 
                dio_count = dio->final_block_in_request - dio->block_in_file;
544
 
                fs_count = dio_count >> dio->blkfactor;
545
 
                blkmask = (1 << dio->blkfactor) - 1;
 
594
                BUG_ON(sdio->block_in_file >= sdio->final_block_in_request);
 
595
                fs_startblk = sdio->block_in_file >> sdio->blkfactor;
 
596
                dio_count = sdio->final_block_in_request - sdio->block_in_file;
 
597
                fs_count = dio_count >> sdio->blkfactor;
 
598
                blkmask = (1 << sdio->blkfactor) - 1;
546
599
                if (dio_count & blkmask)        
547
600
                        fs_count++;
548
601
 
562
615
                 */
563
616
                create = dio->rw & WRITE;
564
617
                if (dio->flags & DIO_SKIP_HOLES) {
565
 
                        if (dio->block_in_file < (i_size_read(dio->inode) >>
566
 
                                                        dio->blkbits))
 
618
                        if (sdio->block_in_file < (i_size_read(dio->inode) >>
 
619
                                                        sdio->blkbits))
567
620
                                create = 0;
568
621
                }
569
622
 
570
 
                ret = (*dio->get_block)(dio->inode, fs_startblk,
 
623
                ret = (*sdio->get_block)(dio->inode, fs_startblk,
571
624
                                                map_bh, create);
 
625
 
 
626
                /* Store for completion */
 
627
                dio->private = map_bh->b_private;
572
628
        }
573
629
        return ret;
574
630
}
576
632
/*
577
633
 * There is no bio.  Make one now.
578
634
 */
579
 
static int dio_new_bio(struct dio *dio, sector_t start_sector)
 
635
static inline int dio_new_bio(struct dio *dio, struct dio_submit *sdio,
 
636
                sector_t start_sector, struct buffer_head *map_bh)
580
637
{
581
638
        sector_t sector;
582
639
        int ret, nr_pages;
583
640
 
584
 
        ret = dio_bio_reap(dio);
 
641
        ret = dio_bio_reap(dio, sdio);
585
642
        if (ret)
586
643
                goto out;
587
 
        sector = start_sector << (dio->blkbits - 9);
588
 
        nr_pages = min(dio->pages_in_io, bio_get_nr_vecs(dio->map_bh.b_bdev));
 
644
        sector = start_sector << (sdio->blkbits - 9);
 
645
        nr_pages = min(sdio->pages_in_io, bio_get_nr_vecs(map_bh->b_bdev));
589
646
        nr_pages = min(nr_pages, BIO_MAX_PAGES);
590
647
        BUG_ON(nr_pages <= 0);
591
 
        dio_bio_alloc(dio, dio->map_bh.b_bdev, sector, nr_pages);
592
 
        dio->boundary = 0;
 
648
        dio_bio_alloc(dio, sdio, map_bh->b_bdev, sector, nr_pages);
 
649
        sdio->boundary = 0;
593
650
out:
594
651
        return ret;
595
652
}
601
658
 *
602
659
 * Return zero on success.  Non-zero means the caller needs to start a new BIO.
603
660
 */
604
 
static int dio_bio_add_page(struct dio *dio)
 
661
static inline int dio_bio_add_page(struct dio_submit *sdio)
605
662
{
606
663
        int ret;
607
664
 
608
 
        ret = bio_add_page(dio->bio, dio->cur_page,
609
 
                        dio->cur_page_len, dio->cur_page_offset);
610
 
        if (ret == dio->cur_page_len) {
 
665
        ret = bio_add_page(sdio->bio, sdio->cur_page,
 
666
                        sdio->cur_page_len, sdio->cur_page_offset);
 
667
        if (ret == sdio->cur_page_len) {
611
668
                /*
612
669
                 * Decrement count only, if we are done with this page
613
670
                 */
614
 
                if ((dio->cur_page_len + dio->cur_page_offset) == PAGE_SIZE)
615
 
                        dio->pages_in_io--;
616
 
                page_cache_get(dio->cur_page);
617
 
                dio->final_block_in_bio = dio->cur_page_block +
618
 
                        (dio->cur_page_len >> dio->blkbits);
 
671
                if ((sdio->cur_page_len + sdio->cur_page_offset) == PAGE_SIZE)
 
672
                        sdio->pages_in_io--;
 
673
                page_cache_get(sdio->cur_page);
 
674
                sdio->final_block_in_bio = sdio->cur_page_block +
 
675
                        (sdio->cur_page_len >> sdio->blkbits);
619
676
                ret = 0;
620
677
        } else {
621
678
                ret = 1;
633
690
 * The caller of this function is responsible for removing cur_page from the
634
691
 * dio, and for dropping the refcount which came from that presence.
635
692
 */
636
 
static int dio_send_cur_page(struct dio *dio)
 
693
static inline int dio_send_cur_page(struct dio *dio, struct dio_submit *sdio,
 
694
                struct buffer_head *map_bh)
637
695
{
638
696
        int ret = 0;
639
697
 
640
 
        if (dio->bio) {
641
 
                loff_t cur_offset = dio->cur_page_fs_offset;
642
 
                loff_t bio_next_offset = dio->logical_offset_in_bio +
643
 
                        dio->bio->bi_size;
 
698
        if (sdio->bio) {
 
699
                loff_t cur_offset = sdio->cur_page_fs_offset;
 
700
                loff_t bio_next_offset = sdio->logical_offset_in_bio +
 
701
                        sdio->bio->bi_size;
644
702
 
645
703
                /*
646
704
                 * See whether this new request is contiguous with the old.
656
714
                 * be the next logical offset in the bio, submit the bio we
657
715
                 * have.
658
716
                 */
659
 
                if (dio->final_block_in_bio != dio->cur_page_block ||
 
717
                if (sdio->final_block_in_bio != sdio->cur_page_block ||
660
718
                    cur_offset != bio_next_offset)
661
 
                        dio_bio_submit(dio);
 
719
                        dio_bio_submit(dio, sdio);
662
720
                /*
663
721
                 * Submit now if the underlying fs is about to perform a
664
722
                 * metadata read
665
723
                 */
666
 
                else if (dio->boundary)
667
 
                        dio_bio_submit(dio);
 
724
                else if (sdio->boundary)
 
725
                        dio_bio_submit(dio, sdio);
668
726
        }
669
727
 
670
 
        if (dio->bio == NULL) {
671
 
                ret = dio_new_bio(dio, dio->cur_page_block);
 
728
        if (sdio->bio == NULL) {
 
729
                ret = dio_new_bio(dio, sdio, sdio->cur_page_block, map_bh);
672
730
                if (ret)
673
731
                        goto out;
674
732
        }
675
733
 
676
 
        if (dio_bio_add_page(dio) != 0) {
677
 
                dio_bio_submit(dio);
678
 
                ret = dio_new_bio(dio, dio->cur_page_block);
 
734
        if (dio_bio_add_page(sdio) != 0) {
 
735
                dio_bio_submit(dio, sdio);
 
736
                ret = dio_new_bio(dio, sdio, sdio->cur_page_block, map_bh);
679
737
                if (ret == 0) {
680
 
                        ret = dio_bio_add_page(dio);
 
738
                        ret = dio_bio_add_page(sdio);
681
739
                        BUG_ON(ret != 0);
682
740
                }
683
741
        }
702
760
 * If that doesn't work out then we put the old page into the bio and add this
703
761
 * page to the dio instead.
704
762
 */
705
 
static int
706
 
submit_page_section(struct dio *dio, struct page *page,
707
 
                unsigned offset, unsigned len, sector_t blocknr)
 
763
static inline int
 
764
submit_page_section(struct dio *dio, struct dio_submit *sdio, struct page *page,
 
765
                    unsigned offset, unsigned len, sector_t blocknr,
 
766
                    struct buffer_head *map_bh)
708
767
{
709
768
        int ret = 0;
710
769
 
718
777
        /*
719
778
         * Can we just grow the current page's presence in the dio?
720
779
         */
721
 
        if (    (dio->cur_page == page) &&
722
 
                (dio->cur_page_offset + dio->cur_page_len == offset) &&
723
 
                (dio->cur_page_block +
724
 
                        (dio->cur_page_len >> dio->blkbits) == blocknr)) {
725
 
                dio->cur_page_len += len;
 
780
        if (sdio->cur_page == page &&
 
781
            sdio->cur_page_offset + sdio->cur_page_len == offset &&
 
782
            sdio->cur_page_block +
 
783
            (sdio->cur_page_len >> sdio->blkbits) == blocknr) {
 
784
                sdio->cur_page_len += len;
726
785
 
727
786
                /*
728
 
                 * If dio->boundary then we want to schedule the IO now to
 
787
                 * If sdio->boundary then we want to schedule the IO now to
729
788
                 * avoid metadata seeks.
730
789
                 */
731
 
                if (dio->boundary) {
732
 
                        ret = dio_send_cur_page(dio);
733
 
                        page_cache_release(dio->cur_page);
734
 
                        dio->cur_page = NULL;
 
790
                if (sdio->boundary) {
 
791
                        ret = dio_send_cur_page(dio, sdio, map_bh);
 
792
                        page_cache_release(sdio->cur_page);
 
793
                        sdio->cur_page = NULL;
735
794
                }
736
795
                goto out;
737
796
        }
739
798
        /*
740
799
         * If there's a deferred page already there then send it.
741
800
         */
742
 
        if (dio->cur_page) {
743
 
                ret = dio_send_cur_page(dio);
744
 
                page_cache_release(dio->cur_page);
745
 
                dio->cur_page = NULL;
 
801
        if (sdio->cur_page) {
 
802
                ret = dio_send_cur_page(dio, sdio, map_bh);
 
803
                page_cache_release(sdio->cur_page);
 
804
                sdio->cur_page = NULL;
746
805
                if (ret)
747
806
                        goto out;
748
807
        }
749
808
 
750
809
        page_cache_get(page);           /* It is in dio */
751
 
        dio->cur_page = page;
752
 
        dio->cur_page_offset = offset;
753
 
        dio->cur_page_len = len;
754
 
        dio->cur_page_block = blocknr;
755
 
        dio->cur_page_fs_offset = dio->block_in_file << dio->blkbits;
 
810
        sdio->cur_page = page;
 
811
        sdio->cur_page_offset = offset;
 
812
        sdio->cur_page_len = len;
 
813
        sdio->cur_page_block = blocknr;
 
814
        sdio->cur_page_fs_offset = sdio->block_in_file << sdio->blkbits;
756
815
out:
757
816
        return ret;
758
817
}
762
821
 * file blocks.  Only called for S_ISREG files - blockdevs do not set
763
822
 * buffer_new
764
823
 */
765
 
static void clean_blockdev_aliases(struct dio *dio)
 
824
static void clean_blockdev_aliases(struct dio *dio, struct buffer_head *map_bh)
766
825
{
767
826
        unsigned i;
768
827
        unsigned nblocks;
769
828
 
770
 
        nblocks = dio->map_bh.b_size >> dio->inode->i_blkbits;
 
829
        nblocks = map_bh->b_size >> dio->inode->i_blkbits;
771
830
 
772
831
        for (i = 0; i < nblocks; i++) {
773
 
                unmap_underlying_metadata(dio->map_bh.b_bdev,
774
 
                                        dio->map_bh.b_blocknr + i);
 
832
                unmap_underlying_metadata(map_bh->b_bdev,
 
833
                                          map_bh->b_blocknr + i);
775
834
        }
776
835
}
777
836
 
784
843
 * `end' is zero if we're doing the start of the IO, 1 at the end of the
785
844
 * IO.
786
845
 */
787
 
static void dio_zero_block(struct dio *dio, int end)
 
846
static inline void dio_zero_block(struct dio *dio, struct dio_submit *sdio,
 
847
                int end, struct buffer_head *map_bh)
788
848
{
789
849
        unsigned dio_blocks_per_fs_block;
790
850
        unsigned this_chunk_blocks;     /* In dio_blocks */
791
851
        unsigned this_chunk_bytes;
792
852
        struct page *page;
793
853
 
794
 
        dio->start_zero_done = 1;
795
 
        if (!dio->blkfactor || !buffer_new(&dio->map_bh))
 
854
        sdio->start_zero_done = 1;
 
855
        if (!sdio->blkfactor || !buffer_new(map_bh))
796
856
                return;
797
857
 
798
 
        dio_blocks_per_fs_block = 1 << dio->blkfactor;
799
 
        this_chunk_blocks = dio->block_in_file & (dio_blocks_per_fs_block - 1);
 
858
        dio_blocks_per_fs_block = 1 << sdio->blkfactor;
 
859
        this_chunk_blocks = sdio->block_in_file & (dio_blocks_per_fs_block - 1);
800
860
 
801
861
        if (!this_chunk_blocks)
802
862
                return;
808
868
        if (end) 
809
869
                this_chunk_blocks = dio_blocks_per_fs_block - this_chunk_blocks;
810
870
 
811
 
        this_chunk_bytes = this_chunk_blocks << dio->blkbits;
 
871
        this_chunk_bytes = this_chunk_blocks << sdio->blkbits;
812
872
 
813
873
        page = ZERO_PAGE(0);
814
 
        if (submit_page_section(dio, page, 0, this_chunk_bytes, 
815
 
                                dio->next_block_for_io))
 
874
        if (submit_page_section(dio, sdio, page, 0, this_chunk_bytes,
 
875
                                sdio->next_block_for_io, map_bh))
816
876
                return;
817
877
 
818
 
        dio->next_block_for_io += this_chunk_blocks;
 
878
        sdio->next_block_for_io += this_chunk_blocks;
819
879
}
820
880
 
821
881
/*
834
894
 * it should set b_size to PAGE_SIZE or more inside get_block().  This gives
835
895
 * fine alignment but still allows this function to work in PAGE_SIZE units.
836
896
 */
837
 
static int do_direct_IO(struct dio *dio)
 
897
static int do_direct_IO(struct dio *dio, struct dio_submit *sdio,
 
898
                        struct buffer_head *map_bh)
838
899
{
839
 
        const unsigned blkbits = dio->blkbits;
 
900
        const unsigned blkbits = sdio->blkbits;
840
901
        const unsigned blocks_per_page = PAGE_SIZE >> blkbits;
841
902
        struct page *page;
842
903
        unsigned block_in_page;
843
 
        struct buffer_head *map_bh = &dio->map_bh;
844
904
        int ret = 0;
845
905
 
846
906
        /* The I/O can start at any block offset within the first page */
847
 
        block_in_page = dio->first_block_in_page;
 
907
        block_in_page = sdio->first_block_in_page;
848
908
 
849
 
        while (dio->block_in_file < dio->final_block_in_request) {
850
 
                page = dio_get_page(dio);
 
909
        while (sdio->block_in_file < sdio->final_block_in_request) {
 
910
                page = dio_get_page(dio, sdio);
851
911
                if (IS_ERR(page)) {
852
912
                        ret = PTR_ERR(page);
853
913
                        goto out;
859
919
                        unsigned this_chunk_blocks;     /* # of blocks */
860
920
                        unsigned u;
861
921
 
862
 
                        if (dio->blocks_available == 0) {
 
922
                        if (sdio->blocks_available == 0) {
863
923
                                /*
864
924
                                 * Need to go and map some more disk
865
925
                                 */
866
926
                                unsigned long blkmask;
867
927
                                unsigned long dio_remainder;
868
928
 
869
 
                                ret = get_more_blocks(dio);
 
929
                                ret = get_more_blocks(dio, sdio, map_bh);
870
930
                                if (ret) {
871
931
                                        page_cache_release(page);
872
932
                                        goto out;
874
934
                                if (!buffer_mapped(map_bh))
875
935
                                        goto do_holes;
876
936
 
877
 
                                dio->blocks_available =
878
 
                                                map_bh->b_size >> dio->blkbits;
879
 
                                dio->next_block_for_io =
880
 
                                        map_bh->b_blocknr << dio->blkfactor;
 
937
                                sdio->blocks_available =
 
938
                                                map_bh->b_size >> sdio->blkbits;
 
939
                                sdio->next_block_for_io =
 
940
                                        map_bh->b_blocknr << sdio->blkfactor;
881
941
                                if (buffer_new(map_bh))
882
 
                                        clean_blockdev_aliases(dio);
 
942
                                        clean_blockdev_aliases(dio, map_bh);
883
943
 
884
 
                                if (!dio->blkfactor)
 
944
                                if (!sdio->blkfactor)
885
945
                                        goto do_holes;
886
946
 
887
 
                                blkmask = (1 << dio->blkfactor) - 1;
888
 
                                dio_remainder = (dio->block_in_file & blkmask);
 
947
                                blkmask = (1 << sdio->blkfactor) - 1;
 
948
                                dio_remainder = (sdio->block_in_file & blkmask);
889
949
 
890
950
                                /*
891
951
                                 * If we are at the start of IO and that IO
899
959
                                 * on-disk
900
960
                                 */
901
961
                                if (!buffer_new(map_bh))
902
 
                                        dio->next_block_for_io += dio_remainder;
903
 
                                dio->blocks_available -= dio_remainder;
 
962
                                        sdio->next_block_for_io += dio_remainder;
 
963
                                sdio->blocks_available -= dio_remainder;
904
964
                        }
905
965
do_holes:
906
966
                        /* Handle holes */
919
979
                                 */
920
980
                                i_size_aligned = ALIGN(i_size_read(dio->inode),
921
981
                                                        1 << blkbits);
922
 
                                if (dio->block_in_file >=
 
982
                                if (sdio->block_in_file >=
923
983
                                                i_size_aligned >> blkbits) {
924
984
                                        /* We hit eof */
925
985
                                        page_cache_release(page);
927
987
                                }
928
988
                                zero_user(page, block_in_page << blkbits,
929
989
                                                1 << blkbits);
930
 
                                dio->block_in_file++;
 
990
                                sdio->block_in_file++;
931
991
                                block_in_page++;
932
992
                                goto next_block;
933
993
                        }
937
997
                         * is finer than the underlying fs, go check to see if
938
998
                         * we must zero out the start of this block.
939
999
                         */
940
 
                        if (unlikely(dio->blkfactor && !dio->start_zero_done))
941
 
                                dio_zero_block(dio, 0);
 
1000
                        if (unlikely(sdio->blkfactor && !sdio->start_zero_done))
 
1001
                                dio_zero_block(dio, sdio, 0, map_bh);
942
1002
 
943
1003
                        /*
944
1004
                         * Work out, in this_chunk_blocks, how much disk we
945
1005
                         * can add to this page
946
1006
                         */
947
 
                        this_chunk_blocks = dio->blocks_available;
 
1007
                        this_chunk_blocks = sdio->blocks_available;
948
1008
                        u = (PAGE_SIZE - offset_in_page) >> blkbits;
949
1009
                        if (this_chunk_blocks > u)
950
1010
                                this_chunk_blocks = u;
951
 
                        u = dio->final_block_in_request - dio->block_in_file;
 
1011
                        u = sdio->final_block_in_request - sdio->block_in_file;
952
1012
                        if (this_chunk_blocks > u)
953
1013
                                this_chunk_blocks = u;
954
1014
                        this_chunk_bytes = this_chunk_blocks << blkbits;
955
1015
                        BUG_ON(this_chunk_bytes == 0);
956
1016
 
957
 
                        dio->boundary = buffer_boundary(map_bh);
958
 
                        ret = submit_page_section(dio, page, offset_in_page,
959
 
                                this_chunk_bytes, dio->next_block_for_io);
 
1017
                        sdio->boundary = buffer_boundary(map_bh);
 
1018
                        ret = submit_page_section(dio, sdio, page,
 
1019
                                                  offset_in_page,
 
1020
                                                  this_chunk_bytes,
 
1021
                                                  sdio->next_block_for_io,
 
1022
                                                  map_bh);
960
1023
                        if (ret) {
961
1024
                                page_cache_release(page);
962
1025
                                goto out;
963
1026
                        }
964
 
                        dio->next_block_for_io += this_chunk_blocks;
 
1027
                        sdio->next_block_for_io += this_chunk_blocks;
965
1028
 
966
 
                        dio->block_in_file += this_chunk_blocks;
 
1029
                        sdio->block_in_file += this_chunk_blocks;
967
1030
                        block_in_page += this_chunk_blocks;
968
 
                        dio->blocks_available -= this_chunk_blocks;
 
1031
                        sdio->blocks_available -= this_chunk_blocks;
969
1032
next_block:
970
 
                        BUG_ON(dio->block_in_file > dio->final_block_in_request);
971
 
                        if (dio->block_in_file == dio->final_block_in_request)
 
1033
                        BUG_ON(sdio->block_in_file > sdio->final_block_in_request);
 
1034
                        if (sdio->block_in_file == sdio->final_block_in_request)
972
1035
                                break;
973
1036
                }
974
1037
 
980
1043
        return ret;
981
1044
}
982
1045
 
983
 
/*
984
 
 * Releases both i_mutex and i_alloc_sem
985
 
 */
986
 
static ssize_t
987
 
direct_io_worker(int rw, struct kiocb *iocb, struct inode *inode, 
988
 
        const struct iovec *iov, loff_t offset, unsigned long nr_segs, 
989
 
        unsigned blkbits, get_block_t get_block, dio_iodone_t end_io,
990
 
        dio_submit_t submit_io, struct dio *dio)
 
1046
static inline int drop_refcount(struct dio *dio)
991
1047
{
992
 
        unsigned long user_addr; 
 
1048
        int ret2;
993
1049
        unsigned long flags;
994
 
        int seg;
995
 
        ssize_t ret = 0;
996
 
        ssize_t ret2;
997
 
        size_t bytes;
998
 
 
999
 
        dio->inode = inode;
1000
 
        dio->rw = rw;
1001
 
        dio->blkbits = blkbits;
1002
 
        dio->blkfactor = inode->i_blkbits - blkbits;
1003
 
        dio->block_in_file = offset >> blkbits;
1004
 
 
1005
 
        dio->get_block = get_block;
1006
 
        dio->end_io = end_io;
1007
 
        dio->submit_io = submit_io;
1008
 
        dio->final_block_in_bio = -1;
1009
 
        dio->next_block_for_io = -1;
1010
 
 
1011
 
        dio->iocb = iocb;
1012
 
        dio->i_size = i_size_read(inode);
1013
 
 
1014
 
        spin_lock_init(&dio->bio_lock);
1015
 
        dio->refcount = 1;
1016
 
 
1017
 
        /*
1018
 
         * In case of non-aligned buffers, we may need 2 more
1019
 
         * pages since we need to zero out first and last block.
1020
 
         */
1021
 
        if (unlikely(dio->blkfactor))
1022
 
                dio->pages_in_io = 2;
1023
 
 
1024
 
        for (seg = 0; seg < nr_segs; seg++) {
1025
 
                user_addr = (unsigned long)iov[seg].iov_base;
1026
 
                dio->pages_in_io +=
1027
 
                        ((user_addr+iov[seg].iov_len +PAGE_SIZE-1)/PAGE_SIZE
1028
 
                                - user_addr/PAGE_SIZE);
1029
 
        }
1030
 
 
1031
 
        for (seg = 0; seg < nr_segs; seg++) {
1032
 
                user_addr = (unsigned long)iov[seg].iov_base;
1033
 
                dio->size += bytes = iov[seg].iov_len;
1034
 
 
1035
 
                /* Index into the first page of the first block */
1036
 
                dio->first_block_in_page = (user_addr & ~PAGE_MASK) >> blkbits;
1037
 
                dio->final_block_in_request = dio->block_in_file +
1038
 
                                                (bytes >> blkbits);
1039
 
                /* Page fetching state */
1040
 
                dio->head = 0;
1041
 
                dio->tail = 0;
1042
 
                dio->curr_page = 0;
1043
 
 
1044
 
                dio->total_pages = 0;
1045
 
                if (user_addr & (PAGE_SIZE-1)) {
1046
 
                        dio->total_pages++;
1047
 
                        bytes -= PAGE_SIZE - (user_addr & (PAGE_SIZE - 1));
1048
 
                }
1049
 
                dio->total_pages += (bytes + PAGE_SIZE - 1) / PAGE_SIZE;
1050
 
                dio->curr_user_address = user_addr;
1051
 
        
1052
 
                ret = do_direct_IO(dio);
1053
 
 
1054
 
                dio->result += iov[seg].iov_len -
1055
 
                        ((dio->final_block_in_request - dio->block_in_file) <<
1056
 
                                        blkbits);
1057
 
 
1058
 
                if (ret) {
1059
 
                        dio_cleanup(dio);
1060
 
                        break;
1061
 
                }
1062
 
        } /* end iovec loop */
1063
 
 
1064
 
        if (ret == -ENOTBLK) {
1065
 
                /*
1066
 
                 * The remaining part of the request will be
1067
 
                 * be handled by buffered I/O when we return
1068
 
                 */
1069
 
                ret = 0;
1070
 
        }
1071
 
        /*
1072
 
         * There may be some unwritten disk at the end of a part-written
1073
 
         * fs-block-sized block.  Go zero that now.
1074
 
         */
1075
 
        dio_zero_block(dio, 1);
1076
 
 
1077
 
        if (dio->cur_page) {
1078
 
                ret2 = dio_send_cur_page(dio);
1079
 
                if (ret == 0)
1080
 
                        ret = ret2;
1081
 
                page_cache_release(dio->cur_page);
1082
 
                dio->cur_page = NULL;
1083
 
        }
1084
 
        if (dio->bio)
1085
 
                dio_bio_submit(dio);
1086
 
 
1087
 
        /*
1088
 
         * It is possible that, we return short IO due to end of file.
1089
 
         * In that case, we need to release all the pages we got hold on.
1090
 
         */
1091
 
        dio_cleanup(dio);
1092
 
 
1093
 
        /*
1094
 
         * All block lookups have been performed. For READ requests
1095
 
         * we can let i_mutex go now that its achieved its purpose
1096
 
         * of protecting us from looking up uninitialized blocks.
1097
 
         */
1098
 
        if (rw == READ && (dio->flags & DIO_LOCKING))
1099
 
                mutex_unlock(&dio->inode->i_mutex);
1100
 
 
1101
 
        /*
1102
 
         * The only time we want to leave bios in flight is when a successful
1103
 
         * partial aio read or full aio write have been setup.  In that case
1104
 
         * bio completion will call aio_complete.  The only time it's safe to
1105
 
         * call aio_complete is when we return -EIOCBQUEUED, so we key on that.
1106
 
         * This had *better* be the only place that raises -EIOCBQUEUED.
1107
 
         */
1108
 
        BUG_ON(ret == -EIOCBQUEUED);
1109
 
        if (dio->is_async && ret == 0 && dio->result &&
1110
 
            ((rw & READ) || (dio->result == dio->size)))
1111
 
                ret = -EIOCBQUEUED;
1112
 
 
1113
 
        if (ret != -EIOCBQUEUED)
1114
 
                dio_await_completion(dio);
1115
1050
 
1116
1051
        /*
1117
1052
         * Sync will always be dropping the final ref and completing the
1127
1062
        spin_lock_irqsave(&dio->bio_lock, flags);
1128
1063
        ret2 = --dio->refcount;
1129
1064
        spin_unlock_irqrestore(&dio->bio_lock, flags);
1130
 
 
1131
 
        if (ret2 == 0) {
1132
 
                ret = dio_complete(dio, offset, ret, false);
1133
 
                kfree(dio);
1134
 
        } else
1135
 
                BUG_ON(ret != -EIOCBQUEUED);
1136
 
 
1137
 
        return ret;
 
1065
        return ret2;
1138
1066
}
1139
1067
 
1140
1068
/*
1146
1074
 *    For writes this function is called under i_mutex and returns with
1147
1075
 *    i_mutex held, for reads, i_mutex is not held on entry, but it is
1148
1076
 *    taken and dropped again before returning.
1149
 
 *    For reads and writes i_alloc_sem is taken in shared mode and released
1150
 
 *    on I/O completion (which may happen asynchronously after returning to
1151
 
 *    the caller).
1152
 
 *
1153
1077
 *  - if the flags value does NOT contain DIO_LOCKING we don't use any
1154
1078
 *    internal locking but rather rely on the filesystem to synchronize
1155
1079
 *    direct I/O reads/writes versus each other and truncate.
1156
 
 *    For reads and writes both i_mutex and i_alloc_sem are not held on
1157
 
 *    entry and are never taken.
 
1080
 *
 
1081
 * To help with locking against truncate we incremented the i_dio_count
 
1082
 * counter before starting direct I/O, and decrement it once we are done.
 
1083
 * Truncate can wait for it to reach zero to provide exclusion.  It is
 
1084
 * expected that filesystem provide exclusion between new direct I/O
 
1085
 * and truncates.  For DIO_LOCKING filesystems this is done by i_mutex,
 
1086
 * but other filesystems need to take care of this on their own.
 
1087
 *
 
1088
 * NOTE: if you pass "sdio" to anything by pointer make sure that function
 
1089
 * is always inlined. Otherwise gcc is unable to split the structure into
 
1090
 * individual fields and will generate much worse code. This is important
 
1091
 * for the whole file.
1158
1092
 */
1159
1093
ssize_t
1160
1094
__blockdev_direct_IO(int rw, struct kiocb *iocb, struct inode *inode,
1171
1105
        ssize_t retval = -EINVAL;
1172
1106
        loff_t end = offset;
1173
1107
        struct dio *dio;
 
1108
        struct dio_submit sdio = { 0, };
 
1109
        unsigned long user_addr;
 
1110
        size_t bytes;
 
1111
        struct buffer_head map_bh = { 0, };
1174
1112
 
1175
1113
        if (rw & WRITE)
1176
1114
                rw = WRITE_ODIRECT;
1200
1138
                }
1201
1139
        }
1202
1140
 
1203
 
        dio = kmalloc(sizeof(*dio), GFP_KERNEL);
 
1141
        /* watch out for a 0 len io from a tricksy fs */
 
1142
        if (rw == READ && end == offset)
 
1143
                return 0;
 
1144
 
 
1145
        dio = kmem_cache_alloc(dio_cache, GFP_KERNEL);
1204
1146
        retval = -ENOMEM;
1205
1147
        if (!dio)
1206
1148
                goto out;
1213
1155
 
1214
1156
        dio->flags = flags;
1215
1157
        if (dio->flags & DIO_LOCKING) {
1216
 
                /* watch out for a 0 len io from a tricksy fs */
1217
 
                if (rw == READ && end > offset) {
 
1158
                if (rw == READ) {
1218
1159
                        struct address_space *mapping =
1219
1160
                                        iocb->ki_filp->f_mapping;
1220
1161
 
1225
1166
                                                              end - 1);
1226
1167
                        if (retval) {
1227
1168
                                mutex_unlock(&inode->i_mutex);
1228
 
                                kfree(dio);
 
1169
                                kmem_cache_free(dio_cache, dio);
1229
1170
                                goto out;
1230
1171
                        }
1231
1172
                }
1232
 
 
1233
 
                /*
1234
 
                 * Will be released at I/O completion, possibly in a
1235
 
                 * different thread.
1236
 
                 */
1237
 
                down_read_non_owner(&inode->i_alloc_sem);
1238
1173
        }
1239
1174
 
1240
1175
        /*
 
1176
         * Will be decremented at I/O completion time.
 
1177
         */
 
1178
        atomic_inc(&inode->i_dio_count);
 
1179
 
 
1180
        /*
1241
1181
         * For file extending writes updating i_size before data
1242
1182
         * writeouts complete can expose uninitialized blocks. So
1243
1183
         * even for AIO, we need to wait for i/o to complete before
1246
1186
        dio->is_async = !is_sync_kiocb(iocb) && !((rw & WRITE) &&
1247
1187
                (end > i_size_read(inode)));
1248
1188
 
1249
 
        retval = direct_io_worker(rw, iocb, inode, iov, offset,
1250
 
                                nr_segs, blkbits, get_block, end_io,
1251
 
                                submit_io, dio);
 
1189
        retval = 0;
 
1190
 
 
1191
        dio->inode = inode;
 
1192
        dio->rw = rw;
 
1193
        sdio.blkbits = blkbits;
 
1194
        sdio.blkfactor = inode->i_blkbits - blkbits;
 
1195
        sdio.block_in_file = offset >> blkbits;
 
1196
 
 
1197
        sdio.get_block = get_block;
 
1198
        dio->end_io = end_io;
 
1199
        sdio.submit_io = submit_io;
 
1200
        sdio.final_block_in_bio = -1;
 
1201
        sdio.next_block_for_io = -1;
 
1202
 
 
1203
        dio->iocb = iocb;
 
1204
        dio->i_size = i_size_read(inode);
 
1205
 
 
1206
        spin_lock_init(&dio->bio_lock);
 
1207
        dio->refcount = 1;
 
1208
 
 
1209
        /*
 
1210
         * In case of non-aligned buffers, we may need 2 more
 
1211
         * pages since we need to zero out first and last block.
 
1212
         */
 
1213
        if (unlikely(sdio.blkfactor))
 
1214
                sdio.pages_in_io = 2;
 
1215
 
 
1216
        for (seg = 0; seg < nr_segs; seg++) {
 
1217
                user_addr = (unsigned long)iov[seg].iov_base;
 
1218
                sdio.pages_in_io +=
 
1219
                        ((user_addr + iov[seg].iov_len + PAGE_SIZE-1) /
 
1220
                                PAGE_SIZE - user_addr / PAGE_SIZE);
 
1221
        }
 
1222
 
 
1223
        for (seg = 0; seg < nr_segs; seg++) {
 
1224
                user_addr = (unsigned long)iov[seg].iov_base;
 
1225
                sdio.size += bytes = iov[seg].iov_len;
 
1226
 
 
1227
                /* Index into the first page of the first block */
 
1228
                sdio.first_block_in_page = (user_addr & ~PAGE_MASK) >> blkbits;
 
1229
                sdio.final_block_in_request = sdio.block_in_file +
 
1230
                                                (bytes >> blkbits);
 
1231
                /* Page fetching state */
 
1232
                sdio.head = 0;
 
1233
                sdio.tail = 0;
 
1234
                sdio.curr_page = 0;
 
1235
 
 
1236
                sdio.total_pages = 0;
 
1237
                if (user_addr & (PAGE_SIZE-1)) {
 
1238
                        sdio.total_pages++;
 
1239
                        bytes -= PAGE_SIZE - (user_addr & (PAGE_SIZE - 1));
 
1240
                }
 
1241
                sdio.total_pages += (bytes + PAGE_SIZE - 1) / PAGE_SIZE;
 
1242
                sdio.curr_user_address = user_addr;
 
1243
 
 
1244
                retval = do_direct_IO(dio, &sdio, &map_bh);
 
1245
 
 
1246
                dio->result += iov[seg].iov_len -
 
1247
                        ((sdio.final_block_in_request - sdio.block_in_file) <<
 
1248
                                        blkbits);
 
1249
 
 
1250
                if (retval) {
 
1251
                        dio_cleanup(dio, &sdio);
 
1252
                        break;
 
1253
                }
 
1254
        } /* end iovec loop */
 
1255
 
 
1256
        if (retval == -ENOTBLK) {
 
1257
                /*
 
1258
                 * The remaining part of the request will be
 
1259
                 * be handled by buffered I/O when we return
 
1260
                 */
 
1261
                retval = 0;
 
1262
        }
 
1263
        /*
 
1264
         * There may be some unwritten disk at the end of a part-written
 
1265
         * fs-block-sized block.  Go zero that now.
 
1266
         */
 
1267
        dio_zero_block(dio, &sdio, 1, &map_bh);
 
1268
 
 
1269
        if (sdio.cur_page) {
 
1270
                ssize_t ret2;
 
1271
 
 
1272
                ret2 = dio_send_cur_page(dio, &sdio, &map_bh);
 
1273
                if (retval == 0)
 
1274
                        retval = ret2;
 
1275
                page_cache_release(sdio.cur_page);
 
1276
                sdio.cur_page = NULL;
 
1277
        }
 
1278
        if (sdio.bio)
 
1279
                dio_bio_submit(dio, &sdio);
 
1280
 
 
1281
        /*
 
1282
         * It is possible that, we return short IO due to end of file.
 
1283
         * In that case, we need to release all the pages we got hold on.
 
1284
         */
 
1285
        dio_cleanup(dio, &sdio);
 
1286
 
 
1287
        /*
 
1288
         * All block lookups have been performed. For READ requests
 
1289
         * we can let i_mutex go now that its achieved its purpose
 
1290
         * of protecting us from looking up uninitialized blocks.
 
1291
         */
 
1292
        if (rw == READ && (dio->flags & DIO_LOCKING))
 
1293
                mutex_unlock(&dio->inode->i_mutex);
 
1294
 
 
1295
        /*
 
1296
         * The only time we want to leave bios in flight is when a successful
 
1297
         * partial aio read or full aio write have been setup.  In that case
 
1298
         * bio completion will call aio_complete.  The only time it's safe to
 
1299
         * call aio_complete is when we return -EIOCBQUEUED, so we key on that.
 
1300
         * This had *better* be the only place that raises -EIOCBQUEUED.
 
1301
         */
 
1302
        BUG_ON(retval == -EIOCBQUEUED);
 
1303
        if (dio->is_async && retval == 0 && dio->result &&
 
1304
            ((rw & READ) || (dio->result == sdio.size)))
 
1305
                retval = -EIOCBQUEUED;
 
1306
 
 
1307
        if (retval != -EIOCBQUEUED)
 
1308
                dio_await_completion(dio);
 
1309
 
 
1310
        if (drop_refcount(dio) == 0) {
 
1311
                retval = dio_complete(dio, offset, retval, false);
 
1312
                kmem_cache_free(dio_cache, dio);
 
1313
        } else
 
1314
                BUG_ON(retval != -EIOCBQUEUED);
1252
1315
 
1253
1316
out:
1254
1317
        return retval;
1255
1318
}
1256
1319
EXPORT_SYMBOL(__blockdev_direct_IO);
 
1320
 
 
1321
static __init int dio_init(void)
 
1322
{
 
1323
        dio_cache = KMEM_CACHE(dio, SLAB_PANIC);
 
1324
        return 0;
 
1325
}
 
1326
module_init(dio_init)