linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/10] xattr cleanups
@ 2015-11-30 21:43 Andreas Gruenbacher
  2015-11-30 21:43 ` [PATCH 01/10] vfs: Remove vfs_xattr_cmp Andreas Gruenbacher
                   ` (9 more replies)
  0 siblings, 10 replies; 22+ messages in thread
From: Andreas Gruenbacher @ 2015-11-30 21:43 UTC (permalink / raw)
  To: Alexander Viro, Christoph Hellwig, linux-kernel, linux-fsdevel
  Cc: Andreas Gruenbacher

I would like to see these xattr cleanups / fixes go in in the next merge
window; overall, the code shrinks.  Please speak up if you see any problems or
notice any bugs.

The patches are available on the following git branch:

  git://git.kernel.org/pub/scm/linux/kernel/git/agruen/linux.git xattr-wip

Thanks,
Andreas

Andreas Gruenbacher (10):
  vfs: Remove vfs_xattr_cmp
  gfs2: Remove gfs2_xattr_acl_chmod
  posix acls: Remove duplicate xattr name definitions
  vfs: Distinguish between full xattr names and proper prefixes
  btrfs: Use xattr handler infrastructure
  tmpfs: Use xattr handler infrastructure
  tmpfs: listxattr should include POSIX ACL xattrs
  xfs: Change how listxattr generates synthetic attributes
  nfs: Move call to security_inode_listsecurity into nfs_listxattr
  xattr handlers: Simplify list operation

 drivers/staging/lustre/lustre/llite/xattr.c |   4 +-
 fs/9p/acl.c                                 |  24 ++--
 fs/9p/xattr.c                               |   4 -
 fs/btrfs/acl.c                              |   8 +-
 fs/btrfs/inode.c                            |  16 +--
 fs/btrfs/xattr.c                            | 166 ++++++++++------------------
 fs/btrfs/xattr.h                            |   2 -
 fs/ceph/acl.c                               |  16 +--
 fs/cifs/xattr.c                             |  16 +--
 fs/ext2/xattr.c                             |  15 ++-
 fs/ext2/xattr_security.c                    |  21 ----
 fs/ext2/xattr_trusted.c                     |  23 +---
 fs/ext2/xattr_user.c                        |  23 +---
 fs/ext4/xattr.c                             |  17 ++-
 fs/ext4/xattr_security.c                    |  22 ----
 fs/ext4/xattr_trusted.c                     |  23 +---
 fs/ext4/xattr_user.c                        |  23 +---
 fs/f2fs/xattr.c                             |  92 +++++----------
 fs/f2fs/xattr.h                             |   2 +-
 fs/gfs2/acl.c                               |   4 +-
 fs/gfs2/acl.h                               |   2 -
 fs/gfs2/xattr.c                             |  50 ---------
 fs/gfs2/xattr.h                             |   1 -
 fs/hfsplus/posix_acl.c                      |   8 +-
 fs/hfsplus/xattr.c                          |  12 --
 fs/jffs2/security.c                         |  22 ----
 fs/jffs2/xattr.c                            |  26 +++--
 fs/jffs2/xattr_trusted.c                    |  21 +---
 fs/jffs2/xattr_user.c                       |  20 ----
 fs/jfs/acl.c                                |   8 +-
 fs/kernfs/inode.c                           |   4 +-
 fs/nfs/nfs3acl.c                            |   4 +-
 fs/nfs/nfs4proc.c                           |  75 +++++++------
 fs/ocfs2/xattr.c                            |  73 ++----------
 fs/posix_acl.c                              |  25 +----
 fs/reiserfs/xattr.c                         |  16 ++-
 fs/reiserfs/xattr_acl.c                     |   8 +-
 fs/reiserfs/xattr_security.c                |  16 +--
 fs/reiserfs/xattr_trusted.c                 |  15 +--
 fs/reiserfs/xattr_user.c                    |  14 +--
 fs/squashfs/xattr.c                         |  38 ++-----
 fs/xattr.c                                  | 163 ++++++++++++++-------------
 fs/xfs/xfs_acl.c                            |  23 ----
 fs/xfs/xfs_acl.h                            |   4 -
 fs/xfs/xfs_xattr.c                          | 143 ++++++++++--------------
 include/linux/posix_acl_xattr.h             |   6 +-
 include/linux/xattr.h                       |  15 +--
 mm/shmem.c                                  | 133 +++++++---------------
 security/smack/smack_lsm.c                  |   2 -
 49 files changed, 460 insertions(+), 1008 deletions(-)

-- 
2.5.0


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2015-12-02 13:46 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-30 21:43 [PATCH 00/10] xattr cleanups Andreas Gruenbacher
2015-11-30 21:43 ` [PATCH 01/10] vfs: Remove vfs_xattr_cmp Andreas Gruenbacher
2015-12-01  9:30   ` James Morris
2015-11-30 21:43 ` [PATCH 02/10] gfs2: Remove gfs2_xattr_acl_chmod Andreas Gruenbacher
2015-12-01  9:31   ` James Morris
2015-12-01 19:07   ` Bob Peterson
2015-11-30 21:43 ` [PATCH 03/10] posix acls: Remove duplicate xattr name definitions Andreas Gruenbacher
2015-12-01  9:32   ` James Morris
2015-11-30 21:43 ` [PATCH 04/10] vfs: Distinguish between full xattr names and proper prefixes Andreas Gruenbacher
2015-12-01  9:42   ` James Morris
2015-12-02 13:45     ` Andreas Gruenbacher
2015-11-30 21:43 ` [PATCH 05/10] btrfs: Use xattr handler infrastructure Andreas Gruenbacher
2015-12-01 15:13   ` David Sterba
2015-11-30 21:43 ` [PATCH 06/10] tmpfs: " Andreas Gruenbacher
2015-12-01  9:43   ` James Morris
2015-11-30 21:43 ` [PATCH 07/10] tmpfs: listxattr should include POSIX ACL xattrs Andreas Gruenbacher
2015-12-01  9:45   ` James Morris
2015-11-30 21:43 ` [PATCH 08/10] xfs: Change how listxattr generates synthetic attributes Andreas Gruenbacher
2015-11-30 21:43 ` [PATCH 09/10] nfs: Move call to security_inode_listsecurity into nfs_listxattr Andreas Gruenbacher
2015-11-30 21:43 ` [PATCH 10/10] xattr handlers: Simplify list operation Andreas Gruenbacher
2015-12-01  9:53   ` James Morris
2015-12-01 10:30     ` Andreas Grünbacher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).