Re: [PATCH] modpost: file2alias: define size of alias

2019-03-06 Thread Masahiro Yamada
Hi Darren, On Thu, Mar 7, 2019 at 3:17 PM Darren Hart wrote: > > On Wed, Mar 06, 2019 at 10:09:26PM -0800, Darren Hart wrote: > > On Sat, Feb 23, 2019 at 08:57:50PM +0100, Mattias Jacobsson wrote: > > > On 2019-02-20, Masahiro Yamada wrote: > > > > > > > > If you want all the patches to go

Re: [PATCH] modpost: file2alias: define size of alias

2019-03-06 Thread Darren Hart
On Wed, Mar 06, 2019 at 10:09:26PM -0800, Darren Hart wrote: > On Sat, Feb 23, 2019 at 08:57:50PM +0100, Mattias Jacobsson wrote: > > On 2019-02-20, Masahiro Yamada wrote: > > > > > > If you want all the patches to go through x86 platform-driver tree, > > > > > I am fine with that too. > > > > >

Re: [PATCH] modpost: file2alias: define size of alias

2019-03-06 Thread Darren Hart
On Sat, Feb 23, 2019 at 08:57:50PM +0100, Mattias Jacobsson wrote: > On 2019-02-20, Masahiro Yamada wrote: > > > > If you want all the patches to go through x86 platform-driver tree, > > > > I am fine with that too. > > > > > > I don't mind either way, however I've asked the x86 platform-driver >

Re: [PATCH] modpost: file2alias: define size of alias

2019-02-23 Thread Mattias Jacobsson
On 2019-02-20, Masahiro Yamada wrote: > On Wed, Feb 20, 2019 at 5:09 AM Mattias Jacobsson <2...@mok.nu> wrote: > > > > Hi Masahiro, > > > > On 2019-02-18, Masahiro Yamada wrote: > > > Hi Mattias, > > > > > > On Thu, Feb 7, 2019 at 9:31 PM Mattias Jacobsson <2...@mok.nu> wrote: > > > > > > > > The

Re: [PATCH] modpost: file2alias: define size of alias

2019-02-19 Thread Masahiro Yamada
On Wed, Feb 20, 2019 at 5:09 AM Mattias Jacobsson <2...@mok.nu> wrote: > > Hi Masahiro, > > On 2019-02-18, Masahiro Yamada wrote: > > Hi Mattias, > > > > On Thu, Feb 7, 2019 at 9:31 PM Mattias Jacobsson <2...@mok.nu> wrote: > > > > > > The size of the variable alias provided to do_entry functions

Re: [PATCH] modpost: file2alias: define size of alias

2019-02-19 Thread Mattias Jacobsson
Hi Masahiro, On 2019-02-18, Masahiro Yamada wrote: > Hi Mattias, > > On Thu, Feb 7, 2019 at 9:31 PM Mattias Jacobsson <2...@mok.nu> wrote: > > > > The size of the variable alias provided to do_entry functions are > > currently not readily available. Thus hindering do_entry functions to > >

Re: [PATCH] modpost: file2alias: define size of alias

2019-02-17 Thread Masahiro Yamada
Hi Mattias, On Thu, Feb 7, 2019 at 9:31 PM Mattias Jacobsson <2...@mok.nu> wrote: > > The size of the variable alias provided to do_entry functions are > currently not readily available. Thus hindering do_entry functions to > perform bounds checking. > > Define the macro ALIAS_SIZE containing the

[PATCH] modpost: file2alias: define size of alias

2019-02-07 Thread Mattias Jacobsson
The size of the variable alias provided to do_entry functions are currently not readily available. Thus hindering do_entry functions to perform bounds checking. Define the macro ALIAS_SIZE containing the size of the variable alias. Signed-off-by: Mattias Jacobsson <2...@mok.nu> --- Related