Re: [PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2019-01-03 Thread Christoph Hellwig
On Thu, Jan 03, 2019 at 06:11:59PM +0800, Huang Shijie wrote: > On Wed, Jan 02, 2019 at 11:55:50PM -0800, Christoph Hellwig wrote: > > On Mon, Dec 24, 2018 at 03:06:22PM +0800, Huang Shijie wrote: > > > We may use the addr_in_gen_pool() in the driver module. > > > So export the addr_in_gen_pool for

Re: [PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2019-01-03 Thread Huang Shijie
On Wed, Jan 02, 2019 at 11:55:50PM -0800, Christoph Hellwig wrote: > On Mon, Dec 24, 2018 at 03:06:22PM +0800, Huang Shijie wrote: > > We may use the addr_in_gen_pool() in the driver module. > > So export the addr_in_gen_pool for the compiling. > > Please send this along with the driver that plans

Re: [PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2019-01-02 Thread Christoph Hellwig
On Mon, Dec 24, 2018 at 03:06:22PM +0800, Huang Shijie wrote: > We may use the addr_in_gen_pool() in the driver module. > So export the addr_in_gen_pool for the compiling. Please send this along with the driver that plans to use it.

Re: [PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2018-12-27 Thread Huang Shijie
On Thu, Dec 27, 2018 at 09:49:29PM -0800, Andrew Morton wrote: > On Mon, 24 Dec 2018 15:06:22 +0800 Huang Shijie wrote: > > > We may use the addr_in_gen_pool() in the driver module. > > So export the addr_in_gen_pool for the compiling. > > > > ... > > > > --- a/lib/genalloc.c > > +++ b/lib/genal

Re: [PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2018-12-27 Thread Andrew Morton
On Mon, 24 Dec 2018 15:06:22 +0800 Huang Shijie wrote: > We may use the addr_in_gen_pool() in the driver module. > So export the addr_in_gen_pool for the compiling. > > ... > > --- a/lib/genalloc.c > +++ b/lib/genalloc.c > @@ -450,6 +450,7 @@ bool addr_in_gen_pool(struct gen_pool *pool, unsigned

[PATCH 2/2] lib/genalloc.c: export symbol addr_in_gen_pool

2018-12-23 Thread Huang Shijie
We may use the addr_in_gen_pool() in the driver module. So export the addr_in_gen_pool for the compiling. Signed-off-by: Huang Shijie --- lib/genalloc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/genalloc.c b/lib/genalloc.c index 0d0ff9f0483f..9da91a16046f 100644 --- a/lib/genalloc.