diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-13 09:09:00 +0200 |
---|---|---|
committer | Greg Ungerer <gerg@kernel.org> | 2019-06-24 09:16:47 +1000 |
commit | 6843d8aa5b9bc61df8787801f19f538123724bfa (patch) | |
tree | 1a6635d02e73a610853fd7004ce4ea01de22c12b /fs/binfmt_flat.c | |
parent | 7a8998c9d830b59626e049a827678ba444fcf8e2 (diff) | |
download | linux-6843d8aa5b9bc61df8787801f19f538123724bfa.tar.bz2 |
binfmt_flat: remove the persistent argument from flat_get_addr_from_rp
The argument is never used.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Greg Ungerer <gerg@linux-m68k.org>
Diffstat (limited to 'fs/binfmt_flat.c')
-rw-r--r-- | fs/binfmt_flat.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/fs/binfmt_flat.c b/fs/binfmt_flat.c index 1e88f4e62e65..0ca65d51bb01 100644 --- a/fs/binfmt_flat.c +++ b/fs/binfmt_flat.c @@ -795,7 +795,6 @@ static int load_flat_file(struct linux_binprm *bprm, * __start to address 4 so that is okay). */ if (rev > OLD_FLAT_VERSION) { - u32 __maybe_unused persistent = 0; for (i = 0; i < relocs; i++) { u32 addr, relval; __be32 tmp; @@ -816,8 +815,7 @@ static int load_flat_file(struct linux_binprm *bprm, } /* Get the pointer's value. */ - ret = flat_get_addr_from_rp(rp, relval, flags, - &addr, &persistent); + ret = flat_get_addr_from_rp(rp, relval, flags, &addr); if (unlikely(ret)) goto err; |