Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ceb91ed1 authored by Eric W. Biederman's avatar Eric W. Biederman
Browse files

signal/microblaze: Remove the commented out force_sig_info in do_page_fault



Remove the commented out call to force_sig_info right after a call to
_exception in do_page_fault.  The function _exception does exactly the
work the commented out code does so there is no reason for the
commented out code.

Cc: Michal Simek <monstr@monstr.eu>
Signed-off-by: default avatar"Eric W. Biederman" <ebiederm@xmission.com>
parent 3c67075d
Loading
Loading
Loading
Loading
+0 −5
Original line number Diff line number Diff line
@@ -268,11 +268,6 @@ void do_page_fault(struct pt_regs *regs, unsigned long address,
	/* User mode accesses cause a SIGSEGV */
	if (user_mode(regs)) {
		_exception(SIGSEGV, regs, code, address);
/*		info.si_signo = SIGSEGV;
		info.si_errno = 0;
		info.si_code = code;
		info.si_addr = (void *) address;
		force_sig_info(SIGSEGV, &info, current);*/
		return;
	}