Searched refs:cl (Results 201 - 225 of 371) sorted by relevance

1234567891011>>

/linux-master/arch/sparc/kernel/
H A Dsetup_64.c652 u32 cl, sv, gw; local
654 cl = prom_getintdefault (chosen, "client-ip", 0);
657 if (cl && sv) {
658 ic_myaddr = cl;
/linux-master/drivers/md/bcache/
H A Dbcache.h251 struct closure cl; member in struct:bcache_device
518 struct closure cl; member in struct:cache_set
939 struct closure *cl)
941 closure_get(cl);
937 closure_bio_submit(struct cache_set *c, struct bio *bio, struct closure *cl) argument
/linux-master/fs/bcachefs/
H A Dec.c716 struct closure *cl = bio->bi_private; local
738 closure_put(cl);
742 blk_opf_t opf, unsigned idx, struct closure *cl)
791 ec_bio->bio.bi_private = cl;
795 closure_get(cl);
833 struct closure cl; local
838 closure_init_stack(&cl);
876 ec_block_io(c, buf, REQ_OP_READ, i, &cl);
878 closure_sync(&cl);
1781 enum bch_watermark watermark, struct closure *cl)
741 ec_block_io(struct bch_fs *c, struct ec_stripe_buf *buf, blk_opf_t opf, unsigned idx, struct closure *cl) argument
1780 new_stripe_alloc_buckets(struct btree_trans *trans, struct ec_stripe_head *h, enum bch_watermark watermark, struct closure *cl) argument
2020 bch2_ec_stripe_head_get(struct btree_trans *trans, unsigned target, unsigned algo, unsigned redundancy, enum bch_watermark watermark, struct closure *cl) argument
[all...]
H A Dbtree_io.c1396 struct closure cl; member in struct:btree_node_read_all
1449 closure_type(ra, struct btree_node_read_all, cl);
1568 closure_debug_destroy(&ra->cl);
1590 closure_put(&ra->cl);
1610 closure_init(&ra->cl, NULL);
1645 closure_get(&ra->cl);
1655 closure_sync(&ra->cl);
1656 btree_node_read_all_replicas_done(&ra->cl.work);
1658 continue_at(&ra->cl, btree_node_read_all_replicas_done,
1748 struct closure cl; local
[all...]
H A Dmove.c94 struct closure cl; member in struct:moving_io
135 closure_put(&ctxt->cl);
154 closure_get(&io->write.ctxt->cl);
179 closure_put(&ctxt->cl);
206 closure_sync(&ctxt->cl);
244 closure_init_stack(&ctxt->cl);
374 closure_get(&ctxt->cl);
/linux-master/drivers/hwmon/
H A Dw83781d.c1260 struct i2c_client *cl; local
1271 cl = data->lm75[bank - 1];
1275 res = i2c_smbus_read_word_swapped(cl, 0);
1278 res = i2c_smbus_read_byte_data(cl, 1);
1281 res = i2c_smbus_read_word_swapped(cl, 2);
1285 res = i2c_smbus_read_word_swapped(cl, 3);
1300 struct i2c_client *cl; local
1312 cl = data->lm75[bank - 1];
1316 i2c_smbus_write_byte_data(cl, 1, value & 0xff);
1319 i2c_smbus_write_word_swapped(cl,
[all...]
/linux-master/drivers/net/usb/
H A Dcx82310_eth.c343 #define USB_DEVICE_CLASS(vend, prod, cl, sc, pr) \
348 .bDeviceClass = (cl), \
/linux-master/arch/x86/lib/
H A Dchecksum_32.S120 5: movb (%esi),%cl
237 shrl %cl,%ebx
355 EXC(5: movb (%esi), %cl )
356 EXC( movb %cl, (%edi) )
H A Dmemcpy_64.S167 movb %cl, (%rdi)
/linux-master/tools/arch/x86/lib/
H A Dmemcpy_64.S166 movb %cl, (%rdi)
/linux-master/net/sched/
H A Dcls_basic.c261 static void basic_bind_class(void *fh, u32 classid, unsigned long cl, void *q, argument
266 tc_cls_bind_class(classid, cl, q, &f->res, base);
H A Dsch_taprio.c2151 unsigned long cl)
2154 unsigned long ntx = cl - 1;
2162 static int taprio_graft(struct Qdisc *sch, unsigned long cl, argument
2168 struct netdev_queue *dev_queue = taprio_queue_get(sch, cl);
2183 *old = q->qdiscs[cl - 1];
2192 q->qdiscs[cl - 1] = new;
2428 static struct Qdisc *taprio_leaf(struct Qdisc *sch, unsigned long cl) argument
2432 unsigned int ntx = cl - 1;
2449 static int taprio_dump_class(struct Qdisc *sch, unsigned long cl, argument
2452 struct Qdisc *child = taprio_leaf(sch, cl);
2150 taprio_queue_get(struct Qdisc *sch, unsigned long cl) argument
[all...]
/linux-master/drivers/cpufreq/
H A Dtegra194-cpufreq.c34 #define MMCRAB_CLUSTER_BASE(cl) (0x30000 + (cl * 0x10000))
35 #define CLUSTER_ACTMON_BASE(data, cl) \
36 (data->regs + (MMCRAB_CLUSTER_BASE(cl) + data->soc->actmon_cntr_base))
37 #define CORE_ACTMON_CNTR_REG(data, cl, cpu) (CLUSTER_ACTMON_BASE(data, cl) + CORE_OFFSET(cpu))
/linux-master/fs/nfs/
H A Dfile.c517 struct nfs_client *cl = NFS_SERVER(inode)->nfs_client; local
539 if (cl->rpc_ops->enable_swap)
540 cl->rpc_ops->enable_swap(inode);
550 struct nfs_client *cl = NFS_SERVER(inode)->nfs_client; local
553 if (cl->rpc_ops->disable_swap)
554 cl->rpc_ops->disable_swap(file_inode(file));
/linux-master/fs/ocfs2/
H A Dioctl.c544 struct ocfs2_chain_list *cl = NULL; local
567 cl = &(gb_dinode->id2.i_chain);
573 if (ffg->iff_chunksize > le16_to_cpu(cl->cl_cpg)) {
586 chunks_in_group = le16_to_cpu(cl->cl_cpg) / ffg->iff_chunksize + 1;
588 for (i = 0; i < le16_to_cpu(cl->cl_next_free_rec); i++) {
589 rec = &(cl->cl_recs[i]);
H A Dmove_extents.c373 struct ocfs2_chain_list *cl; local
393 cl = &(ac_dinode->id2.i_chain);
394 rec = &(cl->cl_recs[0]);
409 for (i = 0; i < le16_to_cpu(cl->cl_next_free_rec); i++) {
411 rec = &(cl->cl_recs[i]);
/linux-master/tools/perf/util/
H A Dcallchain.c1185 char *callchain_list__sym_name(struct callchain_list *cl, argument
1192 if (cl->ms.sym) {
1193 const char *inlined = cl->ms.sym->inlined ? " (inlined)" : "";
1195 if (show_srcline && cl->srcline)
1197 cl->ms.sym->name, cl->srcline,
1201 cl->ms.sym->name, inlined);
1203 printed = scnprintf(bf, bfsize, "%#" PRIx64, cl->ip);
1207 cl->ms.map ?
1208 dso__short_name(map__dso(cl
[all...]
/linux-master/fs/nfsd/
H A Dnfs4state.c905 struct nfs4_client *cl; local
910 cl = new->co_client;
914 if (co->co_client == cl) {
927 struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, struct kmem_cache *slab, argument
938 spin_lock(&cl->cl_lock);
940 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 1, 0, GFP_NOWAIT);
941 spin_unlock(&cl->cl_lock);
947 stid->sc_client = cl;
949 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid;
2560 bool nfsd4_mach_creds_match(struct nfs4_client *cl, struc argument
2599 find_stateid_locked(struct nfs4_client *cl, stateid_t *t) argument
2610 find_stateid_by_type(struct nfs4_client *cl, stateid_t *t, unsigned short typemask, unsigned short ok_states) argument
4783 struct nfs4_client *cl = s->sc_client; variable in typeref:struct:nfs4_client
4815 nfsd40_drop_revoked_stid(struct nfs4_client *cl, stateid_t *stid) argument
5418 find_deleg_stateid(struct nfs4_client *cl, stateid_t *s) argument
5436 nfs4_check_deleg(struct nfs4_client *cl, struct nfsd4_open *open, struct nfs4_delegation **dp) argument
6051 struct nfs4_client *cl = open->op_openowner->oo_owner.so_client; local
6757 nfsd4_validate_stateid(struct nfs4_client *cl, stateid_t *stateid) argument
7078 struct nfs4_client *cl = cstate->clp; local
7124 struct nfs4_client *cl = cstate->clp; local
7828 struct nfs4_client *cl = oo->oo_owner.so_client; local
[all...]
/linux-master/drivers/firmware/
H A Dti_sci.c95 * @cl: Mailbox Client
111 struct mbox_client cl; member in struct:ti_sci_info
121 #define cl_to_ti_sci_info(c) container_of(c, struct ti_sci_info, cl)
220 * @cl: client pointer
229 static void ti_sci_rx_callback(struct mbox_client *cl, void *m) argument
231 struct ti_sci_info *info = cl_to_ti_sci_info(cl);
3299 struct mbox_client *cl; local
3367 cl = &info->cl;
3368 cl
[all...]
/linux-master/arch/powerpc/math-emu/
H A Dmath_efp.c639 int ch, cl; local
648 cl = (IR1 == cmp) ? 1 : 0;
649 IR = (ch << 3) | (cl << 2) | ((ch | cl) << 1) |
650 ((ch & cl) << 0);
/linux-master/fs/nls/
H A Dnls_cp874.c230 unsigned char cl = uni & 0x00ff; local
237 if (uni2charset && uni2charset[cl])
238 out[0] = uni2charset[cl];
H A Dnls_iso8859-1.c214 unsigned char cl = uni & 0x00ff; local
221 if (uni2charset && uni2charset[cl])
222 out[0] = uni2charset[cl];
H A Dnls_iso8859-13.c242 unsigned char cl = uni & 0x00ff; local
249 if (uni2charset && uni2charset[cl])
250 out[0] = uni2charset[cl];
H A Dnls_iso8859-5.c229 unsigned char cl = uni & 0x00ff; local
236 if (uni2charset && uni2charset[cl])
237 out[0] = uni2charset[cl];
H A Dnls_iso8859-6.c220 unsigned char cl = uni & 0x00ff; local
227 if (uni2charset && uni2charset[cl])
228 out[0] = uni2charset[cl];

Completed in 414 milliseconds

1234567891011>>