All of lore.kernel.org
 help / color / mirror / Atom feed
From: Charles Manning <manningc2@actrix.gen.nz>
To: Chris Snook <chris.snook@gmail.com>
Cc: Valdis.Kletnieks@vt.edu, cdhmanning@gmail.com,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 1/9] Add yaffs Kconfig and Makefile
Date: Mon, 8 Nov 2010 11:22:36 +1300	[thread overview]
Message-ID: <201011081122.37145.manningc2@actrix.gen.nz> (raw)
In-Reply-To: <AANLkTikZ19E3EXQ+DPKvWRXYZdmpin0Z_2QAnyFoFm6i@mail.gmail.com>

On Monday 08 November 2010 10:45:32 Chris Snook wrote:
> On Sun, Nov 7, 2010 at 4:59 PM, Charles Manning <manningc2@actrix.gen.nz> 
wrote:
> > On Saturday 06 November 2010 14:50:58 Valdis.Kletnieks@vt.edu wrote:
> >> On Thu, 04 Nov 2010 05:53:16 +1300, cdhmanning@gmail.com said:
> >> > From: Charles Manning <cdhmanning@gmail.com>
> >> > +config YAFFS_EMPTY_LOST_AND_FOUND
> >> > +   bool "Empty lost and found on boot"
> >> > +   depends on YAFFS_FS
> >> > +   default n
> >> > +   help
> >> > +     If this is enabled then the contents of lost and found is
> >> > +     automatically dumped at mount.
> >>
> >> Wow.. Just.. wow.
> >
> > What does that mean?
> >
> >> Under what use case is this a good idea for a config
> >> option as opposed to a mount option?
> >
> > It is both.
> >
> > Providing a config option provides the system integrator with flexibility
> > in how they set things up.
>
> Does the config option override the mount option, or does the mount
> option override the config option? 

Config sets up a default, mount options can override those.

> No matter what you do, someone 
> will be surprised, and that's a bad thing.  I'm having difficulty
> imagining a circumstance when you couldn't simply do this in userspace
> immediately after mount, but if for whatever reason you need
> mount+dump to be an atomic operation,

Sure it could be done in user space, but it is easier to handle this in the 
mount.

> it *really* should not be 
> polluting the kernel configuration.

Perhaps just make it a mount option.

>
> There are a whole bunch of options in here that appear to be intended
> to support various different stages of development.  Is there some
> reason why you can't call that mess of permutations YAFFS1, and merge
> a clean YAFFS2 patch that doesn't depend on it? 

You seem to misunderstand what YAFFS1 and YAFFS2 are.

Your point is well taken though. Many of these options are "tweaks" that could 
be dropped form Kconfig and only offered as mount options.

> I know that you're 
> trying to support multiple operating systems with the same codebase,
> but once your code is merged it will get patched by other people
> making kernel-wide changes, and testing (or even eyeballing) all those
> permutations will be far outside the realm of feasibility.

To be clear: none of the Kconfig options relate to other OS support.

It is my intention to continue to support other OSs and backporting + new 
features though yaffs.net and patch those into mainstream. While some future 
changes might make this infeasible, I'll cross that bridge when we get to it.  
I'm not going to give up yet.

-- Charles

WARNING: multiple messages have this Message-ID (diff)
From: Charles Manning <manningc2@actrix.gen.nz>
To: Chris Snook <chris.snook@gmail.com>
Cc: Valdis.Kletnieks@vt.edu, cdhmanning@gmail.com,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: Re: [PATCH 1/9] Add yaffs Kconfig and Makefile
Date: Mon, 8 Nov 2010 11:22:36 +1300	[thread overview]
Message-ID: <201011081122.37145.manningc2@actrix.gen.nz> (raw)
In-Reply-To: <AANLkTikZ19E3EXQ+DPKvWRXYZdmpin0Z_2QAnyFoFm6i@mail.gmail.com>

On Monday 08 November 2010 10:45:32 Chris Snook wrote:
> On Sun, Nov 7, 2010 at 4:59 PM, Charles Manning <manningc2@actrix.gen.nz> 
wrote:
> > On Saturday 06 November 2010 14:50:58 Valdis.Kletnieks@vt.edu wrote:
> >> On Thu, 04 Nov 2010 05:53:16 +1300, cdhmanning@gmail.com said:
> >> > From: Charles Manning <cdhmanning@gmail.com>
> >> > +config YAFFS_EMPTY_LOST_AND_FOUND
> >> > +   bool "Empty lost and found on boot"
> >> > +   depends on YAFFS_FS
> >> > +   default n
> >> > +   help
> >> > +     If this is enabled then the contents of lost and found is
> >> > +     automatically dumped at mount.
> >>
> >> Wow.. Just.. wow.
> >
> > What does that mean?
> >
> >> Under what use case is this a good idea for a config
> >> option as opposed to a mount option?
> >
> > It is both.
> >
> > Providing a config option provides the system integrator with flexibility
> > in how they set things up.
>
> Does the config option override the mount option, or does the mount
> option override the config option? 

