Re: [PATCH v2 18/18] uaccess: drop maining CONFIG_SET_FS users

2022-02-17 Thread Eric W. Biederman
gt; With CONFIG_SET_FS gone, so drop all remaining references to > set_fs()/get_fs(), mm_segment_t and uaccess_kernel(). For the bits I have looked at recently, and think I understand. Acked-by: "Eric W. Biederman" > > Signed-off-by: Arnd Bergmann > --- > fs/exec

Re: [PATCH AUTOSEL 4.19 111/167] signal/arc: Use force_sig_fault where appropriate

2019-09-04 Thread Eric W. Biederman
Sasha Levin writes: > On Tue, Sep 03, 2019 at 11:49:16AM -0500, Eric W. Biederman wrote: >>Sasha Levin writes: >> >>> From: "Eric W. Biederman" >>> >>> [ Upstream commit 15773ae938d8d93d982461990bebad6e1d7a1830 ] >> >>To

Re: [PATCH AUTOSEL 4.19 111/167] signal/arc: Use force_sig_fault where appropriate

2019-09-03 Thread Eric W. Biederman
Sasha Levin writes: > From: "Eric W. Biederman" > > [ Upstream commit 15773ae938d8d93d982461990bebad6e1d7a1830 ] To the best of my knowledge this is just a clean up, no changes in behavior are present. The only reason I can see to backport this is so that later fixes could

[REVIEW][PATCH 1/2] signal/arc: Push siginfo generation into unhandled_exception

2018-09-24 Thread Eric W. Biederman
Pass signr, sicode, and address into unhandled_exception as explicit parameters instead of members of struct siginfo. Then in unhandled exception generate and send the siginfo using force_sig_fault. This keeps the code simpler and less error prone. Signed-off-by: "Eric W. Biederman"

[REVIEW][PATCH 2/2] signal/arc: Use force_sig_fault where appropriate

2018-09-24 Thread Eric W. Biederman
Signed-off-by: "Eric W. Biederman" --- arch/arc/mm/fault.c | 20 +--- 1 file changed, 5 insertions(+), 15 deletions(-) diff --git a/arch/arc/mm/fault.c b/arch/arc/mm/fault.c index db6913094be3..c9da6102eb4f 100644 --- a/arch/arc/mm/fault.c +++ b/arch/arc/mm/fault.c

[REVIEW][PATCH 0/2] signal/arc: siginfo cleanups

2018-09-24 Thread Eric W. Biederman
ll of the prerequisites should have been merged several releases ago. Eric W. Biederman (2): signal/arc: Push siginfo generation into unhandled_exception signal/arc: Use force_sig_fault where appropriate arch/arc/kernel/traps.c | 22 -- arch/arc/mm/fault.c