Hi Andrew,

Today's linux-next merge of the akpm-current tree got a conflict in
mm/shmem.c between commit b080082bc3e8 ("tmpfs: add support for read_iter
and write_iter") from the aio-direct tree and commit c6dc71ff08f7 ("mm:
drop actor argument of do_shmem_file_read()") from the akpm-current tree.

I fixed it up (see below) and can carry the fix as necessary (no action
is required).

-- 
Cheers,
Stephen Rothwell                    s...@canb.auug.org.au

diff --cc mm/shmem.c
index 786d390,75010ba..0000000
--- a/mm/shmem.c
+++ b/mm/shmem.c
@@@ -1555,13 -1546,14 +1555,14 @@@ static ssize_t shmem_file_read_iter(str
                 * Ok, we have the page, and it's up-to-date, so
                 * now we can copy it to user space...
                 *
-                * The actor routine returns how many bytes were actually used..
 -               * The file_read_actor routine returns how many bytes were 
actually
 -               * used..
++               * The file_read_iter_actor routine returns how many bytes
++               * were actually used..
                 * NOTE! This may not be the same as how much of a user buffer
                 * we filled up (we may be padding etc), so we can only update
-                * "pos" here (the actor routine has to update the user buffer
 -               * "pos" here (file_read_actor has to update the user buffer
--               * pointers and the remaining count).
++               * "pos" here (file_read_iter_actor has to update the user
++               * buffer pointers and the remaining count).
                 */
 -              ret = file_read_actor(desc, page, offset, nr);
 +              ret = file_read_iter_actor(&desc, page, offset, nr);
                offset += ret;
                index += offset >> PAGE_CACHE_SHIFT;
                offset &= ~PAGE_CACHE_MASK;

Attachment: pgpeBySlydjU7.pgp
Description: PGP signature

Reply via email to