Home
last modified time | relevance | path

Searched refs:cl (Results 1 – 200 of 252) sorted by relevance

12

/linux-4.1.27/net/sched/
Dsch_cbq.c98 void (*overlimit)(struct cbq_class *cl);
175 #define L2T(cl, len) qdisc_l2t((cl)->R_tab, len) argument
193 struct cbq_class *cl; in cbq_reclassify() local
195 for (cl = this->tparent; cl; cl = cl->tparent) { in cbq_reclassify()
196 struct cbq_class *new = cl->defaults[TC_PRIO_BESTEFFORT]; in cbq_reclassify()
222 struct cbq_class *cl = NULL; in cbq_classify() local
231 (cl = cbq_class_lookup(q, prio)) != NULL) in cbq_classify()
232 return cl; in cbq_classify()
247 cl = (void *)res.class; in cbq_classify()
248 if (!cl) { in cbq_classify()
[all …]
Dsch_hfsc.c194 eltree_insert(struct hfsc_class *cl) in eltree_insert() argument
196 struct rb_node **p = &cl->sched->eligible.rb_node; in eltree_insert()
203 if (cl->cl_e >= cl1->cl_e) in eltree_insert()
208 rb_link_node(&cl->el_node, parent, p); in eltree_insert()
209 rb_insert_color(&cl->el_node, &cl->sched->eligible); in eltree_insert()
213 eltree_remove(struct hfsc_class *cl) in eltree_remove() argument
215 rb_erase(&cl->el_node, &cl->sched->eligible); in eltree_remove()
219 eltree_update(struct hfsc_class *cl) in eltree_update() argument
221 eltree_remove(cl); in eltree_update()
222 eltree_insert(cl); in eltree_update()
[all …]
Dsch_htb.c210 struct htb_class *cl; in htb_classify() local
221 cl = htb_find(skb->priority, sch); in htb_classify()
222 if (cl) { in htb_classify()
223 if (cl->level == 0) in htb_classify()
224 return cl; in htb_classify()
226 tcf = rcu_dereference_bh(cl->filter_list); in htb_classify()
242 cl = (void *)res.class; in htb_classify()
243 if (!cl) { in htb_classify()
246 cl = htb_find(res.classid, sch); in htb_classify()
247 if (!cl) in htb_classify()
[all …]
Dsch_drr.c53 static void drr_purge_queue(struct drr_class *cl) in drr_purge_queue() argument
55 unsigned int len = cl->qdisc->q.qlen; in drr_purge_queue()
57 qdisc_reset(cl->qdisc); in drr_purge_queue()
58 qdisc_tree_decrease_qlen(cl->qdisc, len); in drr_purge_queue()
69 struct drr_class *cl = (struct drr_class *)*arg; in drr_change_class() local
89 if (cl != NULL) { in drr_change_class()
91 err = gen_replace_estimator(&cl->bstats, NULL, in drr_change_class()
92 &cl->rate_est, in drr_change_class()
101 cl->quantum = quantum; in drr_change_class()
107 cl = kzalloc(sizeof(struct drr_class), GFP_KERNEL); in drr_change_class()
[all …]
Dsch_qfq.c221 static void qfq_purge_queue(struct qfq_class *cl) in qfq_purge_queue() argument
223 unsigned int len = cl->qdisc->q.qlen; in qfq_purge_queue()
225 qdisc_reset(cl->qdisc); in qfq_purge_queue()
226 qdisc_tree_decrease_qlen(cl->qdisc, len); in qfq_purge_queue()
325 struct qfq_class *cl) in qfq_add_to_agg() argument
327 cl->agg = agg; in qfq_add_to_agg()
330 if (cl->qdisc->q.qlen > 0) { /* adding an active class */ in qfq_add_to_agg()
331 list_add_tail(&cl->alist, &agg->active); in qfq_add_to_agg()
333 cl && q->in_serv_agg != agg) /* agg was inactive */ in qfq_add_to_agg()
354 static void qfq_deactivate_class(struct qfq_sched *q, struct qfq_class *cl) in qfq_deactivate_class() argument
[all …]
Dsch_mq.c124 static struct netdev_queue *mq_queue_get(struct Qdisc *sch, unsigned long cl) in mq_queue_get() argument
127 unsigned long ntx = cl - 1; in mq_queue_get()
148 static int mq_graft(struct Qdisc *sch, unsigned long cl, struct Qdisc *new, in mq_graft() argument
151 struct netdev_queue *dev_queue = mq_queue_get(sch, cl); in mq_graft()
165 static struct Qdisc *mq_leaf(struct Qdisc *sch, unsigned long cl) in mq_leaf() argument
167 struct netdev_queue *dev_queue = mq_queue_get(sch, cl); in mq_leaf()
181 static void mq_put(struct Qdisc *sch, unsigned long cl) in mq_put() argument
185 static int mq_dump_class(struct Qdisc *sch, unsigned long cl, in mq_dump_class() argument
188 struct netdev_queue *dev_queue = mq_queue_get(sch, cl); in mq_dump_class()
191 tcm->tcm_handle |= TC_H_MIN(cl); in mq_dump_class()
[all …]
Dsch_mqprio.c187 unsigned long cl) in mqprio_queue_get() argument
190 unsigned long ntx = cl - 1 - netdev_get_num_tc(dev); in mqprio_queue_get()
197 static int mqprio_graft(struct Qdisc *sch, unsigned long cl, struct Qdisc *new, in mqprio_graft() argument
201 struct netdev_queue *dev_queue = mqprio_queue_get(sch, cl); in mqprio_graft()
264 static struct Qdisc *mqprio_leaf(struct Qdisc *sch, unsigned long cl) in mqprio_leaf() argument
266 struct netdev_queue *dev_queue = mqprio_queue_get(sch, cl); in mqprio_leaf()
284 static void mqprio_put(struct Qdisc *sch, unsigned long cl) in mqprio_put() argument
288 static int mqprio_dump_class(struct Qdisc *sch, unsigned long cl, in mqprio_dump_class() argument
293 if (cl <= netdev_get_num_tc(dev)) { in mqprio_dump_class()
300 dev_queue = mqprio_queue_get(sch, cl); in mqprio_dump_class()
[all …]
Dsch_api.c43 unsigned long cl, int event);
314 unsigned long cl; in qdisc_leaf() local
320 cl = cops->get(p, classid); in qdisc_leaf()
322 if (cl == 0) in qdisc_leaf()
324 leaf = cops->leaf(p, cl); in qdisc_leaf()
325 cops->put(p, cl); in qdisc_leaf()
653 struct Qdisc_class_common *cl; in qdisc_class_hash_grow() local
673 hlist_for_each_entry_safe(cl, next, &ohash[i], hnode) { in qdisc_class_hash_grow()
674 h = qdisc_class_hash(cl->classid, nmask); in qdisc_class_hash_grow()
675 hlist_add_head(&cl->hnode, &nhash[h]); in qdisc_class_hash_grow()
[all …]
Dcls_api.c137 unsigned long cl; in tc_ctl_tfilter() local
156 cl = 0; in tc_ctl_tfilter()
193 cl = cops->get(q, parent); in tc_ctl_tfilter()
194 if (cl == 0) in tc_ctl_tfilter()
199 chain = cops->tcf_chain(q, cl); in tc_ctl_tfilter()
332 err = tp->ops->change(net, skb, tp, cl, t->tcm_handle, tca, &fh, in tc_ctl_tfilter()
346 if (cl) in tc_ctl_tfilter()
347 cops->put(q, cl); in tc_ctl_tfilter()
434 unsigned long cl = 0; in tc_dump_tfilter() local
456 cl = cops->get(q, tcm->tcm_parent); in tc_dump_tfilter()
[all …]
Dsch_prio.c306 static void prio_put(struct Qdisc *q, unsigned long cl) in prio_put() argument
310 static int prio_dump_class(struct Qdisc *sch, unsigned long cl, struct sk_buff *skb, in prio_dump_class() argument
315 tcm->tcm_handle |= TC_H_MIN(cl); in prio_dump_class()
316 tcm->tcm_info = q->queues[cl-1]->handle; in prio_dump_class()
320 static int prio_dump_class_stats(struct Qdisc *sch, unsigned long cl, in prio_dump_class_stats() argument
326 cl_q = q->queues[cl - 1]; in prio_dump_class_stats()
356 unsigned long cl) in prio_find_tcf() argument
360 if (cl) in prio_find_tcf()
Dsch_multiq.c342 static void multiq_put(struct Qdisc *q, unsigned long cl) in multiq_put() argument
346 static int multiq_dump_class(struct Qdisc *sch, unsigned long cl, in multiq_dump_class() argument
351 tcm->tcm_handle |= TC_H_MIN(cl); in multiq_dump_class()
352 tcm->tcm_info = q->queues[cl - 1]->handle; in multiq_dump_class()
356 static int multiq_dump_class_stats(struct Qdisc *sch, unsigned long cl, in multiq_dump_class_stats() argument
362 cl_q = q->queues[cl - 1]; in multiq_dump_class_stats()
392 unsigned long cl) in multiq_find_tcf() argument
396 if (cl) in multiq_find_tcf()
Dsch_atm.c101 static struct Qdisc *atm_tc_leaf(struct Qdisc *sch, unsigned long cl) in atm_tc_leaf() argument
103 struct atm_flow_data *flow = (struct atm_flow_data *)cl; in atm_tc_leaf()
133 static void atm_tc_put(struct Qdisc *sch, unsigned long cl) in atm_tc_put() argument
136 struct atm_flow_data *flow = (struct atm_flow_data *)cl; in atm_tc_put()
259 unsigned long cl; in atm_tc_change() local
263 cl = atm_tc_get(sch, classid); in atm_tc_change()
264 if (!cl) in atm_tc_change()
266 atm_tc_put(sch, cl); in atm_tc_change()
349 unsigned long cl) in atm_tc_find_tcf() argument
352 struct atm_flow_data *flow = (struct atm_flow_data *)cl; in atm_tc_find_tcf()
[all …]
Dsch_dsmark.c100 static void dsmark_put(struct Qdisc *sch, unsigned long cl) in dsmark_put() argument
190 unsigned long cl) in dsmark_find_tcf() argument
416 static int dsmark_dump_class(struct Qdisc *sch, unsigned long cl, in dsmark_dump_class() argument
422 pr_debug("%s(sch %p,[qdisc %p],class %ld\n", __func__, sch, p, cl); in dsmark_dump_class()
424 if (!dsmark_valid_index(p, cl)) in dsmark_dump_class()
427 tcm->tcm_handle = TC_H_MAKE(TC_H_MAJ(sch->handle), cl - 1); in dsmark_dump_class()
433 if (nla_put_u8(skb, TCA_DSMARK_MASK, p->mask[cl - 1]) || in dsmark_dump_class()
434 nla_put_u8(skb, TCA_DSMARK_VALUE, p->value[cl - 1])) in dsmark_dump_class()
Dsch_fq_codel.c497 static void fq_codel_put(struct Qdisc *q, unsigned long cl) in fq_codel_put() argument
502 unsigned long cl) in fq_codel_find_tcf() argument
506 if (cl) in fq_codel_find_tcf()
511 static int fq_codel_dump_class(struct Qdisc *sch, unsigned long cl, in fq_codel_dump_class() argument
514 tcm->tcm_handle |= TC_H_MIN(cl); in fq_codel_dump_class()
518 static int fq_codel_dump_class_stats(struct Qdisc *sch, unsigned long cl, in fq_codel_dump_class_stats() argument
522 u32 idx = cl - 1; in fq_codel_dump_class_stats()
Dsch_ingress.c41 static void ingress_put(struct Qdisc *sch, unsigned long cl) in ingress_put() argument
50 unsigned long cl) in ingress_find_tcf() argument
Dsch_choke.c559 static void choke_put(struct Qdisc *q, unsigned long cl) in choke_put() argument
570 unsigned long cl) in choke_find_tcf() argument
574 if (cl) in choke_find_tcf()
579 static int choke_dump_class(struct Qdisc *sch, unsigned long cl, in choke_dump_class() argument
582 tcm->tcm_handle |= TC_H_MIN(cl); in choke_dump_class()
Dsch_sfq.c838 static void sfq_put(struct Qdisc *q, unsigned long cl) in sfq_put() argument
843 unsigned long cl) in sfq_find_tcf() argument
847 if (cl) in sfq_find_tcf()
852 static int sfq_dump_class(struct Qdisc *sch, unsigned long cl, in sfq_dump_class() argument
855 tcm->tcm_handle |= TC_H_MIN(cl); in sfq_dump_class()
859 static int sfq_dump_class_stats(struct Qdisc *sch, unsigned long cl, in sfq_dump_class_stats() argument
863 sfq_index idx = q->ht[cl - 1]; in sfq_dump_class_stats()
Dsch_sfb.c603 static int sfb_dump_class(struct Qdisc *sch, unsigned long cl, in sfb_dump_class() argument
648 static int sfb_delete(struct Qdisc *sch, unsigned long cl) in sfb_delete() argument
666 unsigned long cl) in sfb_find_tcf() argument
670 if (cl) in sfb_find_tcf()
/linux-4.1.27/drivers/misc/mei/
Dclient.c347 struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, enum mei_cb_file_ops type, in mei_io_cb_init() argument
358 cb->cl = cl; in mei_io_cb_init()
372 struct mei_cl *cl, bool free) in __mei_io_list_flush() argument
378 if (!cl || mei_cl_cmp_id(cl, cb->cl)) { in __mei_io_list_flush()
392 void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl) in mei_io_list_flush() argument
394 __mei_io_list_flush(list, cl, false); in mei_io_list_flush()
403 static inline void mei_io_list_free(struct mei_cl_cb *list, struct mei_cl *cl) in mei_io_list_free() argument
405 __mei_io_list_flush(list, cl, true); in mei_io_list_free()
443 struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length, in mei_cl_alloc_cb() argument
448 cb = mei_io_cb_init(cl, type, fp); in mei_cl_alloc_cb()
[all …]
Dinterrupt.c42 struct mei_cl *cl; in mei_irq_compl_handler() local
45 cl = cb->cl; in mei_irq_compl_handler()
49 if (cl == &dev->iamthif_cl) in mei_irq_compl_handler()
52 mei_cl_complete(cl, cb); in mei_irq_compl_handler()
65 static inline int mei_cl_hbm_equal(struct mei_cl *cl, in mei_cl_hbm_equal() argument
68 return cl->host_client_id == mei_hdr->host_addr && in mei_cl_hbm_equal()
69 cl->me_client_id == mei_hdr->me_addr; in mei_cl_hbm_equal()
99 int mei_cl_irq_read_msg(struct mei_cl *cl, in mei_cl_irq_read_msg() argument
103 struct mei_device *dev = cl->dev; in mei_cl_irq_read_msg()
107 cb = list_first_entry_or_null(&cl->rd_pending, struct mei_cl_cb, list); in mei_cl_irq_read_msg()
[all …]
Dbus.c146 struct mei_cl *cl; in mei_cl_bus_find_cl_by_uuid() local
148 list_for_each_entry(cl, &dev->device_list, device_link) { in mei_cl_bus_find_cl_by_uuid()
149 if (!uuid_le_cmp(uuid, cl->cl_uuid)) in mei_cl_bus_find_cl_by_uuid()
150 return cl; in mei_cl_bus_find_cl_by_uuid()
160 struct mei_cl *cl; in mei_cl_add_device() local
163 cl = mei_cl_bus_find_cl_by_uuid(dev, uuid); in mei_cl_add_device()
164 if (cl == NULL) in mei_cl_add_device()
171 device->cl = cl; in mei_cl_add_device()
187 cl->device = device; in mei_cl_add_device()
227 static ssize_t ___mei_cl_send(struct mei_cl *cl, u8 *buf, size_t length, in ___mei_cl_send() argument
[all …]
Dclient.h50 struct mei_cl_cb *mei_io_cb_init(struct mei_cl *cl, enum mei_cb_file_ops type,
65 void mei_io_list_flush(struct mei_cl_cb *list, struct mei_cl *cl);
72 void mei_cl_init(struct mei_cl *cl, struct mei_device *dev);
75 int mei_cl_link(struct mei_cl *cl, int id);
76 int mei_cl_unlink(struct mei_cl *cl);
80 struct mei_cl_cb *mei_cl_read_cb(const struct mei_cl *cl,
82 void mei_cl_read_cb_flush(const struct mei_cl *cl, const struct file *fp);
83 struct mei_cl_cb *mei_cl_alloc_cb(struct mei_cl *cl, size_t length,
85 int mei_cl_flush_queues(struct mei_cl *cl, const struct file *fp);
87 int mei_cl_flow_ctrl_creds(struct mei_cl *cl);
[all …]
Dmain.c51 struct mei_cl *cl; in mei_open() local
68 cl = mei_cl_alloc_linked(dev, MEI_HOST_CLIENT_ID_ANY); in mei_open()
69 if (IS_ERR(cl)) { in mei_open()
70 err = PTR_ERR(cl); in mei_open()
74 file->private_data = cl; in mei_open()
95 struct mei_cl *cl = file->private_data; in mei_release() local
99 if (WARN_ON(!cl || !cl->dev)) in mei_release()
102 dev = cl->dev; in mei_release()
105 if (cl == &dev->iamthif_cl) { in mei_release()
109 if (mei_cl_is_connected(cl)) { in mei_release()
[all …]
Dhbm.c146 void mei_hbm_cl_hdr(struct mei_cl *cl, u8 hbm_cmd, void *buf, size_t len) in mei_hbm_cl_hdr() argument
153 cmd->host_addr = cl->host_client_id; in mei_hbm_cl_hdr()
154 cmd->me_addr = cl->me_client_id; in mei_hbm_cl_hdr()
169 struct mei_cl *cl, u8 hbm_cmd, size_t len) in mei_hbm_cl_write() argument
174 mei_hbm_cl_hdr(cl, hbm_cmd, dev->wr_msg.data, len); in mei_hbm_cl_write()
189 bool mei_hbm_cl_addr_equal(struct mei_cl *cl, struct mei_hbm_cl_cmd *cmd) in mei_hbm_cl_addr_equal() argument
191 return cl->host_client_id == cmd->host_addr && in mei_hbm_cl_addr_equal()
192 cl->me_client_id == cmd->me_addr; in mei_hbm_cl_addr_equal()
207 struct mei_cl *cl; in mei_hbm_cl_find_by_cmd() local
209 list_for_each_entry(cl, &dev->file_list, link) in mei_hbm_cl_find_by_cmd()
[all …]
Dwd.c60 struct mei_cl *cl = &dev->wd_cl; in mei_wd_host_init() local
64 mei_cl_init(cl, dev); in mei_wd_host_init()
77 cl->me_client_id = me_cl->client_id; in mei_wd_host_init()
78 cl->cl_uuid = me_cl->props.protocol_name; in mei_wd_host_init()
81 ret = mei_cl_link(cl, MEI_WD_HOST_CLIENT_ID); in mei_wd_host_init()
88 ret = mei_cl_connect(cl, NULL); in mei_wd_host_init()
92 mei_cl_unlink(cl); in mei_wd_host_init()
98 mei_cl_disconnect(cl); in mei_wd_host_init()
99 mei_cl_unlink(cl); in mei_wd_host_init()
116 struct mei_cl *cl = &dev->wd_cl; in mei_wd_send() local
[all …]
Dnfc.c107 struct mei_cl *cl; member
142 if (ndev->cl) { in mei_nfc_free()
143 list_del(&ndev->cl->device_link); in mei_nfc_free()
144 mei_cl_unlink(ndev->cl); in mei_nfc_free()
145 kfree(ndev->cl); in mei_nfc_free()
161 if (!ndev->cl) in mei_nfc_build_bus_name()
164 dev = ndev->cl->dev; in mei_nfc_build_bus_name()
205 struct mei_cl *cl; in mei_nfc_connect() local
212 cl = ndev->cl; in mei_nfc_connect()
213 dev = cl->dev; in mei_nfc_connect()
[all …]
Damthif.c67 struct mei_cl *cl = &dev->iamthif_cl; in mei_amthif_host_init() local
73 mei_cl_init(cl, dev); in mei_amthif_host_init()
81 cl->me_client_id = me_cl->client_id; in mei_amthif_host_init()
82 cl->cl_uuid = me_cl->props.protocol_name; in mei_amthif_host_init()
90 ret = mei_cl_link(cl, MEI_IAMTHIF_HOST_CLIENT_ID); in mei_amthif_host_init()
96 ret = mei_cl_connect(cl, NULL); in mei_amthif_host_init()
144 struct mei_cl *cl = file->private_data; in mei_amthif_read() local
151 if (!cl) { in mei_amthif_read()
249 static int mei_amthif_read_start(struct mei_cl *cl, struct file *file) in mei_amthif_read_start() argument
251 struct mei_device *dev = cl->dev; in mei_amthif_read_start()
[all …]
Dhbm.h51 int mei_hbm_cl_flow_control_req(struct mei_device *dev, struct mei_cl *cl);
52 int mei_hbm_cl_disconnect_req(struct mei_device *dev, struct mei_cl *cl);
53 int mei_hbm_cl_disconnect_rsp(struct mei_device *dev, struct mei_cl *cl);
54 int mei_hbm_cl_connect_req(struct mei_device *dev, struct mei_cl *cl);
Ddebugfs.c92 struct mei_cl *cl; in mei_dbgfs_read_active() local
115 list_for_each_entry(cl, &dev->file_list, link) { in mei_dbgfs_read_active()
119 i, cl->me_client_id, cl->host_client_id, cl->state, in mei_dbgfs_read_active()
120 !list_empty(&cl->rd_completed), cl->writing_state); in mei_dbgfs_read_active()
Dmei_dev.h207 struct mei_cl *cl; member
354 ssize_t __mei_cl_async_send(struct mei_cl *cl, u8 *buf, size_t length);
355 ssize_t __mei_cl_send(struct mei_cl *cl, u8 *buf, size_t length);
356 ssize_t __mei_cl_recv(struct mei_cl *cl, u8 *buf, size_t length);
357 void mei_cl_bus_rx_event(struct mei_cl *cl);
384 struct mei_cl *cl; member
674 int mei_amthif_write(struct mei_cl *cl, struct mei_cl_cb *cb);
676 int mei_amthif_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
680 int mei_amthif_irq_read_msg(struct mei_cl *cl,
/linux-4.1.27/drivers/md/bcache/
Dclosure.h174 void closure_sub(struct closure *cl, int v);
175 void closure_put(struct closure *cl);
177 bool closure_wait(struct closure_waitlist *list, struct closure *cl);
178 void closure_sync(struct closure *cl);
183 void closure_debug_create(struct closure *cl);
184 void closure_debug_destroy(struct closure *cl);
189 static inline void closure_debug_create(struct closure *cl) {} in closure_debug_create() argument
190 static inline void closure_debug_destroy(struct closure *cl) {} in closure_debug_destroy() argument
194 static inline void closure_set_ip(struct closure *cl) in closure_set_ip() argument
197 cl->ip = _THIS_IP_; in closure_set_ip()
[all …]
Dclosure.c14 static inline void closure_put_after_sub(struct closure *cl, int flags) in closure_put_after_sub() argument
23 wake_up_process(cl->task); in closure_put_after_sub()
26 if (cl->fn && !(flags & CLOSURE_DESTRUCTOR)) { in closure_put_after_sub()
27 atomic_set(&cl->remaining, in closure_put_after_sub()
29 closure_queue(cl); in closure_put_after_sub()
31 struct closure *parent = cl->parent; in closure_put_after_sub()
32 closure_fn *destructor = cl->fn; in closure_put_after_sub()
34 closure_debug_destroy(cl); in closure_put_after_sub()
37 destructor(cl); in closure_put_after_sub()
46 void closure_sub(struct closure *cl, int v) in closure_sub() argument
[all …]
Drequest.c55 static void bch_data_insert_keys(struct closure *cl) in bch_data_insert_keys() argument
57 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl); in bch_data_insert_keys()
70 while (atomic_read(&s->cl.remaining) & CLOSURE_WAITING) in bch_data_insert_keys()
71 closure_sync(&s->cl); in bch_data_insert_keys()
76 op->flush_journal ? cl : NULL); in bch_data_insert_keys()
91 continue_at(cl, bch_data_insert_start, op->wq); in bch_data_insert_keys()
94 closure_return(cl); in bch_data_insert_keys()
115 static void bch_data_invalidate(struct closure *cl) in bch_data_invalidate() argument
117 struct data_insert_op *op = container_of(cl, struct data_insert_op, cl); in bch_data_invalidate()
140 continue_at(cl, bch_data_insert_keys, op->wq); in bch_data_invalidate()
[all …]
Dmovinggc.c15 struct closure cl; member
37 static void moving_io_destructor(struct closure *cl) in moving_io_destructor() argument
39 struct moving_io *io = container_of(cl, struct moving_io, cl); in moving_io_destructor()
43 static void write_moving_finish(struct closure *cl) in write_moving_finish() argument
45 struct moving_io *io = container_of(cl, struct moving_io, cl); in write_moving_finish()
60 closure_return_with_destructor(cl, moving_io_destructor); in write_moving_finish()
67 struct moving_io, cl); in read_moving_endio()
90 bio->bi_private = &io->cl; in moving_init()
95 static void write_moving(struct closure *cl) in write_moving() argument
97 struct moving_io *io = container_of(cl, struct moving_io, cl); in write_moving()
[all …]
Dsuper.c267 static void bch_write_bdev_super_unlock(struct closure *cl) in bch_write_bdev_super_unlock() argument
269 struct cached_dev *dc = container_of(cl, struct cached_dev, sb_write); in bch_write_bdev_super_unlock()
276 struct closure *cl = &dc->sb_write; in bch_write_bdev_super() local
280 closure_init(cl, parent); in bch_write_bdev_super()
287 closure_get(cl); in bch_write_bdev_super()
290 closure_return_with_destructor(cl, bch_write_bdev_super_unlock); in bch_write_bdev_super()
301 static void bcache_write_super_unlock(struct closure *cl) in bcache_write_super_unlock() argument
303 struct cache_set *c = container_of(cl, struct cache_set, sb_write); in bcache_write_super_unlock()
310 struct closure *cl = &c->sb_write; in bcache_write_super() local
315 closure_init(cl, &c->cl); in bcache_write_super()
[all …]
Dio.c52 static void bch_bio_submit_split_done(struct closure *cl) in bch_bio_submit_split_done() argument
54 struct bio_split_hook *s = container_of(cl, struct bio_split_hook, cl); in bch_bio_submit_split_done()
60 closure_debug_destroy(&s->cl); in bch_bio_submit_split_done()
66 struct closure *cl = bio->bi_private; in bch_bio_submit_split_endio() local
67 struct bio_split_hook *s = container_of(cl, struct bio_split_hook, cl); in bch_bio_submit_split_endio()
73 closure_put(cl); in bch_bio_submit_split_endio()
88 closure_init(&s->cl, NULL); in bch_generic_make_request()
101 n->bi_private = &s->cl; in bch_generic_make_request()
103 closure_get(&s->cl); in bch_generic_make_request()
107 continue_at(&s->cl, bch_bio_submit_split_done, NULL); in bch_generic_make_request()
[all …]
Dwriteback.c100 struct closure cl; member
121 static void dirty_io_destructor(struct closure *cl) in dirty_io_destructor() argument
123 struct dirty_io *io = container_of(cl, struct dirty_io, cl); in dirty_io_destructor()
127 static void write_dirty_finish(struct closure *cl) in write_dirty_finish() argument
129 struct dirty_io *io = container_of(cl, struct dirty_io, cl); in write_dirty_finish()
166 closure_return_with_destructor(cl, dirty_io_destructor); in write_dirty_finish()
177 closure_put(&io->cl); in dirty_endio()
180 static void write_dirty(struct closure *cl) in write_dirty() argument
182 struct dirty_io *io = container_of(cl, struct dirty_io, cl); in write_dirty()
191 closure_bio_submit(&io->bio, cl, &io->dc->disk); in write_dirty()
[all …]
Djournal.c29 struct closure *cl = bio->bi_private; in journal_read_endio() local
30 closure_put(cl); in journal_read_endio()
41 struct closure cl; in journal_read_bucket() local
46 closure_init_stack(&cl); in journal_read_bucket()
61 bio->bi_private = &cl; in journal_read_bucket()
64 closure_bio_submit(bio, &cl, ca); in journal_read_bucket()
65 closure_sync(&cl); in journal_read_bucket()
413 closure_put(&ca->set->cl); in journal_discard_endio()
461 closure_get(&ca->set->cl); in do_journal_discard()
560 static void journal_write_done(struct closure *cl) in journal_write_done() argument
[all …]
Dbtree.c283 struct closure *cl = bio->bi_private; in btree_node_read_endio() local
284 closure_put(cl); in btree_node_read_endio()
290 struct closure cl; in bch_btree_node_read() local
295 closure_init_stack(&cl); in bch_btree_node_read()
301 bio->bi_private = &cl; in bch_btree_node_read()
306 closure_sync(&cl); in bch_btree_node_read()
340 static void btree_node_write_unlock(struct closure *cl) in btree_node_write_unlock() argument
342 struct btree *b = container_of(cl, struct btree, io); in btree_node_write_unlock()
347 static void __btree_node_write_done(struct closure *cl) in __btree_node_write_done() argument
349 struct btree *b = container_of(cl, struct btree, io); in __btree_node_write_done()
[all …]
Drequest.h5 struct closure cl; member
36 void bch_data_insert(struct closure *cl);
Dstats.c125 closure_return(&acc->cl); in bch_cache_accounting_destroy()
180 closure_return(&acc->cl); in scale_accounting()
235 closure_init(&acc->cl, parent); in bch_cache_accounting_init()
Dstats.h29 struct closure cl; member
Dbcache.h252 struct closure cl; member
260 struct closure cl; member
489 struct closure cl; member
/linux-4.1.27/drivers/hsi/
Dhsi.c73 struct hsi_client *cl = to_hsi_client(dev); in hsi_client_release() local
75 kfree(cl->tx_cfg.channels); in hsi_client_release()
76 kfree(cl->rx_cfg.channels); in hsi_client_release()
77 kfree(cl); in hsi_client_release()
83 struct hsi_client *cl; in hsi_new_client() local
86 cl = kzalloc(sizeof(*cl), GFP_KERNEL); in hsi_new_client()
87 if (!cl) in hsi_new_client()
90 cl->tx_cfg = info->tx_cfg; in hsi_new_client()
91 if (cl->tx_cfg.channels) { in hsi_new_client()
92 size = cl->tx_cfg.num_channels * sizeof(*cl->tx_cfg.channels); in hsi_new_client()
[all …]
/linux-4.1.27/include/linux/hsi/
Dhsi.h154 static inline void hsi_client_set_drvdata(struct hsi_client *cl, void *data) in hsi_client_set_drvdata() argument
156 dev_set_drvdata(&cl->device, data); in hsi_client_set_drvdata()
159 static inline void *hsi_client_drvdata(struct hsi_client *cl) in hsi_client_drvdata() argument
161 return dev_get_drvdata(&cl->device); in hsi_client_drvdata()
164 int hsi_register_port_event(struct hsi_client *cl,
166 int hsi_unregister_port_event(struct hsi_client *cl);
203 struct hsi_client *cl; member
246 int (*setup)(struct hsi_client *cl);
247 int (*flush)(struct hsi_client *cl);
248 int (*start_tx)(struct hsi_client *cl);
[all …]
/linux-4.1.27/drivers/hsi/clients/
Dssi_protocol.c48 void ssi_waketest(struct hsi_client *cl, unsigned int enable);
151 struct hsi_client *cl; member
228 struct ssi_protocol *ssi = hsi_client_drvdata(msg->cl); in ssip_release_cmd()
230 dev_dbg(&msg->cl->device, "Release cmd 0x%08x\n", ssip_get_cmd(msg)); in ssip_release_cmd()
342 if (slave->device.parent == ssi->cl->device.parent) { in ssip_slave_get_master()
343 master = ssi->cl; in ssip_slave_get_master()
396 static void ssip_reset(struct hsi_client *cl) in ssip_reset() argument
398 struct ssi_protocol *ssi = hsi_client_drvdata(cl); in ssip_reset()
404 hsi_flush(cl); in ssip_reset()
407 hsi_stop_tx(cl); in ssip_reset()
[all …]
Dhsi_char.c98 struct hsi_client *cl; member
118 struct hsi_client *cl; member
240 struct hsc_client_data *cl_data = hsi_client_drvdata(msg->cl); in hsc_rx_completed()
260 struct hsc_client_data *cl_data = hsi_client_drvdata(msg->cl); in hsc_tx_completed()
280 struct hsc_client_data *cl_data = hsi_client_drvdata(msg->cl); in hsc_break_req_destructor()
288 struct hsc_client_data *cl_data = hsi_client_drvdata(msg->cl); in hsc_break_received()
307 hsi_flush(msg->cl); in hsc_break_received()
308 ret = hsi_async_read(msg->cl, msg); in hsc_break_received()
313 static int hsc_break_request(struct hsi_client *cl) in hsc_break_request() argument
315 struct hsc_client_data *cl_data = hsi_client_drvdata(cl); in hsc_break_request()
[all …]
Dcmt_speech.c51 struct hsi_client *cl; member
93 struct hsi_client *cl; member
157 dev_err(&cs_char_data.cl->device, in cs_notify()
201 dev_dbg(&cs_char_data.cl->device, "data notification " in cs_notify_data()
235 dev_dbg(&cs_char_data.cl->device, "control cmd destructor\n"); in cs_cmd_destructor()
238 dev_err(&hi->cl->device, "Cmd flushed while driver active\n"); in cs_cmd_destructor()
312 dev_dbg(&cs_char_data.cl->device, "Freeing data %s message\n", dir); in cs_hsi_data_destructor()
316 dev_err(&cs_char_data.cl->device, in cs_hsi_data_destructor()
383 dev_err(&hi->cl->device, "HSI %s error, msg %d, state %u\n", in __cs_hsi_error_pre()
446 dev_err(&hi->cl->device, "Control RX error detected\n"); in cs_hsi_read_on_control_complete()
[all …]
Dnokia-modem.c149 struct hsi_client *cl = to_hsi_client(dev); in nokia_modem_probe() local
150 struct hsi_port *port = hsi_get_port(cl); in nokia_modem_probe()
197 ssip.tx_cfg = cl->tx_cfg; in nokia_modem_probe()
198 ssip.rx_cfg = cl->rx_cfg; in nokia_modem_probe()
220 cmtspeech.tx_cfg = cl->tx_cfg; in nokia_modem_probe()
221 cmtspeech.rx_cfg = cl->rx_cfg; in nokia_modem_probe()
/linux-4.1.27/arch/sh/kernel/
Dprocess_64.c40 unsigned long long ah, al, bh, bl, ch, cl; in show_regs() local
50 cl = (regs->regs[15]) & 0xffffffff; in show_regs()
52 ah, al, bh, bl, ch, cl); in show_regs()
61 asm volatile ("getcon " __KCR0 ", %0" : "=r" (cl)); in show_regs()
63 cl = (cl) & 0xffffffff; in show_regs()
65 ah, al, bh, bl, ch, cl); in show_regs()
72 cl = (regs->regs[2]) & 0xffffffff; in show_regs()
74 ah, al, bh, bl, ch, cl); in show_regs()
81 cl = (regs->regs[5]) & 0xffffffff; in show_regs()
83 ah, al, bh, bl, ch, cl); in show_regs()
[all …]
/linux-4.1.27/drivers/clk/
Dclkdev.c137 struct clk_lookup *p, *cl = NULL; in clk_find() local
159 cl = p; in clk_find()
166 return cl; in clk_find()
171 struct clk_lookup *cl; in clk_get_sys() local
176 cl = clk_find(dev_id, con_id); in clk_get_sys()
177 if (!cl) in clk_get_sys()
180 clk = __clk_create_clk(__clk_get_hw(cl->clk), dev_id, con_id); in clk_get_sys()
186 cl = NULL; in clk_get_sys()
193 return cl ? clk : ERR_PTR(-ENOENT); in clk_get_sys()
218 void clkdev_add(struct clk_lookup *cl) in clkdev_add() argument
[all …]
/linux-4.1.27/arch/openrisc/kernel/
Ddma.c35 unsigned long cl; in page_set_nocache() local
46 for (cl = __pa(addr); cl < __pa(next); cl += cpuinfo.dcache_block_size) in page_set_nocache()
47 mtspr(SPR_DCBFR, cl); in page_set_nocache()
142 unsigned long cl; in or1k_map_page() local
148 for (cl = addr; cl < addr + size; in or1k_map_page()
149 cl += cpuinfo.dcache_block_size) in or1k_map_page()
150 mtspr(SPR_DCBFR, cl); in or1k_map_page()
154 for (cl = addr; cl < addr + size; in or1k_map_page()
155 cl += cpuinfo.dcache_block_size) in or1k_map_page()
156 mtspr(SPR_DCBIR, cl); in or1k_map_page()
[all …]
/linux-4.1.27/drivers/gpu/drm/bridge/
Dps8622.c102 struct i2c_client *cl = ps8622->client; in ps8622_send_config() local
106 err = ps8622_set(cl, 0x02, 0xa1, 0x01); in ps8622_send_config()
111 err = ps8622_set(cl, 0x04, 0x14, 0x01); in ps8622_send_config()
116 err = ps8622_set(cl, 0x04, 0xe3, 0x20); in ps8622_send_config()
121 err = ps8622_set(cl, 0x04, 0xe2, 0x80); in ps8622_send_config()
129 err = ps8622_set(cl, 0x04, 0x8a, 0x0c); in ps8622_send_config()
134 err = ps8622_set(cl, 0x04, 0x89, 0x08); in ps8622_send_config()
139 err = ps8622_set(cl, 0x04, 0x71, 0x2d); in ps8622_send_config()
144 err = ps8622_set(cl, 0x04, 0x7d, 0x07); in ps8622_send_config()
149 err = ps8622_set(cl, 0x04, 0x7b, 0x00); in ps8622_send_config()
[all …]
/linux-4.1.27/arch/x86/math-emu/
Dwm_shrx.S49 shrd %cl,%ebx,%eax
50 shrd %cl,%edx,%ebx
51 shr %cl,%edx
63 subb $32,%cl
66 shrd %cl,%edx,%eax
67 shr %cl,%edx
78 subb $64,%cl
80 shr %cl,%eax
129 subb $32,%cl
133 shrd %cl,%eax,%ebx
[all …]
Dshr_Xsig.S38 shrd %cl,%ebx,%eax
39 shrd %cl,%edx,%ebx
40 shr %cl,%edx
53 subb $32,%cl
56 shrd %cl,%edx,%eax
57 shr %cl,%edx
69 subb $64,%cl
71 shr %cl,%eax
Dreg_u_sub.S82 shrd %cl,%ebx,%edx
83 shrd %cl,%eax,%ebx
84 shr %cl,%eax
91 subb $32,%cl
94 shrd %cl,%eax,%edx
95 shr %cl,%eax
222 shld %cl,%ebx,%eax
223 shld %cl,%edx,%ebx
224 shl %cl,%edx
Dround_Xsig.S55 shld %cl,%ebx,%edx
56 shld %cl,%eax,%ebx
57 shl %cl,%eax
126 shld %cl,%ebx,%edx
127 shld %cl,%eax,%ebx
128 shl %cl,%eax
Dreg_u_add.S82 shrd %cl,%ebx,%edx
83 shrd %cl,%eax,%ebx
84 shr %cl,%eax
91 subb $32,%cl
94 shrd %cl,%eax,%edx
95 shr %cl,%eax
Dreg_round.S475 testb CW_Underflow,%cl /* Underflow mask. */
499 shrd %cl,%ebx,%edx
500 shrd %cl,%eax,%ebx
501 shr %cl,%eax
509 subb $32,%cl
514 shrd %cl,%ebx,%edx
515 shrd %cl,%eax,%ebx
516 shr %cl,%eax
518 setne %cl
520 orb %cl,%bl
[all …]
Dreg_norm.S50 shld %cl,%eax,%edx
51 shl %cl,%eax
127 shld %cl,%eax,%edx
128 shl %cl,%eax
/linux-4.1.27/drivers/staging/iio/addac/
Dadt7316-i2c.c23 struct i2c_client *cl = client; in adt7316_i2c_read() local
26 ret = i2c_smbus_write_byte(cl, reg); in adt7316_i2c_read()
28 dev_err(&cl->dev, "I2C fail to select reg\n"); in adt7316_i2c_read()
34 dev_err(&cl->dev, "I2C read error\n"); in adt7316_i2c_read()
43 struct i2c_client *cl = client; in adt7316_i2c_write() local
46 ret = i2c_smbus_write_byte_data(cl, reg, data); in adt7316_i2c_write()
48 dev_err(&cl->dev, "I2C write error\n"); in adt7316_i2c_write()
55 struct i2c_client *cl = client; in adt7316_i2c_multi_read() local
62 ret = adt7316_i2c_read(cl, reg, &data[i]); in adt7316_i2c_multi_read()
64 dev_err(&cl->dev, "I2C multi read error\n"); in adt7316_i2c_multi_read()
[all …]
/linux-4.1.27/drivers/mailbox/
Dmailbox.c79 if (chan->cl->tx_prepare) in msg_submit()
80 chan->cl->tx_prepare(chan->cl, data); in msg_submit()
108 if (mssg && chan->cl->tx_done) in tx_tick()
109 chan->cl->tx_done(chan->cl, mssg, r); in tx_tick()
111 if (chan->cl->tx_block) in tx_tick()
124 if (chan->active_req && chan->cl) { in poll_txdone()
151 if (chan->cl->rx_callback) in mbox_chan_received_data()
152 chan->cl->rx_callback(chan->cl, mssg); in mbox_chan_received_data()
250 if (!chan || !chan->cl) in mbox_send_message()
261 if (chan->cl->tx_block && chan->active_req) { in mbox_send_message()
[all …]
Dpcc.c109 struct mbox_chan *pcc_mbox_request_channel(struct mbox_client *cl, in pcc_mbox_request_channel() argument
125 if (!chan || chan->cl) { in pcc_mbox_request_channel()
134 chan->cl = cl; in pcc_mbox_request_channel()
137 if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone) in pcc_mbox_request_channel()
156 if (!chan || !chan->cl) in pcc_mbox_free_channel()
160 chan->cl = NULL; in pcc_mbox_free_channel()
Domap-mailbox.c457 struct mbox_chan *omap_mbox_request_channel(struct mbox_client *cl, in omap_mbox_request_channel() argument
460 struct device *dev = cl->dev; in omap_mbox_request_channel()
492 chan->cl = cl; in omap_mbox_request_channel()
/linux-4.1.27/Documentation/
Dmailbox.txt41 struct mbox_client cl;
52 static void message_from_remote(struct mbox_client *cl, void *mssg)
55 struct demo_client, cl);
69 static void sample_sent(struct mbox_client *cl, void *mssg, int r)
72 struct demo_client, cl);
87 dc_async->cl.dev = &pdev->dev;
88 dc_async->cl.rx_callback = message_from_remote;
89 dc_async->cl.tx_done = sample_sent;
90 dc_async->cl.tx_block = false;
91 dc_async->cl.tx_tout = 0; /* doesn't matter here */
[all …]
/linux-4.1.27/net/bluetooth/cmtp/
Dsock.c70 struct cmtp_connlist_req cl; in cmtp_sock_ioctl() local
114 if (copy_from_user(&cl, argp, sizeof(cl))) in cmtp_sock_ioctl()
117 if (cl.cnum <= 0) in cmtp_sock_ioctl()
120 err = cmtp_get_connlist(&cl); in cmtp_sock_ioctl()
121 if (!err && copy_to_user(argp, &cl, sizeof(cl))) in cmtp_sock_ioctl()
144 struct cmtp_connlist_req cl; in cmtp_sock_compat_ioctl() local
148 if (get_user(cl.cnum, (u32 __user *) arg) || in cmtp_sock_compat_ioctl()
152 cl.ci = compat_ptr(uci); in cmtp_sock_compat_ioctl()
154 if (cl.cnum <= 0) in cmtp_sock_compat_ioctl()
157 err = cmtp_get_connlist(&cl); in cmtp_sock_compat_ioctl()
[all …]
/linux-4.1.27/net/bluetooth/bnep/
Dsock.c54 struct bnep_connlist_req cl; in bnep_sock_ioctl() local
102 if (copy_from_user(&cl, argp, sizeof(cl))) in bnep_sock_ioctl()
105 if (cl.cnum <= 0) in bnep_sock_ioctl()
108 err = bnep_get_connlist(&cl); in bnep_sock_ioctl()
109 if (!err && copy_to_user(argp, &cl, sizeof(cl))) in bnep_sock_ioctl()
141 struct bnep_connlist_req cl; in bnep_sock_compat_ioctl() local
145 if (get_user(cl.cnum, (u32 __user *) arg) || in bnep_sock_compat_ioctl()
149 cl.ci = compat_ptr(uci); in bnep_sock_compat_ioctl()
151 if (cl.cnum <= 0) in bnep_sock_compat_ioctl()
154 err = bnep_get_connlist(&cl); in bnep_sock_compat_ioctl()
[all …]
/linux-4.1.27/arch/mips/lantiq/xway/
Dsysctrl.c210 clk->cl.dev_id = dev; in clkdev_add_pmu()
211 clk->cl.con_id = con; in clkdev_add_pmu()
212 clk->cl.clk = clk; in clkdev_add_pmu()
217 clkdev_add(&clk->cl); in clkdev_add_pmu()
226 clk->cl.dev_id = dev; in clkdev_add_cgu()
227 clk->cl.con_id = con; in clkdev_add_cgu()
228 clk->cl.clk = clk; in clkdev_add_cgu()
232 clkdev_add(&clk->cl); in clkdev_add_cgu()
244 clk->cl.dev_id = "17000000.pci"; in clkdev_add_pci()
245 clk->cl.con_id = NULL; in clkdev_add_pci()
[all …]
Dgptu.c127 clk->cl.dev_id = dev_name(dev); in clkdev_add_gptu()
128 clk->cl.con_id = con; in clkdev_add_gptu()
129 clk->cl.clk = clk; in clkdev_add_gptu()
133 clkdev_add(&clk->cl); in clkdev_add_gptu()
/linux-4.1.27/fs/dlm/
Dconfig.c133 static ssize_t cluster_cluster_name_read(struct dlm_cluster *cl, char *buf) in cluster_cluster_name_read() argument
135 return sprintf(buf, "%s\n", cl->cl_cluster_name); in cluster_cluster_name_read()
138 static ssize_t cluster_cluster_name_write(struct dlm_cluster *cl, in cluster_cluster_name_write() argument
143 strlcpy(cl->cl_cluster_name, buf, sizeof(cl->cl_cluster_name)); in cluster_cluster_name_write()
155 static ssize_t cluster_set(struct dlm_cluster *cl, unsigned int *cl_field, in cluster_set() argument
178 static ssize_t name##_write(struct dlm_cluster *cl, const char *buf, size_t len) \
180 return cluster_set(cl, &cl->cl_##name, &dlm_config.ci_##name, \
183 static ssize_t name##_read(struct dlm_cluster *cl, char *buf) \
185 return snprintf(buf, PAGE_SIZE, "%u\n", cl->cl_##name); \
455 struct dlm_cluster *cl = NULL; in make_cluster() local
[all …]
/linux-4.1.27/drivers/macintosh/
Dtherm_windtunnel.c120 write_reg( struct i2c_client *cl, int reg, int data, int len ) in write_reg() argument
132 if( i2c_master_send(cl, tmp, len) != len ) in write_reg()
138 read_reg( struct i2c_client *cl, int reg, int len ) in read_reg() argument
145 if( i2c_master_send(cl, buf, 1) != 1 ) in read_reg()
147 if( i2c_master_recv(cl, buf, len) != len ) in read_reg()
356 attach_fan( struct i2c_client *cl ) in attach_fan() argument
362 if( read_reg(cl, 0x3d, 1) != 0x30 || read_reg(cl, 0x3e, 1) != 0x41 ) in attach_fan()
364 printk("ADM1030 fan controller [@%02x]\n", cl->addr ); in attach_fan()
366 x.fan = cl; in attach_fan()
372 attach_thermostat( struct i2c_client *cl ) in attach_thermostat() argument
[all …]
/linux-4.1.27/include/net/
Dpkt_cls.h21 __cls_set_class(unsigned long *clp, unsigned long cl) in __cls_set_class() argument
23 return xchg(clp, cl); in __cls_set_class()
28 unsigned long cl) in cls_set_class() argument
33 old_cl = __cls_set_class(clp, cl); in cls_set_class()
42 unsigned long cl; in tcf_bind_filter() local
44 cl = tp->q->ops->cl_ops->bind_tcf(tp->q, base, r->classid); in tcf_bind_filter()
45 cl = cls_set_class(tp, &r->class, cl); in tcf_bind_filter()
46 if (cl) in tcf_bind_filter()
47 tp->q->ops->cl_ops->unbind_tcf(tp->q, cl); in tcf_bind_filter()
53 unsigned long cl; in tcf_unbind_filter() local
[all …]
Dsch_generic.h156 int (*graft)(struct Qdisc *, unsigned long cl,
158 struct Qdisc * (*leaf)(struct Qdisc *, unsigned long cl);
370 struct Qdisc_class_common *cl; in qdisc_class_find() local
374 hlist_for_each_entry(cl, &hash->hash[h], hnode) { in qdisc_class_find()
375 if (cl->classid == id) in qdisc_class_find()
376 return cl; in qdisc_class_find()
Dpkt_sched.h13 int (*fn)(struct Qdisc *, unsigned long cl, struct qdisc_walker *);
/linux-4.1.27/net/bluetooth/hidp/
Dsock.c54 struct hidp_connlist_req cl; in hidp_sock_ioctl() local
99 if (copy_from_user(&cl, argp, sizeof(cl))) in hidp_sock_ioctl()
102 if (cl.cnum <= 0) in hidp_sock_ioctl()
105 err = hidp_get_connlist(&cl); in hidp_sock_ioctl()
106 if (!err && copy_to_user(argp, &cl, sizeof(cl))) in hidp_sock_ioctl()
145 struct hidp_connlist_req cl; in hidp_sock_compat_ioctl() local
149 if (get_user(cl.cnum, (u32 __user *) arg) || in hidp_sock_compat_ioctl()
153 cl.ci = compat_ptr(uci); in hidp_sock_compat_ioctl()
155 if (cl.cnum <= 0) in hidp_sock_compat_ioctl()
158 err = hidp_get_connlist(&cl); in hidp_sock_compat_ioctl()
[all …]
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/fb/
Dnv50.c151 const struct nvkm_enum *en, *cl; in nv50_fb_intr() local
219 cl = nvkm_enum_find(vm_client, st2); in nv50_fb_intr()
220 if (cl) in nv50_fb_intr()
221 pr_cont("%s/", cl->name); in nv50_fb_intr()
225 if (cl && cl->data) cl = nvkm_enum_find(cl->data, st3); in nv50_fb_intr()
226 else if (en && en->data) cl = nvkm_enum_find(en->data, st3); in nv50_fb_intr()
227 else cl = NULL; in nv50_fb_intr()
228 if (cl) in nv50_fb_intr()
229 pr_cont("%s", cl->name); in nv50_fb_intr()
/linux-4.1.27/drivers/mfd/
Dlp8788.c173 static int lp8788_probe(struct i2c_client *cl, const struct i2c_device_id *id) in lp8788_probe() argument
176 struct lp8788_platform_data *pdata = dev_get_platdata(&cl->dev); in lp8788_probe()
179 lp = devm_kzalloc(&cl->dev, sizeof(struct lp8788), GFP_KERNEL); in lp8788_probe()
183 lp->regmap = devm_regmap_init_i2c(cl, &lp8788_regmap_config); in lp8788_probe()
186 dev_err(&cl->dev, "regmap init i2c err: %d\n", ret); in lp8788_probe()
191 lp->dev = &cl->dev; in lp8788_probe()
192 i2c_set_clientdata(cl, lp); in lp8788_probe()
198 ret = lp8788_irq_init(lp, cl->irq); in lp8788_probe()
206 static int lp8788_remove(struct i2c_client *cl) in lp8788_remove() argument
208 struct lp8788 *lp = i2c_get_clientdata(cl); in lp8788_remove()
Dlp3943.c108 static int lp3943_probe(struct i2c_client *cl, const struct i2c_device_id *id) in lp3943_probe() argument
111 struct device *dev = &cl->dev; in lp3943_probe()
117 lp3943->regmap = devm_regmap_init_i2c(cl, &lp3943_regmap_config); in lp3943_probe()
124 i2c_set_clientdata(cl, lp3943); in lp3943_probe()
130 static int lp3943_remove(struct i2c_client *cl) in lp3943_remove() argument
132 struct lp3943 *lp3943 = i2c_get_clientdata(cl); in lp3943_remove()
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-kernel-slab5 Christoph Lameter <cl@linux-foundation.org>
17 Christoph Lameter <cl@linux-foundation.org>
26 Christoph Lameter <cl@linux-foundation.org>
35 Christoph Lameter <cl@linux-foundation.org>
46 Christoph Lameter <cl@linux-foundation.org>
57 Christoph Lameter <cl@linux-foundation.org>
69 Christoph Lameter <cl@linux-foundation.org>
80 Christoph Lameter <cl@linux-foundation.org>
91 Christoph Lameter <cl@linux-foundation.org>
103 Christoph Lameter <cl@linux-foundation.org>
[all …]
/linux-4.1.27/drivers/hsi/controllers/
Domap_ssi_port.c38 static inline int hsi_dummy_cl(struct hsi_client *cl __maybe_unused) in hsi_dummy_cl()
197 struct hsi_port *port = hsi_get_port(msg->cl); in ssi_claim_lch()
214 struct hsi_port *port = hsi_get_port(msg->cl); in ssi_start_dma()
285 struct hsi_port *port = hsi_get_port(msg->cl); in ssi_start_pio()
330 struct hsi_port *port = hsi_get_port(msg->cl); in ssi_async_break()
368 struct hsi_port *port = hsi_get_port(msg->cl); in ssi_async()
419 static void ssi_flush_queue(struct list_head *queue, struct hsi_client *cl) in ssi_flush_queue() argument
426 if ((cl) && (cl != msg->cl)) in ssi_flush_queue()
439 static int ssi_setup(struct hsi_client *cl) in ssi_setup() argument
441 struct hsi_port *port = to_hsi_port(cl->device.parent); in ssi_setup()
[all …]
Domap_ssi.c181 void ssi_waketest(struct hsi_client *cl, unsigned int enable) in ssi_waketest() argument
183 struct hsi_port *port = hsi_get_port(cl); in ssi_waketest()
205 struct hsi_port *port = to_hsi_port(msg->cl->device.parent); in ssi_gdd_complete()
/linux-4.1.27/Documentation/misc-devices/mei/
Dmei-amt-version.c101 static void mei_deinit(struct mei *cl) in mei_deinit() argument
103 if (cl->fd != -1) in mei_deinit()
104 close(cl->fd); in mei_deinit()
105 cl->fd = -1; in mei_deinit()
106 cl->buf_size = 0; in mei_deinit()
107 cl->prot_ver = 0; in mei_deinit()
108 cl->initialized = false; in mei_deinit()
115 struct mei_client *cl; in mei_init() local
135 cl = &data.out_client_properties; in mei_init()
136 mei_msg(me, "max_message_length %d\n", cl->max_msg_length); in mei_init()
[all …]
/linux-4.1.27/include/linux/
Dmailbox_client.h38 void (*rx_callback)(struct mbox_client *cl, void *mssg);
39 void (*tx_prepare)(struct mbox_client *cl, void *mssg);
40 void (*tx_done)(struct mbox_client *cl, void *mssg, int r);
43 struct mbox_chan *mbox_request_channel(struct mbox_client *cl, int index);
Dclkdev.h37 void clkdev_add(struct clk_lookup *cl);
38 void clkdev_drop(struct clk_lookup *cl);
Dusb.h874 #define USB_DEVICE_INTERFACE_CLASS(vend, prod, cl) \ argument
879 .bInterfaceClass = (cl)
922 #define USB_DEVICE_INFO(cl, sc, pr) \ argument
924 .bDeviceClass = (cl), \
937 #define USB_INTERFACE_INFO(cl, sc, pr) \ argument
939 .bInterfaceClass = (cl), \
957 #define USB_DEVICE_AND_INTERFACE_INFO(vend, prod, cl, sc, pr) \ argument
962 .bInterfaceClass = (cl), \
979 #define USB_VENDOR_AND_INTERFACE_INFO(vend, cl, sc, pr) \ argument
983 .bInterfaceClass = (cl), \
Domap-mailbox.h21 struct mbox_chan *omap_mbox_request_channel(struct mbox_client *cl,
Dmailbox_controller.h119 struct mbox_client *cl; member
/linux-4.1.27/net/bluetooth/
Da2mp.c98 static void __a2mp_add_cl(struct amp_mgr *mgr, struct a2mp_cl *cl) in __a2mp_add_cl() argument
103 cl[0].id = AMP_ID_BREDR; in __a2mp_add_cl()
104 cl[0].type = AMP_TYPE_BREDR; in __a2mp_add_cl()
105 cl[0].status = AMP_STATUS_BLUETOOTH_ONLY; in __a2mp_add_cl()
109 cl[i].id = hdev->id; in __a2mp_add_cl()
110 cl[i].type = hdev->amp_type; in __a2mp_add_cl()
112 cl[i].status = hdev->amp_status; in __a2mp_add_cl()
114 cl[i].status = AMP_STATUS_POWERED_DOWN; in __a2mp_add_cl()
186 __a2mp_add_cl(mgr, rsp->cl); in a2mp_discover_req()
201 struct a2mp_cl *cl; in a2mp_discover_rsp() local
[all …]
Dhci_conn.c1200 struct hci_conn_list_req req, *cl; in hci_get_conn_list() local
1213 cl = kmalloc(size, GFP_KERNEL); in hci_get_conn_list()
1214 if (!cl) in hci_get_conn_list()
1219 kfree(cl); in hci_get_conn_list()
1223 ci = cl->conn_info; in hci_get_conn_list()
1238 cl->dev_id = hdev->id; in hci_get_conn_list()
1239 cl->conn_num = n; in hci_get_conn_list()
1244 err = copy_to_user(arg, cl, size); in hci_get_conn_list()
1245 kfree(cl); in hci_get_conn_list()
Da2mp.h72 struct a2mp_cl cl[0]; member
/linux-4.1.27/fs/nls/
Dnls_cp932.c7841 unsigned char cl = uni&0xFF; in uni2char() local
7847 if (ch == 0xFF && 0x61 <= cl && cl <= 0x9F) { in uni2char()
7848 out[0] = cl + 0x40; in uni2char()
7856 out[0] = uni2charset[cl*2]; in uni2char()
7857 out[1] = uni2charset[cl*2+1]; in uni2char()
7862 if (cl <= 0x7F) { in uni2char()
7863 out[0] = cl; in uni2char()
7865 } else if (0xA0 <= cl) { in uni2char()
7866 out[0] = u2c_00hi[cl - 0xA0][0]; in uni2char()
7867 out[1] = u2c_00hi[cl - 0xA0][1]; in uni2char()
[all …]
Dnls_ascii.c123 unsigned char cl = uni & 0x00ff; in uni2char() local
130 if (uni2charset && uni2charset[cl]) in uni2char()
131 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-9.c229 unsigned char cl = uni & 0x00ff; in uni2char() local
236 if (uni2charset && uni2charset[cl]) in uni2char()
237 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-6.c220 unsigned char cl = uni & 0x00ff; in uni2char() local
227 if (uni2charset && uni2charset[cl]) in uni2char()
228 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-1.c214 unsigned char cl = uni & 0x00ff; in uni2char() local
221 if (uni2charset && uni2charset[cl]) in uni2char()
222 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-3.c265 unsigned char cl = uni & 0x00ff; in uni2char() local
272 if (uni2charset && uni2charset[cl]) in uni2char()
273 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-2.c265 unsigned char cl = uni & 0x00ff; in uni2char() local
272 if (uni2charset && uni2charset[cl]) in uni2char()
273 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-4.c265 unsigned char cl = uni & 0x00ff; in uni2char() local
272 if (uni2charset && uni2charset[cl]) in uni2char()
273 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp855.c256 unsigned char cl = uni & 0x00ff; in uni2char() local
263 if (uni2charset && uni2charset[cl]) in uni2char()
264 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp861.c344 unsigned char cl = uni & 0x00ff; in uni2char() local
351 if (uni2charset && uni2charset[cl]) in uni2char()
352 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp737.c307 unsigned char cl = uni & 0x00ff; in uni2char() local
314 if (uni2charset && uni2charset[cl]) in uni2char()
315 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp1251.c258 unsigned char cl = uni & 0x00ff; in uni2char() local
265 if (uni2charset && uni2charset[cl]) in uni2char()
266 out[0] = uni2charset[cl]; in uni2char()
Dnls_koi8-u.c287 unsigned char cl = uni & 0x00ff; in uni2char() local
294 if (uni2charset && uni2charset[cl]) in uni2char()
295 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp852.c294 unsigned char cl = uni & 0x00ff; in uni2char() local
301 if (uni2charset && uni2charset[cl]) in uni2char()
302 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp1250.c304 unsigned char cl = uni & 0x00ff; in uni2char() local
311 if (uni2charset && uni2charset[cl]) in uni2char()
312 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp865.c344 unsigned char cl = uni & 0x00ff; in uni2char() local
351 if (uni2charset && uni2charset[cl]) in uni2char()
352 out[0] = uni2charset[cl]; in uni2char()
Dnls_koi8-r.c280 unsigned char cl = uni & 0x00ff; in uni2char() local
287 if (uni2charset && uni2charset[cl]) in uni2char()
288 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-7.c274 unsigned char cl = uni & 0x00ff; in uni2char() local
281 if (uni2charset && uni2charset[cl]) in uni2char()
282 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp874.c230 unsigned char cl = uni & 0x00ff; in uni2char() local
237 if (uni2charset && uni2charset[cl]) in uni2char()
238 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp850.c272 unsigned char cl = uni & 0x00ff; in uni2char() local
279 if (uni2charset && uni2charset[cl]) in uni2char()
280 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-5.c229 unsigned char cl = uni & 0x00ff; in uni2char() local
236 if (uni2charset && uni2charset[cl]) in uni2char()
237 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp1255.c339 unsigned char cl = uni & 0x00ff; in uni2char() local
346 if (uni2charset && uni2charset[cl]) in uni2char()
347 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp862.c378 unsigned char cl = uni & 0x00ff; in uni2char() local
385 if (uni2charset && uni2charset[cl]) in uni2char()
386 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp857.c258 unsigned char cl = uni & 0x00ff; in uni2char() local
265 if (uni2charset && uni2charset[cl]) in uni2char()
266 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp860.c321 unsigned char cl = uni & 0x00ff; in uni2char() local
328 if (uni2charset && uni2charset[cl]) in uni2char()
329 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-13.c242 unsigned char cl = uni & 0x00ff; in uni2char() local
249 if (uni2charset && uni2charset[cl]) in uni2char()
250 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp437.c344 unsigned char cl = uni & 0x00ff; in uni2char() local
351 if (uni2charset && uni2charset[cl]) in uni2char()
352 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp866.c262 unsigned char cl = uni & 0x00ff; in uni2char() local
269 if (uni2charset && uni2charset[cl]) in uni2char()
270 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp863.c338 unsigned char cl = uni & 0x00ff; in uni2char() local
345 if (uni2charset && uni2charset[cl]) in uni2char()
346 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp869.c272 unsigned char cl = uni & 0x00ff; in uni2char() local
279 if (uni2charset && uni2charset[cl]) in uni2char()
280 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp775.c276 unsigned char cl = uni & 0x00ff; in uni2char() local
283 if (uni2charset && uni2charset[cl]) in uni2char()
284 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-14.c298 unsigned char cl = uni & 0x00ff; in uni2char() local
305 if (uni2charset && uni2charset[cl]) in uni2char()
306 out[0] = uni2charset[cl]; in uni2char()
Dnls_iso8859-15.c264 unsigned char cl = uni & 0x00ff; in uni2char() local
271 if (uni2charset && uni2charset[cl]) in uni2char()
272 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp936.c11004 unsigned char cl = uni&0xFF; in uni2char() local
11018 out0 = u2c_00[cl*2]; in uni2char()
11019 out1 = u2c_00[cl*2+1]; in uni2char()
11021 if (cl<0x80) { in uni2char()
11022 out[0] = cl; in uni2char()
11039 out[0] = uni2charset[cl*2]; in uni2char()
11040 out[1] = uni2charset[cl*2+1]; in uni2char()
11052 unsigned char ch, cl; in char2uni() local
11069 cl = rawstring[1]; in char2uni()
11072 if (charset2uni && cl) { in char2uni()
[all …]
Dnls_cp950.c9401 unsigned char cl = uni&0xFF; in uni2char() local
9413 out[0] = uni2charset[cl*2]; in uni2char()
9414 out[1] = uni2charset[cl*2+1]; in uni2char()
9418 } else if (ch==0 && cl) { in uni2char()
9419 out[0] = cl; in uni2char()
9431 unsigned char ch, cl; in char2uni() local
9444 cl = rawstring[1]; in char2uni()
9447 if (charset2uni && cl) { in char2uni()
9448 *uni = charset2uni[cl]; in char2uni()
Dnls_cp949.c13865 unsigned char cl = uni&0xFF; in uni2char() local
13877 out[0] = uni2charset[cl*2]; in uni2char()
13878 out[1] = uni2charset[cl*2+1]; in uni2char()
13882 } else if (ch==0 && cl) { in uni2char()
13883 out[0] = cl; in uni2char()
13895 unsigned char ch, cl; in char2uni() local
13908 cl = rawstring[1]; in char2uni()
13911 if (charset2uni && cl) { in char2uni()
13912 *uni = charset2uni[cl]; in char2uni()
Dmac-croatian.c558 unsigned char cl = uni & 0x00ff; in uni2char() local
565 if (uni2charset && uni2charset[cl]) in uni2char()
566 out[0] = uni2charset[cl]; in uni2char()
Dmac-cyrillic.c453 unsigned char cl = uni & 0x00ff; in uni2char() local
460 if (uni2charset && uni2charset[cl]) in uni2char()
461 out[0] = uni2charset[cl]; in uni2char()
Dnls_cp864.c364 unsigned char cl = uni & 0x00ff; in uni2char() local
371 if (uni2charset && uni2charset[cl]) in uni2char()
372 out[0] = uni2charset[cl]; in uni2char()
Dmac-greek.c453 unsigned char cl = uni & 0x00ff; in uni2char() local
460 if (uni2charset && uni2charset[cl]) in uni2char()
461 out[0] = uni2charset[cl]; in uni2char()
Dmac-roman.c593 unsigned char cl = uni & 0x00ff; in uni2char() local
600 if (uni2charset && uni2charset[cl]) in uni2char()
601 out[0] = uni2charset[cl]; in uni2char()
Dmac-inuit.c488 unsigned char cl = uni & 0x00ff; in uni2char() local
495 if (uni2charset && uni2charset[cl]) in uni2char()
496 out[0] = uni2charset[cl]; in uni2char()
Dmac-romanian.c558 unsigned char cl = uni & 0x00ff; in uni2char() local
565 if (uni2charset && uni2charset[cl]) in uni2char()
566 out[0] = uni2charset[cl]; in uni2char()
Dmac-iceland.c558 unsigned char cl = uni & 0x00ff; in uni2char() local
565 if (uni2charset && uni2charset[cl]) in uni2char()
566 out[0] = uni2charset[cl]; in uni2char()
Dmac-celtic.c558 unsigned char cl = uni & 0x00ff; in uni2char() local
565 if (uni2charset && uni2charset[cl]) in uni2char()
566 out[0] = uni2charset[cl]; in uni2char()
Dmac-centeuro.c488 unsigned char cl = uni & 0x00ff; in uni2char() local
495 if (uni2charset && uni2charset[cl]) in uni2char()
496 out[0] = uni2charset[cl]; in uni2char()
Dmac-gaelic.c523 unsigned char cl = uni & 0x00ff; in uni2char() local
530 if (uni2charset && uni2charset[cl]) in uni2char()
531 out[0] = uni2charset[cl]; in uni2char()
Dmac-turkish.c558 unsigned char cl = uni & 0x00ff; in uni2char() local
565 if (uni2charset && uni2charset[cl]) in uni2char()
566 out[0] = uni2charset[cl]; in uni2char()
Dnls_base.c501 unsigned char cl = uni & 0x00ff; in uni2char() local
508 if (uni2charset && uni2charset[cl]) in uni2char()
509 out[0] = uni2charset[cl]; in uni2char()
Dnls_euc-jp.c439 unsigned char ch, cl; in uni2char() local
444 n = 3; ch = out[0]; cl = out[1]; in uni2char()
446 MAP_SJIS2EUC(ch, cl, 0xF5, out[1], out[2], 0xF5); in uni2char()
/linux-4.1.27/arch/mips/ralink/
Dclk.c20 struct clk_lookup cl; member
31 clk->cl.dev_id = dev; in ralink_clk_add()
32 clk->cl.clk = clk; in ralink_clk_add()
36 clkdev_add(&clk->cl); in ralink_clk_add()
/linux-4.1.27/fs/ocfs2/
Dsuballoc.c84 static inline u16 ocfs2_find_victim_chain(struct ocfs2_chain_list *cl);
91 struct ocfs2_chain_list *cl);
164 static u32 ocfs2_bits_per_group(struct ocfs2_chain_list *cl) in ocfs2_bits_per_group() argument
166 return (u32)le16_to_cpu(cl->cl_cpg) * (u32)le16_to_cpu(cl->cl_bpc); in ocfs2_bits_per_group()
353 struct ocfs2_chain_list *cl, in ocfs2_bg_discontig_add_extent() argument
365 le16_to_cpu(cl->cl_bpc)); in ocfs2_bg_discontig_add_extent()
367 le16_add_cpu(&bg->bg_bits, clusters * le16_to_cpu(cl->cl_bpc)); in ocfs2_bg_discontig_add_extent()
369 clusters * le16_to_cpu(cl->cl_bpc)); in ocfs2_bg_discontig_add_extent()
379 struct ocfs2_chain_list *cl) in ocfs2_block_group_fill() argument
410 bg->bg_next_group = cl->cl_recs[my_chain].c_blkno; in ocfs2_block_group_fill()
[all …]
Dresize.c96 struct ocfs2_chain_list *cl = &fe->id2.i_chain; in ocfs2_update_last_group_and_inode() local
100 u16 cl_bpc = le16_to_cpu(cl->cl_bpc); in ocfs2_update_last_group_and_inode()
101 u16 cl_cpg = le16_to_cpu(cl->cl_cpg); in ocfs2_update_last_group_and_inode()
143 cr = (&cl->cl_recs[chain]); in ocfs2_update_last_group_and_inode()
463 struct ocfs2_chain_list *cl; in ocfs2_group_add() local
525 cl = &fe->id2.i_chain; in ocfs2_group_add()
526 cr = &cl->cl_recs[input->chain]; in ocfs2_group_add()
548 if (input->chain == le16_to_cpu(cl->cl_next_free_rec)) { in ocfs2_group_add()
549 le16_add_cpu(&cl->cl_next_free_rec, 1); in ocfs2_group_add()
Dioctl.c545 struct ocfs2_chain_list *cl = NULL; in ocfs2_info_freefrag_scan_bitmap() local
568 cl = &(gb_dinode->id2.i_chain); in ocfs2_info_freefrag_scan_bitmap()
574 if (ffg->iff_chunksize > le16_to_cpu(cl->cl_cpg)) { in ocfs2_info_freefrag_scan_bitmap()
587 chunks_in_group = le16_to_cpu(cl->cl_cpg) / ffg->iff_chunksize + 1; in ocfs2_info_freefrag_scan_bitmap()
589 for (i = 0; i < le16_to_cpu(cl->cl_next_free_rec); i++) { in ocfs2_info_freefrag_scan_bitmap()
590 rec = &(cl->cl_recs[i]); in ocfs2_info_freefrag_scan_bitmap()
Dmove_extents.c377 struct ocfs2_chain_list *cl; in ocfs2_find_victim_alloc_group() local
397 cl = &(ac_dinode->id2.i_chain); in ocfs2_find_victim_alloc_group()
398 rec = &(cl->cl_recs[0]); in ocfs2_find_victim_alloc_group()
413 for (i = 0; i < le16_to_cpu(cl->cl_next_free_rec); i++) { in ocfs2_find_victim_alloc_group()
415 rec = &(cl->cl_recs[i]); in ocfs2_find_victim_alloc_group()
/linux-4.1.27/net/netfilter/ipvs/
Dip_vs_wrr.c66 struct ip_vs_dest *cl; /* current dest or head */ member
122 mark->cl = list_entry(&svc->destinations, struct ip_vs_dest, n_list); in ip_vs_wrr_init_svc()
149 mark->cl = list_entry(&svc->destinations, struct ip_vs_dest, n_list); in ip_vs_wrr_dest_changed()
175 dest = mark->cl; in ip_vs_wrr_schedule()
223 mark->cl = dest; in ip_vs_wrr_schedule()
230 mark->cl = dest; in ip_vs_wrr_schedule()
236 mark->cl = dest; in ip_vs_wrr_schedule()
/linux-4.1.27/drivers/leds/
Dleds-lp55xx-common.c151 struct device *dev = &chip->cl->dev; in lp55xx_init_led()
182 pdata->label ? : chip->cl->name, chan); in lp55xx_init_led()
198 struct device *dev = &chip->cl->dev; in lp55xx_firmware_loaded()
223 const char *name = chip->cl->name; in lp55xx_request_firmware()
224 struct device *dev = &chip->cl->dev; in lp55xx_request_firmware()
323 return i2c_smbus_write_byte_data(chip->cl, reg, val); in lp55xx_write()
331 ret = i2c_smbus_read_byte_data(chip->cl, reg); in lp55xx_read()
361 clk = devm_clk_get(&chip->cl->dev, "32k_clk"); in lp55xx_is_extclk_used()
374 dev_info(&chip->cl->dev, "%dHz external clock used\n", LP55XX_CLK_32K); in lp55xx_is_extclk_used()
380 dev_info(&chip->cl->dev, "internal clock used\n"); in lp55xx_is_extclk_used()
[all …]
Dleds-lp5521.c269 dev_err(&chip->cl->dev, "wrong pattern format\n"); in lp5521_update_program_memory()
278 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n", in lp5521_firmware_loaded()
306 dev_err(&chip->cl->dev, "error in resetting chip\n"); in lp5521_post_init_device()
310 dev_err(&chip->cl->dev, in lp5521_post_init_device()
541 chip->cl = client; in lp5521_probe()
Dleds-lp8501.c251 dev_err(&chip->cl->dev, "wrong pattern format\n"); in lp8501_update_program_memory()
260 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n", in lp8501_firmware_loaded()
335 chip->cl = client; in lp8501_probe()
Dleds-lp5562.c258 dev_err(&chip->cl->dev, "wrong pattern format\n"); in lp5562_update_firmware()
267 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n", in lp5562_firmware_loaded()
366 dev_err(&chip->cl->dev, "invalid pattern data\n"); in lp5562_run_predef_led_pattern()
542 chip->cl = client; in lp5562_probe()
Dleds-lp5523.c320 dev_err(&chip->cl->dev, in lp5523_init_program_engine()
370 dev_err(&chip->cl->dev, "wrong pattern format\n"); in lp5523_update_program_memory()
379 dev_err(&chip->cl->dev, "firmware data size overflow: %zu\n", in lp5523_firmware_loaded()
759 chip->cl = client; in lp5523_probe()
Dleds-lp55xx-common.h150 struct i2c_client *cl; member
/linux-4.1.27/arch/s390/kernel/vdso32/
Dclock_gettime.S59 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
64 cl %r1,20f-6b(%r5)
83 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
93 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
122 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
127 cl %r1,20f-15b(%r5)
Dgettimeofday.S52 cl %r4,__VDSO_UPD_COUNT+4(%r5) /* check update counter */
60 cl %r1,11f-6b(%r5)
/linux-4.1.27/drivers/video/backlight/
Dlp855x_bl.c405 static int lp855x_probe(struct i2c_client *cl, const struct i2c_device_id *id) in lp855x_probe() argument
410 if (!i2c_check_functionality(cl->adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) in lp855x_probe()
413 lp = devm_kzalloc(&cl->dev, sizeof(struct lp855x), GFP_KERNEL); in lp855x_probe()
417 lp->client = cl; in lp855x_probe()
418 lp->dev = &cl->dev; in lp855x_probe()
421 lp->pdata = dev_get_platdata(&cl->dev); in lp855x_probe()
437 dev_err(&cl->dev, "failed to enable supply: %d\n", ret); in lp855x_probe()
442 i2c_set_clientdata(cl, lp); in lp855x_probe()
467 static int lp855x_remove(struct i2c_client *cl) in lp855x_remove() argument
469 struct lp855x *lp = i2c_get_clientdata(cl); in lp855x_remove()
/linux-4.1.27/tools/perf/util/
Dcallchain.c824 char *callchain_list__sym_name(struct callchain_list *cl, in callchain_list__sym_name() argument
829 if (cl->ms.sym) { in callchain_list__sym_name()
831 cl->ms.map && !cl->srcline) in callchain_list__sym_name()
832 cl->srcline = get_srcline(cl->ms.map->dso, in callchain_list__sym_name()
833 map__rip_2objdump(cl->ms.map, in callchain_list__sym_name()
834 cl->ip), in callchain_list__sym_name()
835 cl->ms.sym, false); in callchain_list__sym_name()
836 if (cl->srcline) in callchain_list__sym_name()
838 cl->ms.sym->name, cl->srcline); in callchain_list__sym_name()
840 printed = scnprintf(bf, bfsize, "%s", cl->ms.sym->name); in callchain_list__sym_name()
[all …]
Dcallchain.h199 char *callchain_list__sym_name(struct callchain_list *cl,
/linux-4.1.27/drivers/power/
Dlp8727_charger.c549 static int lp8727_probe(struct i2c_client *cl, const struct i2c_device_id *id) in lp8727_probe() argument
554 if (!i2c_check_functionality(cl->adapter, I2C_FUNC_SMBUS_I2C_BLOCK)) in lp8727_probe()
557 if (cl->dev.of_node) { in lp8727_probe()
558 ret = lp8727_parse_dt(&cl->dev); in lp8727_probe()
563 pchg = devm_kzalloc(&cl->dev, sizeof(*pchg), GFP_KERNEL); in lp8727_probe()
567 pchg->client = cl; in lp8727_probe()
568 pchg->dev = &cl->dev; in lp8727_probe()
569 pchg->pdata = cl->dev.platform_data; in lp8727_probe()
570 i2c_set_clientdata(cl, pchg); in lp8727_probe()
596 static int lp8727_remove(struct i2c_client *cl) in lp8727_remove() argument
[all …]
/linux-4.1.27/drivers/staging/lustre/lustre/lov/
Dlov_dev.c230 struct cl_device *cl; in lov_device_init() local
237 cl = cl_type_setup(env, d->ld_site, &lovsub_device_type, in lov_device_init()
239 if (IS_ERR(cl)) { in lov_device_init()
240 rc = PTR_ERR(cl); in lov_device_init()
243 lsd = cl2lovsub_dev(cl); in lov_device_init()
401 struct cl_device *cl; in lov_cl_add_target() local
419 cl = cl_type_setup(env, dev->ld_site, &lovsub_device_type, in lov_cl_add_target()
421 if (!IS_ERR(cl)) { in lov_cl_add_target()
422 lsd = cl2lovsub_dev(cl); in lov_cl_add_target()
430 rc = PTR_ERR(cl); in lov_cl_add_target()
/linux-4.1.27/drivers/media/pci/pt3/
Dpt3.c380 struct i2c_client *cl; in pt3_attach_fe() local
391 cl = i2c_new_device(&pt3->i2c_adap, &info); in pt3_attach_fe()
392 if (!cl || !cl->dev.driver) in pt3_attach_fe()
394 pt3->adaps[i]->i2c_demod = cl; in pt3_attach_fe()
395 if (!try_module_get(cl->dev.driver->owner)) in pt3_attach_fe()
398 if (!strncmp(cl->name, TC90522_I2C_DEV_SAT, sizeof(cl->name))) { in pt3_attach_fe()
406 cl = i2c_new_device(cfg.tuner_i2c, &info); in pt3_attach_fe()
415 cl = i2c_new_device(cfg.tuner_i2c, &info); in pt3_attach_fe()
417 if (!cl || !cl->dev.driver) in pt3_attach_fe()
419 pt3->adaps[i]->i2c_tuner = cl; in pt3_attach_fe()
[all …]
/linux-4.1.27/crypto/
Dvmac.c374 u64 ch, cl; in vhash_update() local
387 cl = ctx->polytmp[1]; in vhash_update()
393 ADD128(ch, cl, rh, rl); in vhash_update()
401 poly_step(ch, cl, pkh, pkl, rh, rl); in vhash_update()
406 ctx->polytmp[1] = cl; in vhash_update()
415 u64 ch, cl; in vhash() local
425 cl = ctx->polytmp[1]; in vhash()
427 nh_vmac_nhbytes(mptr, kptr, VMAC_NHBYTES/8, ch, cl); in vhash()
429 ADD128(ch, cl, pkh, pkl); in vhash()
433 nh_16(mptr, kptr, 2*((remaining+15)/16), ch, cl); in vhash()
[all …]
/linux-4.1.27/arch/x86/kernel/
Drelocate_kernel_64.S224 testb $0x1, %cl /* is it a destination page? */
230 testb $0x2, %cl /* is it an indirection page? */
236 testb $0x4, %cl /* is it the done indicator? */
240 testb $0x8, %cl /* is it the source indicator? */
Drelocate_kernel_32.S229 testb $0x1, %cl /* is it a destination page */
235 testb $0x2, %cl /* is it an indirection page */
241 testb $0x4, %cl /* is it the done indicator */
245 testb $0x8, %cl /* is it the source indicator */
Dhead_32.S437 movb %al,%cl # save reg for future use
443 andb $0x0f,%cl # mask mask revision
444 movb %cl,X86_MASK
528 movb %cl, 8 * GDT_ENTRY_STACK_CANARY + 4(%eax)
/linux-4.1.27/drivers/staging/lustre/lustre/llite/
Dvvp_dev.c200 struct cl_device *cl; in cl_sb_init() local
208 cl = cl_type_setup(env, NULL, &vvp_device_type, in cl_sb_init()
210 if (!IS_ERR(cl)) { in cl_sb_init()
211 cl2ccc_dev(cl)->cdv_sb = sb; in cl_sb_init()
212 sbi->ll_cl = cl; in cl_sb_init()
213 sbi->ll_site = cl2lu_dev(cl)->ld_site; in cl_sb_init()
/linux-4.1.27/arch/mips/lantiq/falcon/
Dsysctrl.c172 clk->cl.dev_id = dev; in clkdev_add_sys()
173 clk->cl.con_id = NULL; in clkdev_add_sys()
174 clk->cl.clk = clk; in clkdev_add_sys()
182 clkdev_add(&clk->cl); in clkdev_add_sys()
/linux-4.1.27/drivers/regulator/
Dlp872x.c903 static int lp872x_probe(struct i2c_client *cl, const struct i2c_device_id *id) in lp872x_probe() argument
912 if (cl->dev.of_node) in lp872x_probe()
913 cl->dev.platform_data = lp872x_populate_pdata_from_dt(&cl->dev, in lp872x_probe()
916 lp = devm_kzalloc(&cl->dev, sizeof(struct lp872x), GFP_KERNEL); in lp872x_probe()
922 lp->regmap = devm_regmap_init_i2c(cl, &lp872x_regmap_config); in lp872x_probe()
925 dev_err(&cl->dev, "regmap init i2c err: %d\n", ret); in lp872x_probe()
929 lp->dev = &cl->dev; in lp872x_probe()
930 lp->pdata = dev_get_platdata(&cl->dev); in lp872x_probe()
932 i2c_set_clientdata(cl, lp); in lp872x_probe()
/linux-4.1.27/drivers/usb/storage/
Dusual-tables.c45 #define UNUSUAL_VENDOR_INTF(id_vendor, cl, sc, pr, \ argument
52 .bInterfaceClass = (cl), \
/linux-4.1.27/drivers/hwmon/
Dasb100.c860 struct i2c_client *cl; in asb100_read_value() local
874 cl = data->lm75[bank - 1]; in asb100_read_value()
879 res = i2c_smbus_read_word_swapped(cl, 0); in asb100_read_value()
882 res = i2c_smbus_read_byte_data(cl, 1); in asb100_read_value()
885 res = i2c_smbus_read_word_swapped(cl, 2); in asb100_read_value()
889 res = i2c_smbus_read_word_swapped(cl, 3); in asb100_read_value()
905 struct i2c_client *cl; in asb100_write_value() local
919 cl = data->lm75[bank - 1]; in asb100_write_value()
924 i2c_smbus_write_byte_data(cl, 1, value & 0xff); in asb100_write_value()
927 i2c_smbus_write_word_swapped(cl, 2, value); in asb100_write_value()
[all …]
Dw83781d.c1280 struct i2c_client *cl; in w83781d_read_value_i2c() local
1291 cl = data->lm75[bank - 1]; in w83781d_read_value_i2c()
1295 res = i2c_smbus_read_word_swapped(cl, 0); in w83781d_read_value_i2c()
1298 res = i2c_smbus_read_byte_data(cl, 1); in w83781d_read_value_i2c()
1301 res = i2c_smbus_read_word_swapped(cl, 2); in w83781d_read_value_i2c()
1305 res = i2c_smbus_read_word_swapped(cl, 3); in w83781d_read_value_i2c()
1320 struct i2c_client *cl; in w83781d_write_value_i2c() local
1332 cl = data->lm75[bank - 1]; in w83781d_write_value_i2c()
1336 i2c_smbus_write_byte_data(cl, 1, value & 0xff); in w83781d_write_value_i2c()
1339 i2c_smbus_write_word_swapped(cl, 2, value); in w83781d_write_value_i2c()
[all …]
/linux-4.1.27/arch/mips/lantiq/
Dclk.c93 clk->cl.dev_id, clk->cl.con_id, rate); in clk_set_rate()
Dclk.h56 struct clk_lookup cl; member
/linux-4.1.27/tools/perf/tests/
Dhists_cumulate.c155 #define CDSO(cl) (cl->ms.map->dso->short_name) argument
156 #define CSYM(cl) (cl->ms.sym->name) argument
/linux-4.1.27/arch/x86/boot/
Dedd.c114 ei->legacy_max_cylinder = oreg.ch + ((oreg.cl & 0xc0) << 2); in get_edd_info()
116 ei->legacy_sectors_per_track = oreg.cl & 0x3f; in get_edd_info()
/linux-4.1.27/drivers/staging/panel/
Dpanel.c268 int cl; member
660 unsigned char cl; /* serial LCD clock (latch on rising edge) */ member
679 | lcd_bits[LCD_PORT_D][LCD_BIT_CL][bits.cl] in set_data_bits()
699 | lcd_bits[LCD_PORT_C][LCD_BIT_CL][bits.cl] in set_ctrl_bits()
795 bits.cl = BIT_CLR; /* CLK low */ in lcd_send_serial()
800 bits.cl = BIT_SET; /* CLK high */ in lcd_send_serial()
1490 lcd.pins.cl = PIN_STROBE; in lcd_init()
1552 lcd.pins.cl = lcd_cl_pin; in lcd_init()
1573 if (lcd.pins.cl == PIN_NOT_SET) in lcd_init()
1574 lcd.pins.cl = DEFAULT_LCD_PIN_SCL; in lcd_init()
[all …]
/linux-4.1.27/net/9p/
Dtrans_fd.c908 struct sockaddr_in cl; in p9_bind_privport() local
911 memset(&cl, 0, sizeof(cl)); in p9_bind_privport()
912 cl.sin_family = AF_INET; in p9_bind_privport()
913 cl.sin_addr.s_addr = INADDR_ANY; in p9_bind_privport()
915 cl.sin_port = htons((ushort)port); in p9_bind_privport()
916 err = kernel_bind(sock, (struct sockaddr *)&cl, sizeof(cl)); in p9_bind_privport()
Dtrans_rdma.c621 struct sockaddr_in cl = { in p9_rdma_bind_privport() local
628 cl.sin_port = htons((ushort)port); in p9_rdma_bind_privport()
629 err = rdma_bind_addr(rdma->cm_id, (struct sockaddr *)&cl); in p9_rdma_bind_privport()
/linux-4.1.27/arch/x86/crypto/
Dblowfish-x86_64-asm_64.S51 #define RX2bl %cl
148 test %cl, %cl;
/linux-4.1.27/arch/um/include/shared/
Dos.h64 unsigned int cl : 1; /* FD_CLOEXEC */ member
68 .t = 0, .a = 0, .e = 0, .cl = 0 })
126 flags.cl = 1; in of_cloexec()
/linux-4.1.27/arch/sparc/kernel/
Dsetup_64.c625 u32 cl, sv, gw; in setup_arch() local
627 cl = prom_getintdefault (chosen, "client-ip", 0); in setup_arch()
630 if (cl && sv) { in setup_arch()
631 ic_myaddr = cl; in setup_arch()
/linux-4.1.27/drivers/net/hamradio/
Dscc.c286 static inline void cl(struct scc_channel *scc, unsigned char reg, unsigned char val) in cl() function
415 cl(scc, R10, ABUNDER); /* send CRC */ in scc_txint()
472 cl(scc,R3,ENT_HM|RxENABLE); /* disable the receiver */ in scc_exint()
720 cl(scc,R14,BRENABL); /* disable baudrate generator */ in set_brg()
923 cl(scc, R3, RxENABLE|ENT_HM); /* switch off receiver */ in scc_key_trx()
924 cl(scc, R15, DCDIE|SYNCIE); /* No DCD changes, please */ in scc_key_trx()
940 cl(scc,R5,RTS|TxENAB); in scc_key_trx()
961 cl(scc, R3, RxENABLE); in scc_key_trx()
962 cl(scc, R15, DCDIE|SYNCIE); in scc_key_trx()
974 cl(scc,R5,RTS|TxENAB); /* disable tx */ in scc_key_trx()
[all …]
/linux-4.1.27/fs/nfsd/
Dnfs4state.c534 struct nfs4_client *cl; in find_or_hash_clnt_odstate() local
539 cl = new->co_client; in find_or_hash_clnt_odstate()
543 if (co->co_client == cl) { in find_or_hash_clnt_odstate()
556 struct nfs4_stid *nfs4_alloc_stid(struct nfs4_client *cl, in nfs4_alloc_stid() argument
567 spin_lock(&cl->cl_lock); in nfs4_alloc_stid()
568 new_id = idr_alloc_cyclic(&cl->cl_stateids, stid, 0, 0, GFP_NOWAIT); in nfs4_alloc_stid()
569 spin_unlock(&cl->cl_lock); in nfs4_alloc_stid()
573 stid->sc_client = cl; in nfs4_alloc_stid()
575 stid->sc_stateid.si_opaque.so_clid = cl->cl_clientid; in nfs4_alloc_stid()
1944 static bool mach_creds_match(struct nfs4_client *cl, struct svc_rqst *rqstp) in mach_creds_match() argument
[all …]
/linux-4.1.27/arch/arm/plat-orion/
Dcommon.c31 struct clk_lookup *cl; in orion_clkdev_add() local
33 cl = clkdev_alloc(clk, con_id, dev_id); in orion_clkdev_add()
34 if (cl) in orion_clkdev_add()
35 clkdev_add(cl); in orion_clkdev_add()
/linux-4.1.27/arch/powerpc/math-emu/
Dmath_efp.c639 int ch, cl; in do_spe_mathemu() local
648 cl = (IR1 == cmp) ? 1 : 0; in do_spe_mathemu()
649 IR = (ch << 3) | (cl << 2) | ((ch | cl) << 1) | in do_spe_mathemu()
650 ((ch & cl) << 0); in do_spe_mathemu()
/linux-4.1.27/arch/x86/lib/
Dchecksum_32.S124 5: movb (%esi),%cl
243 shrl %cl,%ebx
374 SRC(5: movb (%esi), %cl )
375 DST( movb %cl, (%edi) )
Dmemcpy_64.S177 movb %cl, (%rdi)
/linux-4.1.27/arch/x86/um/
Dchecksum_32.S110 5: movb (%esi),%cl
207 shrl %cl,%ebx
/linux-4.1.27/include/linux/ceph/
Dmon_client.h93 extern int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl);
/linux-4.1.27/drivers/net/usb/
Dcx82310_eth.c321 #define USB_DEVICE_CLASS(vend, prod, cl, sc, pr) \ argument
326 .bDeviceClass = (cl), \
/linux-4.1.27/drivers/memory/
Demif.c247 u32 cl; in get_cl() local
250 cl = (readl(base + EMIF_SDRAM_CONFIG) & CL_MASK) >> CL_SHIFT; in get_cl()
252 return cl; in get_cl()
694 static u32 get_phy_ctrl_1_intelliphy_4d5(u32 freq, u8 cl) in get_phy_ctrl_1_intelliphy_4d5() argument
708 phy |= ((cl + DIV_ROUND_UP(EMIF_PHY_TOTAL_READ_LATENCY_INTELLIPHY_PS, in get_phy_ctrl_1_intelliphy_4d5()
1619 u32 cl, type; in get_emif_reg_values() local
1661 cl = get_cl(emif); in get_emif_reg_values()
1665 timings, freq, cl); in get_emif_reg_values()
1667 regs->phy_ctrl_1_shdw = get_phy_ctrl_1_intelliphy_4d5(freq, cl); in get_emif_reg_values()
/linux-4.1.27/drivers/input/tablet/
Dhanwang.c54 #define HANWANG_TABLET_DEVICE(vend, cl, sc, pr) \ argument
58 .bInterfaceClass = (cl), \
/linux-4.1.27/net/ceph/
Dmon_client.c778 int ceph_monc_init(struct ceph_mon_client *monc, struct ceph_client *cl) in ceph_monc_init() argument
784 monc->client = cl; in ceph_monc_init()
794 monc->auth = ceph_auth_init(cl->options->name, in ceph_monc_init()
795 cl->options->key); in ceph_monc_init()
/linux-4.1.27/drivers/gpu/host1x/
Dbus.c319 struct host1x_client *client, *cl; in __host1x_device_del() local
354 list_for_each_entry_safe(client, cl, &device->clients, list) in __host1x_device_del()
/linux-4.1.27/drivers/media/pci/saa7134/
Dsaa7134-video.c605 struct cliplist *cl, int entries, char *name) in set_cliplist() argument
611 winbits |= cl[i].enable; in set_cliplist()
612 winbits &= ~cl[i].disable; in set_cliplist()
613 if (i < 15 && cl[i].position == cl[i+1].position) in set_cliplist()
616 saa_writeb(reg + 2, cl[i].position & 0xff); in set_cliplist()
617 saa_writeb(reg + 3, cl[i].position >> 8); in set_cliplist()
619 name,winbits,cl[i].position); in set_cliplist()
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/
Dbif_core_defs.h193 unsigned int cl : 3; member
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/hwregs/
Dbif_core_defs.h193 unsigned int cl : 3; member
/linux-4.1.27/drivers/mtd/nand/
Dcafe_nand.c559 u8 ah, al, bh, bl, ch, cl; in gf4096_mul() local
567 cl = gf64_mul(gf64_mul(ah, bh), 0x21) ^ gf64_mul(al, bl); in gf4096_mul()
569 return (ch << 6) ^ cl; in gf4096_mul()
/linux-4.1.27/Documentation/DocBook/media/
Dcrop.gif.b6459 cl+8mZK8iJCt6XO305h6cEK/KZbBuZK42UG6STzGeQdFlJw+aZte05w+9Jx/GZ10QEjUOU7W6TfY
/linux-4.1.27/drivers/atm/
Dnicstarmac.copyright2 * nicstar.c, M. Welsh (matt.welsh@cl.cam.ac.uk)
/linux-4.1.27/arch/s390/kernel/
Dsclp.S167 cl %r1,0(%r2)
171 cl %r1,4(%r2)

12