Hello, I'd like to discuss the following problems on LSF: - Container UID/GID quota support About more than half year ago, I have posted a patch set about support UID/GID quota inside containers: http://www.spinics.net/lists/linux-containers/msg25393.html However, I have to put it on ice at that time since this feature is depend on the user namespace. Now I think it's time to bring it up because the user_ns was basically done on 3.8-rcX. Combine with user_ns, there would have a couple of issues need to be solved at first: 1) UID/GID mapping between global and containers quota files. On my previous implementation, the quotas are cached in memory that is truely can not be accepted at all, I'll try to make it as usual with journalling quota support. 2) To avoid modifying the quota tools, maybe we have to make quotas enabled all the time inside containers so that the end user would just set up quota limits or won't. 3) Embed container quota accounting related logic into the corresponding VFS quota routines and make it transparent for the outside file systems. - Introduce a new whence to lseek(2) to fetch the reflinked/sharing extents We have some user requests about showing the real disk footprint with OCFS2 reflinked or Btrfs cloned files. I had written a shared-du utility based on du(1) for OCFS2 as this is the only file system with reflink supports at that time: https://oss.oracle.com/pipermail/ocfs2-devel/2010-September/007293.html It based on FIEMAP ioctl(2) on the user space, and OCFS2 using FIEMAP_EXTENT_SHARED flag to indicate an extent is reflinked/cow when the internal OCFS2_EXT_REFCOUNTED flag is detected. Recently, I have started to implement this feature on Btrfs in a similar approach. Once it completed, the next thing is to teach upstream du(1) works for both file systems with a new command option. Still sounds nothing because we have FIEMAP...:( But consider the bad interface and error prone when I improving cp(1) through it for sparse files, it will extends the ugly tentacles of FIEMAP into du(1) again that the maintainer of coreutils(Jim, CC-ed) don't like it at all, and I also want to avoid if possible... How about if we add a new whence type to lseek(2) for this function? lseek has very clear interface and works very well for SEEK_DATA/SEEK_HOLE, most likely could works fine for shared extents IMHO. Thanks, -Jeff -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html