Re: [PATCH v4 05/12] dax: make 'wait_table' global variable static

2016-10-03 Thread Jan Kara
On Thu 29-09-16 16:49:23, Ross Zwisler wrote: > The global 'wait_table' variable is only used within fs/dax.c, and > generates the following sparse warning: > > fs/dax.c:39:19: warning: symbol 'wait_table' was not declared. Should it be > static? > > Make it static so it has scope local to fs/da

Re: [PATCH v4 05/12] dax: make 'wait_table' global variable static

2016-09-30 Thread Christoph Hellwig
Looks fine, Reviewed-by: Christoph Hellwig

[PATCH v4 05/12] dax: make 'wait_table' global variable static

2016-09-29 Thread Ross Zwisler
The global 'wait_table' variable is only used within fs/dax.c, and generates the following sparse warning: fs/dax.c:39:19: warning: symbol 'wait_table' was not declared. Should it be static? Make it static so it has scope local to fs/dax.c, and to make sparse happy. Signed-off-by: Ross Zwisler