Re: [PATCH] tmpfs: add support for read_iter and write_iter

2013-02-04 Thread Dave Kleikamp
On 02/04/2013 12:15 AM, Hugh Dickins wrote: > Convert tmpfs do_shmem_file_read() to shmem_file_read_iter(). > Make file_read_iter_actor() global so tmpfs can use it too: delete > file_read_actor(), which was made global in 2.4.4 for use by tmpfs. > Replace tmpfs generic_file_aio_write() by generic_

[PATCH] tmpfs: add support for read_iter and write_iter

2013-02-03 Thread Hugh Dickins
Convert tmpfs do_shmem_file_read() to shmem_file_read_iter(). Make file_read_iter_actor() global so tmpfs can use it too: delete file_read_actor(), which was made global in 2.4.4 for use by tmpfs. Replace tmpfs generic_file_aio_write() by generic_file_write_iter(). Signed-off-by: Hugh Dickins ---