On 9/21/16 9:30 AM, Eryu Guan wrote: > On Wed, Sep 21, 2016 at 08:02:39AM -0500, Eric Sandeen wrote: >>>> # >>>> +# checks that xfs_quota can operate on foreign (non-xfs) filesystems >>>> +# Skips check on xfs filesystems, old xfs_quota is fine there. >>>> +# Appends "-f" to enable foreign behavior on non-xfs filesystems if available. >>>> +# >>>> +_require_xfs_quota_foreign() >>>> +{ >>>> + if [ "$FSTYP" != "xfs" ]; then >>>> + $XFS_QUOTA_PROG -f -V &>/dev/null || \ >>>> + _notrun "xfs_quota binary does not support foreign filesystems" >>>> + XFS_QUOTA_PROG="$XFS_QUOTA_PROG -f" >>>> + fi >>> >>> Mixing space and tab in this function. >> >> yep - >> >> As do the functions before and after it - are we going with a strict >> rule now or going for consistency with the rest of the code? > > I think currently the rule is that we use tab as indentions for new > code, e.g. new functions, new tests, as long as the new code doesn't mix > with existing code. And we only go for the consistency when modifying > old code with spaces as indention. > > I just searched for Dave's explanation, hope this explains better than > my words :) > > - some of the code uses 4 space tabs. When adding code into > such functions, please use 4 space tabs. New code should > use 8 space tabs, but only if it's not surrounded by code > that is using 4 space tabs. Ok, fair enough. I still think it may be worth just re-tabbing everything, most people modifying this stuff won't be looking for old emails, they'll be looking at the current convention present in the code they are modifying. :) Thanks, -Eric -- To unsubscribe from this list: send the line "unsubscribe fstests" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html