Update filesystems not currently using vop_stdpathconf() in pathconf
VOPs to use vop_stdpathconf() for any configuration variables that do
not have filesystem-specific values. vop_stdpathconf() is used for
variables that have system-wide settings as well as providing default
values for some values based on system limits. Filesystems can still
explicitly override individual settings.
Note that there was some back and forth on vop_stdpathconf() between
phk and bde when it was first introduced. phk added vop_stdpathconf()
and then replaced various filesystem pathconf VOPs with the standard
version. bde reverted the replacements because he felt that it was
not reporting some filesystem-specific variables. However, I think
that the approach in this patch (fall through to vop_stdpathconf()
except for filesystem-specific overrides) is probably the better approach
than requiring each fs to reimplement the values from the standard one.
PR: 219851