From: Zach Brown Date: Fri, 3 Sep 2010 18:37:58 +0000 (-0700) Subject: iov_iter: add a shorten call X-Git-Tag: v2.6.39-400.9.0~594^2~17 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=f4fd63e1f1b297565a0129b9aa3990c0f6942120;p=users%2Fjedix%2Flinux-maple.git iov_iter: add a shorten call The generic direct write path wants to shorten its memory vector. It does this when it finds that it has to perform a partial write due to LIMIT_FSIZE. .direct_IO() always performs IO on all of the referenced memory because it doesn't have an argument to specify the length of the IO. We add an iov_iter operation for this so that the generic path can ask to shorten the memory vector without having to know what kind it is. We're happy to shorten the kernel copy of the iovec array, but we refuse to shorten the bio_vec array and return an error in this case. Signed-off-by: Zach Brown --- diff --git a/include/linux/fs.h b/include/linux/fs.h index 2bc507196a15..a1d6f84587fa 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h @@ -544,6 +544,7 @@ struct iov_iter_ops { void (*ii_advance)(struct iov_iter *, size_t); int (*ii_fault_in_readable)(struct iov_iter *, size_t); size_t (*ii_single_seg_count)(struct iov_iter *); + int (*ii_shorten)(struct iov_iter *, size_t); }; static inline size_t iov_iter_copy_to_user_atomic(struct page *page, @@ -578,6 +579,10 @@ static inline size_t iov_iter_single_seg_count(struct iov_iter *i) { return i->ops->ii_single_seg_count(i); } +static inline int iov_iter_shorten(struct iov_iter *i, size_t count) +{ + return i->ops->ii_shorten(i, count); +} extern struct iov_iter_ops ii_bvec_ops; diff --git a/mm/iov-iter.c b/mm/iov-iter.c index 4724cfa7031e..f9b5b906ceae 100644 --- a/mm/iov-iter.c +++ b/mm/iov-iter.c @@ -197,6 +197,11 @@ size_t ii_bvec_single_seg_count(struct iov_iter *i) return min(i->count, bvec->bv_len - i->iov_offset); } +static int ii_bvec_shorten(struct iov_iter *i, size_t count) +{ + return -EINVAL; +} + struct iov_iter_ops ii_bvec_ops = { .ii_copy_to_user_atomic = ii_bvec_copy_to_user_atomic, .ii_copy_to_user = ii_bvec_copy_to_user, @@ -348,6 +353,13 @@ size_t ii_iovec_single_seg_count(struct iov_iter *i) return min(i->count, iov->iov_len - i->iov_offset); } +static int ii_iovec_shorten(struct iov_iter *i, size_t count) +{ + struct iovec *iov = (struct iovec *)i->data; + i->nr_segs = iov_shorten(iov, i->nr_segs, count); + return 0; +} + struct iov_iter_ops ii_iovec_ops = { .ii_copy_to_user_atomic = ii_iovec_copy_to_user_atomic, .ii_copy_to_user = ii_iovec_copy_to_user, @@ -356,5 +368,6 @@ struct iov_iter_ops ii_iovec_ops = { .ii_advance = ii_iovec_advance, .ii_fault_in_readable = ii_iovec_fault_in_readable, .ii_single_seg_count = ii_iovec_single_seg_count, + .ii_shorten = ii_iovec_shorten, }; EXPORT_SYMBOL(ii_iovec_ops);