You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
get rid of pt_regs argument of ->load_binary()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
+3
-2
@@ -88,7 +88,7 @@ struct lib_info {
|
||||
static int load_flat_shared_library(int id, struct lib_info *p);
|
||||
#endif
|
||||
|
||||
static int load_flat_binary(struct linux_binprm *, struct pt_regs * regs);
|
||||
static int load_flat_binary(struct linux_binprm *);
|
||||
static int flat_core_dump(struct coredump_params *cprm);
|
||||
|
||||
static struct linux_binfmt flat_format = {
|
||||
@@ -858,9 +858,10 @@ out:
|
||||
* libraries. There is no binary dependent code anywhere else.
|
||||
*/
|
||||
|
||||
static int load_flat_binary(struct linux_binprm * bprm, struct pt_regs * regs)
|
||||
static int load_flat_binary(struct linux_binprm * bprm)
|
||||
{
|
||||
struct lib_info libinfo;
|
||||
struct pt_regs *regs = current_pt_regs();
|
||||
unsigned long p = bprm->p;
|
||||
unsigned long stack_len;
|
||||
unsigned long start_addr;
|
||||
|
||||
Reference in New Issue
Block a user