On Fri, Nov 16, 2012 at 02:42:42PM +0800, kbuild test robot wrote: > tree: git://oss.sgi.com/xfs/xfs for-next > head: 1813dd64057490e7a0678a885c4fe6d02f78bdc1 > commit: 612cfbfe174a89d565363fff7f3961a2dda5fb71 [68/70] xfs: add pre-write metadata buffer verifier callbacks > > > sparse warnings: > > + fs/xfs/xfs_ialloc_btree.c:186:1: sparse: symbol 'xfs_inobt_verify' was not declared. Should it be static? > fs/xfs/xfs_ialloc_btree.c:227:1: sparse: symbol 'xfs_inobt_read_verify' was not declared. Should it be static? Hi Fengguang, For a short while these probably should be static, but they will be externally visible soon - there are subsequent patches that will hit 3.9 require this to be available externally, so I'm not sure it's worth fixing this right now, only to change it back again shortly. > Please consider folding the attached diff :-) No, because it changes more than just what the above sparse error reports..... > diff --git a/fs/xfs/xfs_dquot.c b/fs/xfs/xfs_dquot.c > index b38a10e..6a714b5 100644 > --- a/fs/xfs/xfs_dquot.c > +++ b/fs/xfs/xfs_dquot.c > @@ -52,10 +52,10 @@ > */ > > #ifdef DEBUG > -xfs_buftarg_t *xfs_dqerror_target; > -int xfs_do_dqerror; > -int xfs_dqreq_num; > -int xfs_dqerror_mod = 33; > +static xfs_buftarg_t *xfs_dqerror_target; > +static int xfs_do_dqerror; > +static int xfs_dqreq_num; > +static int xfs_dqerror_mod = 33; > #endif These are debug build only, and intended to be globally visible so they can be changed with a debugger. And sparse didn't warn about them, because you didn't do a debug build, so the script shouldn't be changing them.(*) Cheers, Dave. (*) Please don't do debug XFS builds with this automated checker. We pretty much turn all static functions to global "noinline" functions for debug builds, and sparse will throw hundreds of useless warnings. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs