On 11/07, Andy Lutomirski wrote:
>
> On Wed, Nov 4, 2015 at 4:50 PM, Amanieu d'Antras wrote:
> > One issue that isn't resolved in this series is sending signals between a
> > 32-bit
> > process and 64-bit process. Sending a si_int will work correctly, but a
> > si_ptr
> > value will likely get c
On Wed, Nov 4, 2015 at 4:50 PM, Amanieu d'Antras wrote:
> One issue that isn't resolved in this series is sending signals between a
> 32-bit
> process and 64-bit process. Sending a si_int will work correctly, but a si_ptr
> value will likely get corrupted due to the different layouts of the 32-bi
The current handling of compat_siginfo_t is a mess: each architecture has its
own implementation, all of which are incorrect in different ways. This patch
series replaces all of the arch-specific versions with a single generic one that
is guaranteed to produce the same results as a 32-bit kernel.