diff options
author | J. Bruce Fields <bfields@redhat.com> | 2014-06-24 17:51:21 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-07-08 17:14:27 -0400 |
commit | bcaab953b1d3790c724a211f2452b574fd49a7ce (patch) | |
tree | 27ca81379f29efdf4267337da9434a3eeabdae31 /fs/nfsd/nfs4acl.c | |
parent | 29c353b3fe54789706c0a37560ce4548a6362c2c (diff) |
nfsd4: remove nfs4_acl_new
This is a not-that-useful kmalloc wrapper. And I'd like one of the
callers to actually use something other than kmalloc.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/nfs4acl.c')
-rw-r--r-- | fs/nfsd/nfs4acl.c | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/fs/nfsd/nfs4acl.c b/fs/nfsd/nfs4acl.c index b0cf00d3ee7d..acf6974e6823 100644 --- a/fs/nfsd/nfs4acl.c +++ b/fs/nfsd/nfs4acl.c | |||
@@ -161,11 +161,12 @@ nfsd4_get_nfs4_acl(struct svc_rqst *rqstp, struct dentry *dentry, | |||
161 | size += 2 * dpacl->a_count; | 161 | size += 2 * dpacl->a_count; |
162 | } | 162 | } |
163 | 163 | ||
164 | *acl = nfs4_acl_new(size); | 164 | *acl = kmalloc(nfs4_acl_bytes(size), GFP_KERNEL); |
165 | if (*acl == NULL) { | 165 | if (*acl == NULL) { |
166 | error = -ENOMEM; | 166 | error = -ENOMEM; |
167 | goto out; | 167 | goto out; |
168 | } | 168 | } |
169 | (*acl)->naces = 0; | ||
169 | 170 | ||
170 | _posix_to_nfsv4_one(pacl, *acl, flags & ~NFS4_ACL_TYPE_DEFAULT); | 171 | _posix_to_nfsv4_one(pacl, *acl, flags & ~NFS4_ACL_TYPE_DEFAULT); |
171 | 172 | ||
@@ -872,16 +873,13 @@ ace2type(struct nfs4_ace *ace) | |||
872 | return -1; | 873 | return -1; |
873 | } | 874 | } |
874 | 875 | ||
875 | struct nfs4_acl * | 876 | /* |
876 | nfs4_acl_new(int n) | 877 | * return the size of the struct nfs4_acl required to represent an acl |
878 | * with @entries entries. | ||
879 | */ | ||
880 | int nfs4_acl_bytes(int entries) | ||
877 | { | 881 | { |
878 | struct nfs4_acl *acl; | 882 | return sizeof(struct nfs4_acl) + entries * sizeof(struct nfs4_ace); |
879 | |||
880 | acl = kmalloc(sizeof(*acl) + n*sizeof(struct nfs4_ace), GFP_KERNEL); | ||
881 | if (acl == NULL) | ||
882 | return NULL; | ||
883 | acl->naces = 0; | ||
884 | return acl; | ||
885 | } | 883 | } |
886 | 884 | ||
887 | static struct { | 885 | static struct { |