Skip to content

Commit f0116c5

Browse files
Will NewtonRiku Voipio
Will Newton
authored and
Riku Voipio
committed
linux-user: Remove regs parameter of load_elf_binary and load_flt_binary
The regs parameter is not used anywhere, so remove it. Signed-off-by: Will Newton <[email protected]> Reviewed-by: Erik de Castro Lopo <[email protected]> Reviewed-by: Andreas Färber <[email protected]> Signed-off-by: Riku Voipio <[email protected]>
1 parent b9d36eb commit f0116c5

File tree

4 files changed

+6
-10
lines changed

4 files changed

+6
-10
lines changed

linux-user/elfload.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -1998,8 +1998,7 @@ static void load_symbols(struct elfhdr *hdr, int fd, abi_ulong load_bias)
19981998
free(syms);
19991999
}
20002000

2001-
int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
2002-
struct image_info * info)
2001+
int load_elf_binary(struct linux_binprm *bprm, struct image_info *info)
20032002
{
20042003
struct image_info interp_info;
20052004
struct elfhdr elf_ex;

linux-user/flatload.c

+1-2
Original file line numberDiff line numberDiff line change
@@ -704,8 +704,7 @@ static int load_flat_shared_library(int id, struct lib_info *libs)
704704

705705
#endif /* CONFIG_BINFMT_SHARED_FLAT */
706706

707-
int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
708-
struct image_info * info)
707+
int load_flt_binary(struct linux_binprm *bprm, struct image_info *info)
709708
{
710709
struct lib_info libinfo[MAX_SHARED_LIBS];
711710
abi_ulong p = bprm->p;

linux-user/linuxload.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,13 +154,13 @@ int loader_exec(int fdexec, const char *filename, char **argv, char **envp,
154154
&& bprm->buf[1] == 'E'
155155
&& bprm->buf[2] == 'L'
156156
&& bprm->buf[3] == 'F') {
157-
retval = load_elf_binary(bprm, regs, infop);
157+
retval = load_elf_binary(bprm, infop);
158158
#if defined(TARGET_HAS_BFLT)
159159
} else if (bprm->buf[0] == 'b'
160160
&& bprm->buf[1] == 'F'
161161
&& bprm->buf[2] == 'L'
162162
&& bprm->buf[3] == 'T') {
163-
retval = load_flt_binary(bprm,regs,infop);
163+
retval = load_flt_binary(bprm, infop);
164164
#endif
165165
} else {
166166
return -ENOEXEC;

linux-user/qemu.h

+2-4
Original file line numberDiff line numberDiff line change
@@ -178,10 +178,8 @@ int loader_exec(int fdexec, const char *filename, char **argv, char **envp,
178178
struct target_pt_regs * regs, struct image_info *infop,
179179
struct linux_binprm *);
180180

181-
int load_elf_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
182-
struct image_info * info);
183-
int load_flt_binary(struct linux_binprm * bprm, struct target_pt_regs * regs,
184-
struct image_info * info);
181+
int load_elf_binary(struct linux_binprm *bprm, struct image_info *info);
182+
int load_flt_binary(struct linux_binprm *bprm, struct image_info *info);
185183

186184
abi_long memcpy_to_target(abi_ulong dest, const void *src,
187185
unsigned long len);

0 commit comments

Comments
 (0)