| /linux/drivers/media/pci/intel/ivsc/ |
| H A D | mei_ace.c | 195 static int construct_command(struct mei_ace *ace, struct ace_cmd *cmd, in construct_command() argument 211 hdr->firmware_id = ace->firmware_id; in construct_command() 215 hdr->firmware_id = ace->firmware_id; in construct_command() 225 static int mei_ace_send(struct mei_ace *ace, struct ace_cmd *cmd, in mei_ace_send() argument 228 union ace_notif_hdr *resp_hdr = &ace->cmd_response.hdr; in mei_ace_send() 229 union ace_notif_hdr *ack_hdr = &ace->cmd_ack.hdr; in mei_ace_send() 233 mutex_lock(&ace->lock); in mei_ace_send() 235 reinit_completion(&ace->cmd_completion); in mei_ace_send() 237 ret = mei_cldev_send(ace->cldev, (u8 *)cmd, len); in mei_ace_send() 241 ret = wait_for_completion_killable_timeout(&ace->cmd_completion, in mei_ace_send() [all …]
|
| H A D | Makefile | 8 obj-$(CONFIG_INTEL_VSC) += ivsc-ace.o 9 ivsc-ace-y += mei_ace.o
|
| H A D | Kconfig | 22 The modules will be called ivsc-ace and ivsc-csi.
|
| /linux/fs/nfsd/ |
| H A D | nfs4acl.c | 235 struct nfs4_ace *ace; in _posix_to_nfsv4_one() local 245 ace = acl->aces + acl->naces; in _posix_to_nfsv4_one() 255 ace->type = NFS4_ACE_ACCESS_DENIED_ACE_TYPE; in _posix_to_nfsv4_one() 256 ace->flag = eflag; in _posix_to_nfsv4_one() 257 ace->access_mask = deny_mask_from_posix(deny, flags); in _posix_to_nfsv4_one() 258 ace->whotype = NFS4_ACL_WHO_OWNER; in _posix_to_nfsv4_one() 259 ace++; in _posix_to_nfsv4_one() 263 ace->type = NFS4_ACE_ACCESS_ALLOWED_ACE_TYPE; in _posix_to_nfsv4_one() 264 ace->flag = eflag; in _posix_to_nfsv4_one() 265 ace->access_mask = mask_from_posix(pa->e_perm, flags | NFS4_ACL_OWNER); in _posix_to_nfsv4_one() [all …]
|
| H A D | nfs4xdr.c | 291 nfsd4_decode_nfsace4(struct nfsd4_compoundargs *argp, struct nfs4_ace *ace) in nfsd4_decode_nfsace4() argument 296 if (xdr_stream_decode_u32(argp->xdr, &ace->type) < 0) in nfsd4_decode_nfsace4() 298 if (xdr_stream_decode_u32(argp->xdr, &ace->flag) < 0) in nfsd4_decode_nfsace4() 300 if (xdr_stream_decode_u32(argp->xdr, &ace->access_mask) < 0) in nfsd4_decode_nfsace4() 308 ace->whotype = nfs4_acl_get_whotype((char *)p, length); in nfsd4_decode_nfsace4() 309 if (ace->whotype != NFS4_ACL_WHO_NAMED) in nfsd4_decode_nfsace4() 311 else if (ace->flag & NFS4_ACE_IDENTIFIER_GROUP) in nfsd4_decode_nfsace4() 313 (char *)p, length, &ace->who_gid); in nfsd4_decode_nfsace4() 316 (char *)p, length, &ace->who_uid); in nfsd4_decode_nfsace4() 325 struct nfs4_ace *ace; in nfsd4_decode_acl() local [all …]
|
| /linux/fs/xfs/ |
| H A D | xfs_acl.c | 39 const struct xfs_acl_entry *ace; in xfs_acl_from_disk() local 61 ace = &aclp->acl_entry[i]; in xfs_acl_from_disk() 69 acl_e->e_tag = be32_to_cpu(ace->ae_tag); in xfs_acl_from_disk() 70 acl_e->e_perm = be16_to_cpu(ace->ae_perm); in xfs_acl_from_disk() 75 be32_to_cpu(ace->ae_id)); in xfs_acl_from_disk() 79 be32_to_cpu(ace->ae_id)); in xfs_acl_from_disk() 101 struct xfs_acl_entry *ace; in xfs_acl_to_disk() local 106 ace = &aclp->acl_entry[i]; in xfs_acl_to_disk() 109 ace->ae_tag = cpu_to_be32(acl_e->e_tag); in xfs_acl_to_disk() 112 ace->ae_id = cpu_to_be32( in xfs_acl_to_disk() [all …]
|
| /linux/Documentation/admin-guide/media/ |
| H A D | saa7134-cardlist.rst | 523 - 5ace:5050 527 - 5ace:5070, 5ace:5090 535 - 5ace:6070 539 - 5ace:6190 587 - 5ace:6290 591 - 5ace:6191 595 - 5ace:6193 667 - 5ace:6071 671 - 5ace:6090 675 - 5ace:6091 [all …]
|
| H A D | dvb-usb-zd1301-cardlist.rst | 16 - 0ace:13a1
|
| /linux/include/net/ |
| H A D | tcp_ecn.h | 101 static inline int tcp_accecn_extract_syn_ect(u8 ace) in tcp_accecn_extract_syn_ect() argument 115 return ace_to_ecn[ace & 0x7]; in tcp_accecn_extract_syn_ect() 133 static inline bool tcp_accecn_validate_syn_feedback(struct sock *sk, u8 ace, in tcp_accecn_validate_syn_feedback() argument 136 u8 ect = tcp_accecn_extract_syn_ect(ace); in tcp_accecn_validate_syn_feedback() 162 u8 ace = tcp_accecn_ace(tcp_hdr(skb)); in tcp_accecn_third_ack() local 165 switch (ace) { in tcp_accecn_third_ack() 181 tcp_accecn_validate_syn_feedback(sk, ace, sent_ect)) { in tcp_accecn_third_ack() 182 if ((tcp_accecn_extract_syn_ect(ace) == INET_ECN_CE) && in tcp_accecn_third_ack() 377 u8 ace = tcp_accecn_ace(th); in tcp_accecn_syn_requested() local 379 return ace && ace != 0x3; in tcp_accecn_syn_requested() [all …]
|
| H A D | tcp.h | 1886 u32 ace; in __tcp_fast_path_on() local 1892 ace = tcp_ecn_mode_accecn(tp) ? in __tcp_fast_path_on() 1897 (ace << 22) | in __tcp_fast_path_on()
|
| /linux/fs/smb/server/ |
| H A D | smbacl.c | 1055 static void smb_set_ace(struct smb_ace *ace, const struct smb_sid *sid, u8 type, in smb_set_ace() argument 1058 ace->type = type; in smb_set_ace() 1059 ace->flags = flags; in smb_set_ace() 1060 ace->access_req = access_req; in smb_set_ace() 1061 smb_copy_sid(&ace->sid, sid); in smb_set_ace() 1062 ace->size = cpu_to_le16(1 + 1 + 2 + 4 + 1 + 1 + 6 + (sid->num_subauth * 4)); in smb_set_ace() 1301 struct smb_ace *ace; in smb_check_perm_dacl() local 1341 ace = (struct smb_ace *)((char *)pdacl + sizeof(struct smb_acl)); in smb_check_perm_dacl() 1346 ace_size = le16_to_cpu(ace->size); in smb_check_perm_dacl() 1350 granted |= le32_to_cpu(ace->access_req); in smb_check_perm_dacl() [all …]
|
| /linux/arch/arm/boot/dts/socionext/ |
| H A D | Makefile | 6 uniphier-pro4-ace.dtb \
|
| H A D | uniphier-pro4-ace.dts | 13 compatible = "socionext,uniphier-pro4-ace", "socionext,uniphier-pro4";
|
| /linux/arch/arm/boot/dts/mediatek/ |
| H A D | mt7629.dtsi | 183 interface-type = "ace-lite"; 189 interface-type = "ace"; 195 interface-type = "ace";
|
| /linux/drivers/misc/mei/ |
| H A D | vsc-fw-loader.c | 224 const struct firmware *ace; member 528 fw_loader->ace = image; in vsc_identify_ace_image() 769 release_firmware(fw_loader->ace); in vsc_tp_init()
|
| /linux/arch/arm/boot/dts/samsung/ |
| H A D | exynos5260.dtsi | 364 interface-type = "ace"; 370 interface-type = "ace";
|
| H A D | exynos5420.dtsi | 275 interface-type = "ace"; 280 interface-type = "ace";
|
| /linux/arch/arm/boot/dts/arm/ |
| H A D | vexpress-v2p-ca15_a7.dts | 170 interface-type = "ace"; 176 interface-type = "ace";
|
| /linux/arch/arm64/boot/dts/mediatek/ |
| H A D | mt7622.dtsi | 359 interface-type = "ace-lite"; 365 interface-type = "ace"; 371 interface-type = "ace";
|
| H A D | mt6795.dtsi | 498 interface-type = "ace-lite"; 504 interface-type = "ace"; 510 interface-type = "ace";
|
| /linux/fs/nfs_common/ |
| H A D | nfsacl.c | 46 struct posix_acl_entry ace[4]; member
|
| /linux/fs/ntfs3/ |
| H A D | fsntfs.c | 1747 const struct ACE_HEADER *ace; in is_acl_valid() local 1771 ace = (struct ACE_HEADER *)&acl[1]; in is_acl_valid() 1778 ace_size = le16_to_cpu(ace->AceSize); in is_acl_valid() 1783 ace = Add2Ptr(ace, ace_size); in is_acl_valid()
|
| /linux/arch/arm/boot/dts/allwinner/ |
| H A D | sun8i-a83t.dtsi | 414 interface-type = "ace"; 420 interface-type = "ace";
|
| H A D | sun9i-a80.dtsi | 560 interface-type = "ace"; 566 interface-type = "ace";
|
| /linux/fs/smb/client/ |
| H A D | cifssmb.c | 3276 static void cifs_init_posix_acl(struct posix_acl_entry *ace, in cifs_init_posix_acl() argument 3280 ace->e_perm = cifs_ace->cifs_e_perm; in cifs_init_posix_acl() 3281 ace->e_tag = cifs_ace->cifs_e_tag; in cifs_init_posix_acl() 3283 switch (ace->e_tag) { in cifs_init_posix_acl() 3285 ace->e_uid = make_kuid(&init_user_ns, in cifs_init_posix_acl() 3289 ace->e_gid = make_kgid(&init_user_ns, in cifs_init_posix_acl()
|