Skip to content

Commit

Permalink
bsd-user: rename linux_binprm to bsd_binprm
Browse files Browse the repository at this point in the history
Rename linux_binprm to bsd_binprm to reflect that we're loading BSD binaries,
not ELF ones.

Reviewed-by: Richard Henderson <[email protected]>
Signed-off-by: Warner Losh <[email protected]>
  • Loading branch information
bsdimp committed May 11, 2021
1 parent f8ce397 commit afcbcff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bsd-user/bsdload.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ static int count(char **vec)
return i;
}

static int prepare_binprm(struct linux_binprm *bprm)
static int prepare_binprm(struct bsd_binprm *bprm)
{
struct stat st;
int mode;
Expand Down Expand Up @@ -127,7 +127,7 @@ abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
int loader_exec(const char *filename, char **argv, char **envp,
struct target_pt_regs *regs, struct image_info *infop)
{
struct linux_binprm bprm;
struct bsd_binprm bprm;
int retval;
int i;

Expand Down
4 changes: 2 additions & 2 deletions bsd-user/elfload.c
Original file line number Diff line number Diff line change
Expand Up @@ -662,7 +662,7 @@ static abi_ulong copy_elf_strings(int argc, char **argv, void **page,
return p;
}

static abi_ulong setup_arg_pages(abi_ulong p, struct linux_binprm *bprm,
static abi_ulong setup_arg_pages(abi_ulong p, struct bsd_binprm *bprm,
struct image_info *info)
{
abi_ulong stack_base, size, error;
Expand Down Expand Up @@ -1143,7 +1143,7 @@ static void load_symbols(struct elfhdr *hdr, int fd)
syminfos = s;
}

int load_elf_binary(struct linux_binprm *bprm, struct target_pt_regs *regs,
int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
struct image_info *info)
{
struct elfhdr elf_ex;
Expand Down
6 changes: 3 additions & 3 deletions bsd-user/qemu.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ extern unsigned long mmap_min_addr;
* This structure is used to hold the arguments that are
* used when loading binaries.
*/
struct linux_binprm {
struct bsd_binprm {
char buf[128];
void *page[MAX_ARG_PAGES];
abi_ulong p;
Expand All @@ -133,9 +133,9 @@ abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp,
int loader_exec(const char *filename, char **argv, char **envp,
struct target_pt_regs *regs, struct image_info *infop);

int load_elf_binary(struct linux_binprm *bprm, struct target_pt_regs *regs,
int load_elf_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
struct image_info *info);
int load_flt_binary(struct linux_binprm *bprm, struct target_pt_regs *regs,
int load_flt_binary(struct bsd_binprm *bprm, struct target_pt_regs *regs,
struct image_info *info);

abi_long memcpy_to_target(abi_ulong dest, const void *src,
Expand Down

0 comments on commit afcbcff

Please sign in to comment.