From: Greg KH <[EMAIL PROTECTED]> Date: Tue, 12 Feb 2008 11:15:53 -0800
> On Tue, Feb 12, 2008 at 10:26:53AM -0800, Linus Torvalds wrote: > > We absolutely MUST NOT have the mindset that "cross-subsystem conflicts > > happen all the time". > > They usually don't, by virtue of our current development model and how > we have the kernel structured. BTW, there are some things we can do to with the kernel structure to help a lot of really idiotic cases. Here are some odd-the-cuff suggestions: 1) Make feature-removal-schedule a directory with files in it. Everyone touches that file, creating merge issues. 2) Let's move away from some/dir/{Kconfig,Makefile} schemes and instead have each "thing" have it's own Kconfig.foo or Makefile.foo that gets automatically sucked into the main directory Makefile or Kconfig using file globs or similar. Even better, encode the building of things into the *.[ch] files themselves, and have the Kconfig/Makefile machinery automatically extract this information when you build. Little things like this would go a long way to eliminating merge hassles. For example, with #2, when a driver is added it would only every add files never edit existing files. Merge conflicts are impossible unless two new drivers try to use the same file names. :-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/