Home
last modified time | relevance | path

Searched refs:ctxsize (Results 1 – 5 of 5) sorted by relevance

/linux/fs/crypto/
H A Dpolicy.c463 int ctxsize; in set_encryption_policy() local
500 ctxsize = fscrypt_new_context(&ctx, policy, nonce); in set_encryption_policy()
502 return inode->i_sb->s_cop->set_context(inode, &ctx, ctxsize, NULL); in set_encryption_policy()
776 int ctxsize; in fscrypt_set_context() local
778 ctxsize = fscrypt_context_for_new_inode(&ctx, inode); in fscrypt_set_context()
779 if (ctxsize < 0) in fscrypt_set_context()
780 return ctxsize; in fscrypt_set_context()
791 return inode->i_sb->s_cop->set_context(inode, &ctx, ctxsize, fs_data); in fscrypt_set_context()
/linux/drivers/net/ethernet/cavium/liquidio/
H A Docteon_iq.h292 u32 ctxsize; member
334 u32 ctxsize);
H A Drequest_manager.c861 u32 ctxsize) in octeon_alloc_soft_command() argument
872 WARN_ON((offset + datasize + rdatasize + ctxsize) > in octeon_alloc_soft_command()
901 if (ctxsize) { in octeon_alloc_soft_command()
903 sc->ctxsize = ctxsize; in octeon_alloc_soft_command()
907 offset = (offset + ctxsize + 127) & 0xffffff80; in octeon_alloc_soft_command()
/linux/fs/ceph/
H A Dcrypto.h60 u32 ctxsize = le32_to_cpu(fa->cfa_blob_len); in ceph_fscrypt_auth_len() local
62 return offsetof(struct ceph_fscrypt_auth, cfa_blob) + ctxsize; in ceph_fscrypt_auth_len()
/linux/crypto/
H A Dapi.c386 return len + type_obj->ctxsize(alg, type, mask); in crypto_ctxsize()