mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 12:42:02 +00:00
bury memcpy_toiovec()
no users left Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
d3a9632f09
commit
218321e7a0
@ -131,7 +131,6 @@ size_t csum_and_copy_to_iter(void *addr, size_t bytes, __wsum *csum, struct iov_
|
|||||||
size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
|
size_t csum_and_copy_from_iter(void *addr, size_t bytes, __wsum *csum, struct iov_iter *i);
|
||||||
|
|
||||||
int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len);
|
int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len);
|
||||||
int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len);
|
|
||||||
int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov,
|
int memcpy_fromiovecend(unsigned char *kdata, const struct iovec *iov,
|
||||||
int offset, int len);
|
int offset, int len);
|
||||||
int memcpy_toiovecend(const struct iovec *v, unsigned char *kdata,
|
int memcpy_toiovecend(const struct iovec *v, unsigned char *kdata,
|
||||||
|
25
lib/iovec.c
25
lib/iovec.c
@ -27,31 +27,6 @@ int memcpy_fromiovec(unsigned char *kdata, struct iovec *iov, int len)
|
|||||||
}
|
}
|
||||||
EXPORT_SYMBOL(memcpy_fromiovec);
|
EXPORT_SYMBOL(memcpy_fromiovec);
|
||||||
|
|
||||||
/*
|
|
||||||
* Copy kernel to iovec. Returns -EFAULT on error.
|
|
||||||
*
|
|
||||||
* Note: this modifies the original iovec.
|
|
||||||
*/
|
|
||||||
|
|
||||||
int memcpy_toiovec(struct iovec *iov, unsigned char *kdata, int len)
|
|
||||||
{
|
|
||||||
while (len > 0) {
|
|
||||||
if (iov->iov_len) {
|
|
||||||
int copy = min_t(unsigned int, iov->iov_len, len);
|
|
||||||
if (copy_to_user(iov->iov_base, kdata, copy))
|
|
||||||
return -EFAULT;
|
|
||||||
kdata += copy;
|
|
||||||
len -= copy;
|
|
||||||
iov->iov_len -= copy;
|
|
||||||
iov->iov_base += copy;
|
|
||||||
}
|
|
||||||
iov++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
EXPORT_SYMBOL(memcpy_toiovec);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copy kernel to iovec. Returns -EFAULT on error.
|
* Copy kernel to iovec. Returns -EFAULT on error.
|
||||||
*/
|
*/
|
||||||
|
Loading…
Reference in New Issue
Block a user