filemap: find_get_entries() now updates start offset
authorVishal Moola (Oracle) <vishal.moola@gmail.com>
Mon, 17 Oct 2022 16:18:00 +0000 (09:18 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Wed, 9 Nov 2022 01:37:12 +0000 (17:37 -0800)
commit9fb6beea79c6e7c959adf4fb7b94cf9a6028b941
tree578d5149465da7554d8b914c516117db219e4fe0
parent3392ca121872dd8c33015c7703d4981c78819be3
filemap: find_get_entries() now updates start offset

Initially, find_get_entries() was being passed in the start offset as a
value.  That left the calculation of the offset to the callers.  This led
to complexity in the callers trying to keep track of the index.

Now find_get_entries() takes in a pointer to the start offset and updates
the value to be directly after the last entry found.  If no entry is
found, the offset is not changed.  This gets rid of multiple hacky
calculations that kept track of the start offset.

Link: https://lkml.kernel.org/r/20221017161800.2003-3-vishal.moola@gmail.com
Signed-off-by: Vishal Moola (Oracle) <vishal.moola@gmail.com>
Cc: Hugh Dickins <hughd@google.com>
Cc: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/filemap.c
mm/internal.h
mm/shmem.c
mm/truncate.c