diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2017-11-27 10:54:55 -0600 |
---|---|---|
committer | Bob Peterson <rpeterso@redhat.com> | 2017-11-27 10:54:55 -0600 |
commit | 9aa015932727597f18d952c25b7ecb2e0376f055 (patch) | |
tree | 66750e577777042e6ec452d9e1b0b3e710f3cfa4 /fs/gfs2/aops.c | |
parent | 8b0d7f56b97b95a442b6785027a0f80ad1ea54af (diff) | |
download | linux-9aa015932727597f18d952c25b7ecb2e0376f055.tar.bz2 |
gfs2: Remove unused gfs2_write_jdata_pagevec parameter
As a follow-up to commit d2bc5b3c67a9, remove the end parameter which is
now unused.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Diffstat (limited to 'fs/gfs2/aops.c')
-rw-r--r-- | fs/gfs2/aops.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/gfs2/aops.c b/fs/gfs2/aops.c index 1daf15a1f00c..658ca027cab9 100644 --- a/fs/gfs2/aops.c +++ b/fs/gfs2/aops.c @@ -255,7 +255,6 @@ static int gfs2_writepages(struct address_space *mapping, * @wbc: The writeback control * @pvec: The vector of pages * @nr_pages: The number of pages to write - * @end: End position * @done_index: Page index * * Returns: non-zero if loop should terminate, zero otherwise @@ -264,7 +263,7 @@ static int gfs2_writepages(struct address_space *mapping, static int gfs2_write_jdata_pagevec(struct address_space *mapping, struct writeback_control *wbc, struct pagevec *pvec, - int nr_pages, pgoff_t end, + int nr_pages, pgoff_t *done_index) { struct inode *inode = mapping->host; @@ -402,7 +401,7 @@ retry: if (nr_pages == 0) break; - ret = gfs2_write_jdata_pagevec(mapping, wbc, &pvec, nr_pages, end, &done_index); + ret = gfs2_write_jdata_pagevec(mapping, wbc, &pvec, nr_pages, &done_index); if (ret) done = 1; if (ret > 0) |