Config sets up a default, mount options can override those.

> No matter what you do, someone 
> will be surprised, and that's a bad thing.  I'm having difficulty
> imagining a circumstance when you couldn't simply do this in userspace
> immediately after mount, but if for whatever reason you need
> mount+dump to be an atomic operation,

Sure it could be done in user space, but it is easier to handle this in the 
mount.

> it *really* should not be 
> polluting the kernel configuration.

Perhaps just make it a mount option.

>
> There are a whole bunch of options in here that appear to be intended
> to support various different stages of development.  Is there some
> reason why you can't call that mess of permutations YAFFS1, and merge
> a clean YAFFS2 patch that doesn't depend on it? 

You seem to misunderstand what YAFFS1 and YAFFS2 are.

Your point is well taken though. Many of these options are "tweaks" that could 
be dropped form Kconfig and only offered as mount options.

> I know that you're 
> trying to support multiple operating systems with the same codebase,
> but once your code is merged it will get patched by other people
> making kernel-wide changes, and testing (or even eyeballing) all those
> permutations will be far outside the realm of feasibility.

To be clear: none of the Kconfig options relate to other OS support.

It is my intention to continue to support other OSs and backporting + new 
features though yaffs.net and patch those into mainstream. While some future 
changes might make this infeasible, I'll cross that bridge when we get to it.  
I'm not going to give up yet.

-- Charles
--
To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

  reply	other threads:[~2010-11-07 22:22 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-11-03 16:53 [PATCH 0/9] Add yaffs2 file system cdhmanning
2010-11-03 16:53 ` [PATCH 1/9] Add yaffs Kconfig and Makefile cdhmanning
2010-11-03 17:46   ` Greg KH
2010-11-03 17:55     ` David Daney
2010-11-03 18:06       ` Greg KH
2010-11-04 20:58     ` Charles Manning
2010-11-04 22:36       ` Greg KH
2010-11-05  0:14         ` Ryan Mallon
2010-11-06  1:50   ` Valdis.Kletnieks
2010-11-07 20:59     ` Charles Manning
2010-11-07 21:45       ` Chris Snook
2010-11-07 21:45         ` Chris Snook
2010-11-07 22:22         ` Charles Manning [this message]
2010-11-07 22:22           ` Charles Manning
2010-11-08 10:24           ` Chris Snook
2010-11-08 10:24             ` Chris Snook
2010-11-08 21:22             ` Charles Manning
2010-11-08 22:15               ` Chris Snook
2010-11-03 16:53 ` [PATCH 2/9] Add yaffs allocator, bitmap and attrib source cdhmanning
2010-11-04 23:01   ` Jesper Juhl
2010-11-07 22:42     ` Charles Manning
2010-11-03 16:53 ` [PATCH 3/9] Add yaffs checkpointing, blockinfo, nameval and os context cdhmanning
2010-11-03 16:53 ` [PATCH 4/9] Add yaffs ecc, mtd access and nand abstraction code cdhmanning
2010-11-03 17:05   ` David Daney
2010-11-03 16:53 ` [PATCH 5/9] Add yaffs_guts.c cdhmanning
2010-11-03 16:53 ` [PATCH 6/9] Add some yaffs include files cdhmanning
2010-11-03 17:10   ` David Daney
2010-11-03 17:16     ` Charles Manning
2010-11-09 17:12   ` Arnd Bergmann
2010-11-03 16:53 ` [PATCH 7/9] Add yaffs tag access code cdhmanning
2010-11-03 17:16   ` David Daney
2010-11-03 17:17   ` Paulo Marques
2010-11-03 16:53 ` [PATCH 8/9] Add yaffs verification and version specific code cdhmanning
2010-11-03 16:53 ` [PATCH 9/9] Add yaffs kernel glue cdhmanning
2010-11-09 16:57   ` Arnd Bergmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201011081122.37145.manningc2@actrix.gen.nz \
    --to=manningc2@actrix.gen.nz \
    --cc=Valdis.Kletnieks@vt.edu \
    --cc=cdhmanning@gmail.com \
    --cc=chris.snook@gmail.com \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.