diff options
author | Steve French <sfrench@us.ibm.com> | 2011-04-19 18:27:10 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2011-05-19 14:10:49 +0000 |
commit | b73b9a4ba753dfd7d304ee6ee4685b827524c533 (patch) | |
tree | 19a8362402e8d01d2571022b3a3fc4d4ba1fafb8 /fs/cifs/cifsacl.c | |
parent | 43988d76851077d2945080665e3c4e2e636d700a (diff) | |
download | blackbird-obmc-linux-b73b9a4ba753dfd7d304ee6ee4685b827524c533.tar.gz blackbird-obmc-linux-b73b9a4ba753dfd7d304ee6ee4685b827524c533.zip |
[CIFS] Allow to set extended attribute cifs_acl (try #2)
Allow setting cifs_acl on the server.
Pass on to the server the ACL blob generated by an application.
cifs is just a pass-through, it does not monitor or inspect the contents
of the blob, server decides whether to enforce/apply the ACL blob composed
by an application.
If setting of ACL is succeessful, mark the inode for revalidation.
Signed-off-by: Shirish Pargaonkar <shirishpargaonkar@gmail.com>
Acked-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsacl.c')
-rw-r--r-- | fs/cifs/cifsacl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c index beeebf194234..a0d11eab14e5 100644 --- a/fs/cifs/cifsacl.c +++ b/fs/cifs/cifsacl.c @@ -688,7 +688,7 @@ out: } /* Set an ACL on the server */ -static int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, +int set_cifs_acl(struct cifs_ntsd *pnntsd, __u32 acllen, struct inode *inode, const char *path) { struct cifs_sb_info *cifs_sb = CIFS_SB(inode->i_sb); |