search for: acl_oth

Displaying 3 results from an estimated 3 matches for "acl_oth".

Did you mean: acl_other
2006 Dec 04
1
make errors, rsync 2.6.9 with acls patch
...ared (first use in this function) acls.c:297: error: 'ACL_GROUP_OBJ' undeclared (first use in this function) acls.c:303: error: 'ACL_GROUP' undeclared (first use in this function) acls.c:305: error: 'ACL_MASK' undeclared (first use in this function) acls.c:311: error: 'ACL_OTHER' undeclared (first use in this function) acls.c: In function 'store_access_in_entry': acls.c:381: error: 'ACL_READ' undeclared (first use in this function) acls.c:383: error: 'ACL_WRITE' undeclared (first use in this function) acls.c: In function 'pack_smb_acl'...
2010 Mar 20
2
[PATCH 4/4] btrfs-convert: split into convert/.
...xt2_acl_entry *)src; - if (src + sizeof(ext2_acl_entry_short) > end) - goto fail; - dst_entry->e_tag = src_entry->e_tag; - dst_entry->e_perm = src_entry->e_perm; - switch (le16_to_cpu(src_entry->e_tag)) { - case ACL_USER_OBJ: - case ACL_GROUP_OBJ: - case ACL_MASK: - case ACL_OTHER: - src += sizeof(ext2_acl_entry_short); - dst_entry->e_id = cpu_to_le32(ACL_UNDEFINED_ID); - break; - case ACL_USER: - case ACL_GROUP: - src += sizeof(ext2_acl_entry); - if (src > end) - goto fail; - dst_entry->e_id = src_entry->e_id; - break; - default: - goto f...
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
...a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c index d056ad2fdefd..009c1e434aa5 100644 --- a/fs/nfs_common/nfsacl.c +++ b/fs/nfs_common/nfsacl.c @@ -237,7 +237,7 @@ posix_acl_from_nfsacl(struct posix_acl *acl) break; case ACL_MASK: mask = pa; - fallthrough; + break; case ACL_OTHER: break; } diff --git a/kernel/bpf/verifier.c b/kernel/bpf/verifier.c index 86fdebb5ffd8..c88c7a7d77fb 100644 --- a/kernel/bpf/verifier.c +++ b/kernel/bpf/verifier.c @@ -5334,7 +5334,7 @@ static int adjust_ptr_min_max_vals(struct bpf_verifier_env *env, off_reg == dst_reg ? dst : src);...