Home
last modified time | relevance | path

Searched refs:cc (Results 1 – 7 of 7) sorted by relevance

/fs/fuse/
Dcuse.c116 struct cuse_conn *cc = NULL, *pos; in cuse_open() local
124 cc = pos; in cuse_open()
130 if (!cc) in cuse_open()
137 rc = fuse_do_open(&cc->fc, 0, file, 0); in cuse_open()
139 fuse_conn_put(&cc->fc); in cuse_open()
158 struct cuse_conn *cc = fc_to_cc(ff->fc); in cuse_file_ioctl() local
161 if (cc->unrestricted_ioctl) in cuse_file_ioctl()
171 struct cuse_conn *cc = fc_to_cc(ff->fc); in cuse_file_compat_ioctl() local
174 if (cc->unrestricted_ioctl) in cuse_file_compat_ioctl()
321 struct cuse_conn *cc = fc_to_cc(fc), *pos; in cuse_process_init_reply() local
[all …]
/fs/hfsplus/
Dunicode.c102 static u16 *hfsplus_compose_lookup(u16 *p, u16 cc) in hfsplus_compose_lookup() argument
108 if (!e || cc < p[s * 2] || cc > p[e * 2]) in hfsplus_compose_lookup()
112 if (cc > p[i * 2]) in hfsplus_compose_lookup()
114 else if (cc < p[i * 2]) in hfsplus_compose_lookup()
129 u16 cc, c0, c1; in hfsplus_uni2asc() local
147 cc = ce1[0]; in hfsplus_uni2asc()
149 cc = 0; in hfsplus_uni2asc()
150 if (cc) { in hfsplus_uni2asc()
152 if (cc != 0xffff) in hfsplus_uni2asc()
159 cc = (c0 - Hangul_LBase) * Hangul_VCount; in hfsplus_uni2asc()
[all …]
/fs/ubifs/
Dcompress.c116 err = crypto_comp_compress(compr->cc, in_buf, in_len, out_buf, in ubifs_compress()
179 err = crypto_comp_decompress(compr->cc, in_buf, in_len, out_buf, in ubifs_decompress()
200 compr->cc = crypto_alloc_comp(compr->capi_name, 0, 0); in compr_init()
201 if (IS_ERR(compr->cc)) { in compr_init()
203 current->pid, compr->name, PTR_ERR(compr->cc)); in compr_init()
204 return PTR_ERR(compr->cc); in compr_init()
219 crypto_free_comp(compr->cc); in compr_exit()
Dubifs.h841 struct crypto_comp *cc; member
/fs/overlayfs/
Dcopy_up.c500 static int ovl_prep_cu_creds(struct dentry *dentry, struct ovl_cu_creds *cc) in ovl_prep_cu_creds() argument
504 cc->old = cc->new = NULL; in ovl_prep_cu_creds()
505 err = security_inode_copy_up(dentry, &cc->new); in ovl_prep_cu_creds()
509 if (cc->new) in ovl_prep_cu_creds()
510 cc->old = override_creds(cc->new); in ovl_prep_cu_creds()
515 static void ovl_revert_cu_creds(struct ovl_cu_creds *cc) in ovl_revert_cu_creds() argument
517 if (cc->new) { in ovl_revert_cu_creds()
518 revert_creds(cc->old); in ovl_revert_cu_creds()
519 put_cred(cc->new); in ovl_revert_cu_creds()
532 struct ovl_cu_creds cc; in ovl_copy_up_workdir() local
[all …]
/fs/proc/
DMakefile8 CFLAGS_task_mmu.o += $(call cc-option,-Wno-override-init,)
/fs/cifs/
Dsmb2pdu.c1902 parse_query_id_ctxt(struct create_context *cc, struct smb2_file_all_info *buf) in parse_query_id_ctxt() argument
1904 struct create_on_disk_id *pdisk_id = (struct create_on_disk_id *)cc; in parse_query_id_ctxt()
1918 struct create_context *cc; in smb2_parse_contexts() local
1926 cc = (struct create_context *)data_offset; in smb2_parse_contexts()
1933 name = le16_to_cpu(cc->NameOffset) + (char *)cc; in smb2_parse_contexts()
1934 if (le16_to_cpu(cc->NameLength) == 4 && in smb2_parse_contexts()
1936 *oplock = server->ops->parse_lease_buf(cc, epoch, in smb2_parse_contexts()
1938 else if (buf && (le16_to_cpu(cc->NameLength) == 4) && in smb2_parse_contexts()
1940 parse_query_id_ctxt(cc, buf); in smb2_parse_contexts()
1942 next = le32_to_cpu(cc->Next); in smb2_parse_contexts()
[all …]