All of lore.kernel.org
 help / color / mirror / Atom feed
From: Andreas Gruenbacher <agruenba@redhat.com>
To: Alexander Viro <viro@zeniv.linux.org.uk>,
	Christoph Hellwig <hch@infradead.org>,
	linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Cc: Andreas Gruenbacher <agruenba@redhat.com>
Subject: [PATCH v2 00/11] xattr cleanups
Date: Wed,  2 Dec 2015 14:44:32 +0100	[thread overview]
Message-ID: <1449063883-22097-1-git-send-email-agruenba@redhat.com> (raw)

Here is an updated version.  Changes since the initial posting
(https://lkml.org/lkml/2015/11/30/769):

 * Introduce an xattr_prefix() helper that gets the prefix of an xattr
   handler.

 * ocfs2: The list xattr handler operations were not called; remove
   them and add explicit checks instead.

The patches are also available on the following git branch:

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

Thanks,
Andreas

Andreas Gruenbacher (11):
  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
  ocfs2: Replace list xattr handler operations
  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                            | 168 ++++++++++------------------
 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                       |  20 ++--
 mm/shmem.c                                  | 133 +++++++---------------
 security/smack/smack_lsm.c                  |   2 -
 49 files changed, 514 insertions(+), 1054 deletions(-)

-- 
2.5.0


             reply	other threads:[~2015-12-02 13:44 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-02 13:44 Andreas Gruenbacher [this message]
2015-12-02 13:44 ` [PATCH v2 01/11] vfs: Remove vfs_xattr_cmp Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 02/11] gfs2: Remove gfs2_xattr_acl_chmod Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 03/11] posix acls: Remove duplicate xattr name definitions Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 04/11] vfs: Distinguish between full xattr names and proper prefixes Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 05/11] btrfs: Use xattr handler infrastructure Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 06/11] tmpfs: " Andreas Gruenbacher
2015-12-02 13:44   ` Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 07/11] tmpfs: listxattr should include POSIX ACL xattrs Andreas Gruenbacher
2015-12-02 13:44   ` Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 08/11] xfs: Change how listxattr generates synthetic attributes Andreas Gruenbacher
2015-12-02 13:44   ` Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 09/11] nfs: Move call to security_inode_listsecurity into nfs_listxattr Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 10/11] ocfs2: Replace list xattr handler operations Andreas Gruenbacher
2015-12-02 13:44 ` [PATCH v2 11/11] xattr handlers: Simplify list operation Andreas Gruenbacher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1449063883-22097-1-git-send-email-agruenba@redhat.com \
    --to=agruenba@redhat.com \
    --cc=hch@infradead.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=viro@zeniv.linux.org.uk \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.