[PATCH 13/17] mkfs: encode conflicts into parsing table
Dave Chinner
david at fromorbit.com
Mon Jun 29 22:57:36 CDT 2015
On Fri, Jun 26, 2015 at 01:17:31PM -0400, Brian Foster wrote:
> On Fri, Jun 19, 2015 at 01:02:02PM +0200, Jan Ťulák wrote:
> > From: Dave Chinner <dchinner at redhat.com>
> >
> > Many options conflict, so we need to specify which options conflict
> > with each other in a generic manner. We already have a "seen"
> > variable used for respecification detection, so we can also use this
> > code conflict detection. Hence add a "conflicts" array to the sub
> > options parameter definition.
.....
> > @@ -2020,7 +2027,7 @@ _("cannot specify both -m crc=1 and -n ftype\n"));
> > &value)) {
> > case S_LOG:
> > case S_SECTLOG:
> > - if (ssflag || lssflag)
> > + if (lssflag)
> > conflict('s', subopts,
> > S_SECTSIZE, S_SECTLOG);
> > sectorlog = getnum(value, &sopts,
> > @@ -2032,7 +2039,7 @@ _("cannot specify both -m crc=1 and -n ftype\n"));
> > break;
> > case S_SIZE:
> > case S_SECTSIZE:
> > - if (slflag || lslflag)
> > + if (lslflag)
> > conflict('s', subopts, S_SECTLOG,
> > S_SECTSIZE);
>
> Hmm.. so is the limitation here that we can't do generic conflict
> detection across different option structs? If so, I suppose that's not
> the end of the world. The cleanup is still well worth it.
I just never got around to coding it in a generic fashion - I didn't
finish the entire patchset back when I originally wrote it....
> I wonder if we
> still need to set lslflag/lssflag in either of the above cases, though.
> It seems like the generic detection should handle it..?
In the end it would look at the relevant ->seen flag to determine
if there was a cross-option-struct conflict. Essentially, the
conflict definition needs to define conflicts via a {group, option}
tuple rather than just the {option} it uses now...
-Dave.
--
Dave Chinner
david at fromorbit.com
More information about the xfs
mailing list