From mboxrd@z Thu Jan 1 00:00:00 1970 From: Kay Sievers Subject: Re: [PATCH 0/6] tagged sysfs support Date: Wed, 31 Mar 2010 07:51:49 +0200 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: QUOTED-PRINTABLE Cc: Greg Kroah-Hartman , Greg KH , linux-kernel@vger.kernel.org, Tejun Heo , Cornelia Huck , linux-fsdevel@vger.kernel.org, Eric Dumazet , Benjamin LaHaise , Serge Hallyn , netdev@vger.kernel.org To: "Eric W. Biederman" Return-path: In-Reply-To: Sender: linux-kernel-owner@vger.kernel.org List-Id: linux-fsdevel.vger.kernel.org On Wed, Mar 31, 2010 at 01:04, Eric W. Biederman wrote: > Kay Sievers writes: >> On Tue, Mar 30, 2010 at 20:30, Eric W. Biederman wrote: >>> >>> The main short coming of using multiple network namespaces today >>> is that only network devices for the primary network namespaces >>> can be put in the kobject layer and sysfs. >>> >>> This is essentially the earlier version of this patchset that was >>> reviewed before, just now on top of a version of sysfs that doesn't >>> need cleanup patches to support it. >> >> Just to check if we are not in conflict with planned changes, and ho= w >> to possibly handle them: >> >> There is the plan and ongoing work to unify classes and buses, expor= t >> them at /sys/subsystem in the same layout of the current /sys/bus/. >> The decision to export buses and classes as two different things >> (which they aren't) is the last major piece in the sysfs layout whic= h >> needs to be fixed. > > Interesting. =C2=A0We will symlinks ie: > /sys/class -> /sys/subsystem > /sys/bus -> /sys/subsystem > to keep from breaking userspace. Yeah, /sys/bus/, which is the only sane layout of the needlessly different 3 versions of the same thing (bus, class, block). /sys/bus/ can just be a plain symlinks to the /sys/subsystem/ directories. /sys/class/ *could* be a symlink to the /sys/subsystem//devices/ directory, but we really don't want to continue to stupidly mix subsystem-wide control files with device lists anymore. The "devices" directory needs to be a strict list of devices, not some collection of random stuff, that it is today. :) So we either leave all the conceptually broken class attributes behind us, and put them at the /sys/subsystem// level only, or we need to create the /sys/class//* stuff all as symlinks like we do today. I expect, we have to create /sys/class as we do today. Another problem to solve is that sysfs does not allow us to symlink regular files, only directories, so we can currently not create the class-wide attributes as symlinks to the proper file in /sys/subsystem/. >> It would mean that /sys/subsystem/net/devices/* would look like >> /sys/class/net/* today. But at the /sys/subsystem/net/ directory cou= ld >> be global network-subsystem-wide control files which would need to b= e >> namespaced too. (The network subsystem does not use subsytem-global >> files today, but a bunch of other classes do.) >> >> This could be modeled into the current way of doing sysfs namespaces= ? >> A /sys/bus// directory hierarchy would need to be >> namespaced, not just a single plain directory with symlinks. Would >> that work? > > I'm not entirely clear on what you are doing but it all sounds like i= t > will fit within what I am doing. The goal is to unify the 3 needlessly different versions of "device lists of the same subsystem". We have /sys/class, /sys/bus, /sys/block, and all of them will be unified at /sys/subsystem/ leaving the old names as compat links only. Unlike block and class, the /sys/subsystem/ directory can be extended with custom subdirectories and files, without mixing random files into device lists. With /sys/subsystem/, userspace can uniquely identify and find all devices at /sys//devices// with only the subsystem and the device name. All devices in /sys/devices already have a symlink called "subsystem" which will point back to the corresponding /sys/subsystem/ directory, and the event environment already contains a variable SUBSYSTEM with the name. That would be the first time sysfs device interfaces have some idea of consistency. :) > Right now I have /sys/class/net, > /sys/devices/virtual/net and a bunch of other net directories becomin= g > tagged and only showing up in the appropriately mounted sysfs. =C2=A0= We > track them all in the class kset and as long as we extend that capabi= lity > when the subsystem change happens in sysfs all should be well. Ok, sounds good. > Today we have /sys/class/net/bonding_master. =C2=A0For now I have tha= t as > an untagged but the implementation is aware of which network namespac= e > your current process is in. =C2=A0Thinking about that a little more i= t > would be better to make that file tagged so that userspace can see > different versions for the different network namespaces. =C2=A0Joy. Yeah, that might make more sense in the end. > I expect other control files will be the same. Sounds like, yes. > In general it doesn't make sense to add control files for networking. > as they easily conflict with legal network device names and thus crea= te > the possibility of breaking someones userspace. Yeah, it did not makes sense it the first place to mix devices lists with global attributes. It's a real mess what people do in sysfs. Thanks, Kay