On Thu, Aug 21, 2014 at 01:27:02PM -0500, Eric Sandeen wrote: > The original reason for the expletive below has been lost > in the mists of time, but at any rate, ASSERT() goes away in > libxfs, and this leads static analysis checkers to believe that > XFS_BTNUM_MAX is possible, and that we might overflow an array > later when using it as an index. > > We can shut this up and mark it as truly impossible by adding > a userspace definition for ASSERT_ALWAYS and using it. > > Signed-off-by: Eric Sandeen <sandeen@xxxxxxxxxx> > --- > > V2: do it in a kernel-compatible way. > > diff --git a/include/xfs_btree.h b/include/xfs_btree.h > index 2590d40..f24f787 100644 > --- a/include/xfs_btree.h > +++ b/include/xfs_btree.h > @@ -69,7 +69,7 @@ do { \ > case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_INC(bmbt, stat); break; \ > case XFS_BTNUM_INO: __XFS_BTREE_STATS_INC(ibt, stat); break; \ > case XFS_BTNUM_FINO: __XFS_BTREE_STATS_INC(fibt, stat); break; \ > - case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \ > + case XFS_BTNUM_MAX: ASSERT_ALWAYS(0); /* fucking gcc */ ; break; \ > } \ > } while (0) > > @@ -83,7 +83,7 @@ do { \ > case XFS_BTNUM_BMAP: __XFS_BTREE_STATS_ADD(bmbt, stat, val); break; \ > case XFS_BTNUM_INO: __XFS_BTREE_STATS_ADD(ibt, stat, val); break; \ > case XFS_BTNUM_FINO: __XFS_BTREE_STATS_ADD(fibt, stat, val); break; \ > - case XFS_BTNUM_MAX: ASSERT(0); /* fucking gcc */ ; break; \ > + case XFS_BTNUM_MAX: ASSERT_ALWAYS(0); /* fucking gcc */ ; break; \ > } \ > } while (0) Which we don't want in kernel space, because we want that case to be optimised out by the compiler for production kernels.... What we should really do is properly abstract the btree stats structure and put a pointer into the cursor so that the switch statement can go away.... Cheers, Dave. -- Dave Chinner david@xxxxxxxxxxxxx _______________________________________________ xfs mailing list xfs@xxxxxxxxxxx http://oss.sgi.com/mailman/listinfo/xfs