Prev: linux-next: build warning in Linus'tree
Next: linux-next: manual merge of the genesis tree with the sh tree
From: Phillip Lougher on 25 May 2010 21:10 Hi Linus, Please consider pulling the following Squashfs updates which add file system support for extended attributes. Thanks Phillip ---------- The following changes since commit b57f95a38233a2e73b679bea4a5453a1cc2a1cc9: Linus Torvalds (1): Linux 2.6.34-rc7 are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-linus.git master Phillip Lougher (7): squashfs: add xattr id support squashfs: add support for xattr reading squashfs: add new extended inode types squashfs: add xattr support configure option squashfs: constify xattr handlers squashfs: fix name reading in squashfs_xattr_get squashfs: update documentation to include description of xattr layout Stephen Hemminger (2): squashfs: xattr_lookup sparse fix squashfs: xattr fix sparse warnings Documentation/filesystems/squashfs.txt | 32 +++- fs/squashfs/Kconfig | 11 + fs/squashfs/Makefile | 2 + fs/squashfs/inode.c | 92 +++++++++- fs/squashfs/namei.c | 6 +- fs/squashfs/squashfs.h | 12 +- fs/squashfs/squashfs_fs.h | 76 ++++++++- fs/squashfs/squashfs_fs_i.h | 3 + fs/squashfs/squashfs_fs_sb.h | 3 + fs/squashfs/super.c | 30 ++- fs/squashfs/symlink.c | 11 + fs/squashfs/xattr.c | 323 ++++++++++++++++++++++++++++++++ fs/squashfs/xattr.h | 46 +++++ fs/squashfs/xattr_id.c | 100 ++++++++++ 14 files changed, 723 insertions(+), 24 deletions(-) create mode 100644 fs/squashfs/xattr.c create mode 100644 fs/squashfs/xattr.h create mode 100644 fs/squashfs/xattr_id.c -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |