aboutsummaryrefslogtreecommitdiffstats
path: root/fs/cifs
diff options
context:
space:
mode:
authorSteve French <sfrench@us.ibm.com>2007-10-17 02:12:46 +0000
committerSteve French <sfrench@us.ibm.com>2007-10-17 02:12:46 +0000
commitadbc03587c17e8f50478c1d7744a454cfb9e0653 (patch)
tree7d4c3b5df747f59d9dc7ba1b6b8d2f92cc272777 /fs/cifs
parent[CIFS] endian fixes in new acl code (diff)
downloadlinux-dev-adbc03587c17e8f50478c1d7744a454cfb9e0653.tar.xz
linux-dev-adbc03587c17e8f50478c1d7744a454cfb9e0653.zip
[CIFS] endian fixes
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs')
-rw-r--r--fs/cifs/cifsacl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/cifs/cifsacl.c b/fs/cifs/cifsacl.c
index 9c4a29690cca..b1f448f2e071 100644
--- a/fs/cifs/cifsacl.c
+++ b/fs/cifs/cifsacl.c
@@ -115,8 +115,8 @@ int compare_sids(struct cifs_sid *ctsid, struct cifs_sid *cwsid)
}
/* compare all of the subauth values if any */
- num_sat = cpu_to_le32(ctsid->num_subauth);
- num_saw = cpu_to_le32(cwsid->num_subauth);
+ num_sat = ctsid->num_subauth;
+ num_saw = cwsid->num_subauth);
num_subauth = num_sat < num_saw ? num_sat : num_saw;
if (num_subauth) {
for (i = 0; i < num_subauth; ++i) {
@@ -206,7 +206,7 @@ static void parse_dacl(struct cifs_acl *pdacl, char *end_of_acl)
acl_base = (char *)pdacl;
acl_size = sizeof(struct cifs_acl);
- num_aces = cpu_to_le32(pdacl->num_aces);
+ num_aces = le32_to_cpu(pdacl->num_aces);
if (num_aces > 0) {
ppntace = kmalloc(num_aces * sizeof(struct cifs_ntace *),
GFP_KERNEL);