mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-01 10:43:43 +00:00
untangling process_vm_..., part 3
lift iov one more level out - from process_vm_rw_single_vec to process_vm_rw_core(). Same story as with the previous commit. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
c61c70384f
commit
12e3004e46
@ -174,7 +174,7 @@ static int process_vm_rw_pages(struct task_struct *task,
|
|||||||
*/
|
*/
|
||||||
static int process_vm_rw_single_vec(unsigned long addr,
|
static int process_vm_rw_single_vec(unsigned long addr,
|
||||||
unsigned long len,
|
unsigned long len,
|
||||||
const struct iovec *lvec,
|
const struct iovec **iovp,
|
||||||
unsigned long lvec_cnt,
|
unsigned long lvec_cnt,
|
||||||
unsigned long *lvec_current,
|
unsigned long *lvec_current,
|
||||||
size_t *lvec_offset,
|
size_t *lvec_offset,
|
||||||
@ -193,7 +193,6 @@ static int process_vm_rw_single_vec(unsigned long addr,
|
|||||||
unsigned long nr_pages_to_copy;
|
unsigned long nr_pages_to_copy;
|
||||||
unsigned long max_pages_per_loop = PVM_MAX_KMALLOC_PAGES
|
unsigned long max_pages_per_loop = PVM_MAX_KMALLOC_PAGES
|
||||||
/ sizeof(struct pages *);
|
/ sizeof(struct pages *);
|
||||||
const struct iovec *iov = lvec + *lvec_current;
|
|
||||||
|
|
||||||
*bytes_copied = 0;
|
*bytes_copied = 0;
|
||||||
|
|
||||||
@ -208,7 +207,7 @@ static int process_vm_rw_single_vec(unsigned long addr,
|
|||||||
|
|
||||||
rc = process_vm_rw_pages(task, mm, process_pages, pa,
|
rc = process_vm_rw_pages(task, mm, process_pages, pa,
|
||||||
start_offset, len,
|
start_offset, len,
|
||||||
&iov, lvec_cnt,
|
iovp, lvec_cnt,
|
||||||
lvec_current, lvec_offset,
|
lvec_current, lvec_offset,
|
||||||
vm_write, nr_pages_to_copy,
|
vm_write, nr_pages_to_copy,
|
||||||
&bytes_copied_loop);
|
&bytes_copied_loop);
|
||||||
@ -319,7 +318,7 @@ static ssize_t process_vm_rw_core(pid_t pid, const struct iovec *lvec,
|
|||||||
for (i = 0; i < riovcnt && iov_l_curr_idx < liovcnt; i++) {
|
for (i = 0; i < riovcnt && iov_l_curr_idx < liovcnt; i++) {
|
||||||
rc = process_vm_rw_single_vec(
|
rc = process_vm_rw_single_vec(
|
||||||
(unsigned long)rvec[i].iov_base, rvec[i].iov_len,
|
(unsigned long)rvec[i].iov_base, rvec[i].iov_len,
|
||||||
lvec, liovcnt, &iov_l_curr_idx, &iov_l_curr_offset,
|
&lvec, liovcnt, &iov_l_curr_idx, &iov_l_curr_offset,
|
||||||
process_pages, mm, task, vm_write, &bytes_copied_loop);
|
process_pages, mm, task, vm_write, &bytes_copied_loop);
|
||||||
bytes_copied += bytes_copied_loop;
|
bytes_copied += bytes_copied_loop;
|
||||||
if (rc != 0) {
|
if (rc != 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user