Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1579902
| From | Andreas Gruenbacher <agruenba@redhat.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v28 10/21] vfs: Add get_richacl and set_richacl inode operations |
| Date | 2017-02-13 16:50 +0100 |
| Message-ID | <tar36-5BW-47@gated-at.bofh.it> (permalink) |
| References | <taqTn-5xK-5@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
These operations are similar to the get_acl and set_acl operations for
POSIX ACLs. The distinction between access and default ACLs doesn't exist
for richacls.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Reviewed-by: Steve French <steve.french@primarydata.com>
---
include/linux/fs.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/fs.h b/include/linux/fs.h
index b33823c..3533f18 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1698,6 +1698,7 @@ struct inode_operations {
const char * (*get_link) (struct dentry *, struct inode *, struct delayed_call *);
int (*permission) (struct inode *, int);
struct posix_acl * (*get_acl)(struct inode *, int);
+ struct richacl * (*get_richacl)(struct inode *);
int (*readlink) (struct dentry *, char __user *,int);
@@ -1721,6 +1722,7 @@ struct inode_operations {
umode_t create_mode, int *opened);
int (*tmpfile) (struct inode *, struct dentry *, umode_t);
int (*set_acl)(struct inode *, struct posix_acl *, int);
+ int (*set_richacl)(struct inode *, struct richacl *);
} ____cacheline_aligned;
ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
--
2.7.4
Back to linux.kernel | Previous | Next — Previous in thread | Find similar | Unroll thread
[PATCH v28 00/21] Richacls (Core and Ext4) Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 19/21] vfs: Move check_posix_acl and check_richacl out of fs/namei.c Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 01/21] vfs: Add IS_ACL() and IS_RICHACL() tests Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 03/21] vfs: Add MAY_DELETE_SELF and MAY_DELETE_CHILD permission flags Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 16/21] richacl: xattr mapping functions Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 15/21] richacl: Automatic Inheritance Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 08/21] richacl: Compute maximum file masks from an acl Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 21/21] ext4: Add richacl feature flag Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 20/21] ext4: Add richacl support Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:40 +0100 [PATCH v28 06/21] richacl: Permission mapping functions Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 02/21] vfs: Add MAY_CREATE_FILE and MAY_CREATE_DIR permission flags Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 11/21] vfs: Cache richacl in struct inode Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 14/21] richacl: Create-time inheritance Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 04/21] vfs: Add permission flags for setting file attributes Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 12/21] richacl: Update the file masks in chmod() Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 07/21] richacl: Permission check algorithm Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 05/21] richacl: In-memory representation and helper functions Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100 [PATCH v28 10/21] vfs: Add get_richacl and set_richacl inode operations Andreas Gruenbacher <agruenba@redhat.com> - 2017-02-13 16:50 +0100
csiph-web