Searched refs:ll (Results 1 - 25 of 35) sorted by relevance

12

/drivers/bluetooth/
H A Dhci_ll.c97 struct ll_struct *ll = hu->priv; local
116 skb_queue_tail(&ll->txq, skb);
124 struct ll_struct *ll; local
128 ll = kzalloc(sizeof(*ll), GFP_KERNEL);
129 if (!ll)
132 skb_queue_head_init(&ll->txq);
133 skb_queue_head_init(&ll->tx_wait_q);
134 spin_lock_init(&ll->hcill_lock);
136 ll
146 struct ll_struct *ll = hu->priv; local
159 struct ll_struct *ll = hu->priv; local
182 __ll_do_awake(struct ll_struct *ll) argument
198 struct ll_struct *ll = hu->priv; local
248 struct ll_struct *ll = hu->priv; local
281 struct ll_struct *ll = hu->priv; local
306 struct ll_struct *ll = hu->priv; local
349 ll_check_data_len(struct ll_struct *ll, int len) argument
376 struct ll_struct *ll = hu->priv; local
506 struct ll_struct *ll = hu->priv; local
[all...]
/drivers/md/persistent-data/
H A Ddm-space-map-common.c191 static int sm_ll_init(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
193 ll->tm = tm;
195 ll->bitmap_info.tm = tm;
196 ll->bitmap_info.levels = 1;
203 ll->bitmap_info.value_type.size = sizeof(struct disk_index_entry);
204 ll->bitmap_info.value_type.inc = NULL;
205 ll->bitmap_info.value_type.dec = NULL;
206 ll->bitmap_info.value_type.equal = NULL;
208 ll->ref_count_info.tm = tm;
209 ll
231 sm_ll_extend(struct ll_disk *ll, dm_block_t extra_blocks) argument
272 sm_ll_lookup_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t *result) argument
294 sm_ll_lookup(struct ll_disk *ll, dm_block_t b, uint32_t *result) argument
314 sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin, dm_block_t end, dm_block_t *result) argument
374 sm_ll_insert(struct ll_disk *ll, dm_block_t b, uint32_t ref_count, enum allocation_event *ev) argument
450 sm_ll_inc(struct ll_disk *ll, dm_block_t b, enum allocation_event *ev) argument
462 sm_ll_dec(struct ll_disk *ll, dm_block_t b, enum allocation_event *ev) argument
477 sm_ll_commit(struct ll_disk *ll) argument
484 metadata_ll_load_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
491 metadata_ll_save_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
498 metadata_ll_init_index(struct ll_disk *ll) argument
513 metadata_ll_open(struct ll_disk *ll) argument
527 metadata_ll_max_entries(struct ll_disk *ll) argument
532 metadata_ll_commit(struct ll_disk *ll) argument
547 sm_ll_new_metadata(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
576 sm_ll_open_metadata(struct ll_disk *ll, struct dm_transaction_manager *tm, void *root_le, size_t len) argument
608 disk_ll_load_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
614 disk_ll_save_ie(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie) argument
622 disk_ll_init_index(struct ll_disk *ll) argument
627 disk_ll_open(struct ll_disk *ll) argument
633 disk_ll_max_entries(struct ll_disk *ll) argument
638 disk_ll_commit(struct ll_disk *ll) argument
643 sm_ll_new_disk(struct ll_disk *ll, struct dm_transaction_manager *tm) argument
672 sm_ll_open_disk(struct ll_disk *ll, struct dm_transaction_manager *tm, void *root_le, size_t len) argument
[all...]
H A Ddm-space-map-common.h50 typedef int (*load_ie_fn)(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *result);
51 typedef int (*save_ie_fn)(struct ll_disk *ll, dm_block_t index, struct disk_index_entry *ie);
52 typedef int (*init_index_fn)(struct ll_disk *ll);
53 typedef int (*open_index_fn)(struct ll_disk *ll);
54 typedef dm_block_t (*max_index_entries_fn)(struct ll_disk *ll);
55 typedef int (*commit_fn)(struct ll_disk *ll);
106 int sm_ll_extend(struct ll_disk *ll, dm_block_t extra_blocks);
107 int sm_ll_lookup_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t *result);
108 int sm_ll_lookup(struct ll_disk *ll, dm_block_t b, uint32_t *result);
109 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_
[all...]
H A Ddm-space-map-metadata.c48 struct ll_disk ll; member in struct:sm_metadata
82 r = sm_ll_inc(&smm->ll, op->block, &ev);
86 r = sm_ll_dec(&smm->ll, op->block, &ev);
157 *count = smm->ll.nr_blocks;
200 r = sm_ll_lookup(&smm->ll, b, result);
242 r = sm_ll_lookup_bitmap(&smm->ll, b, &rc);
270 r = sm_ll_insert(&smm->ll, b, count, &ev);
286 r = sm_ll_inc(&smm->ll, b, &ev);
303 r = sm_ll_dec(&smm->ll, b, &ev);
326 r = sm_ll_inc(&smm->ll, *
[all...]
H A Ddm-space-map-disk.c28 struct ll_disk ll; member in struct:sm_disk
46 return sm_ll_extend(&smd->ll, extra_blocks);
69 return sm_ll_lookup(&smd->ll, b, result);
93 r = sm_ll_insert(&smd->ll, b, count, &ev);
131 r = sm_ll_inc(&smd->ll, b, &ev);
149 r = sm_ll_dec(&smd->ll, b, &ev);
178 r = sm_ll_inc(&smd->ll, *b, &ev);
197 r = sm_ll_commit(&smd->ll);
201 memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll));
224 root_le.nr_blocks = cpu_to_le64(smd->ll
[all...]
/drivers/misc/ti-st/
H A Dst_ll.c99 void st_ll_enable(struct st_data_s *ll) argument
101 ll->ll_state = ST_LL_AWAKE;
106 void st_ll_disable(struct st_data_s *ll) argument
108 ll->ll_state = ST_LL_INVALID;
112 void st_ll_wakeup(struct st_data_s *ll) argument
114 if (likely(ll->ll_state != ST_LL_AWAKE)) {
115 send_ll_cmd(ll, LL_WAKE_UP_IND); /* WAKE_IND */
116 ll->ll_state = ST_LL_ASLEEP_TO_AWAKE;
124 unsigned long st_ll_getstate(struct st_data_s *ll) argument
126 pr_debug(" returning state %ld", ll
158 st_ll_init(struct st_data_s *ll) argument
166 st_ll_deinit(struct st_data_s *ll) argument
[all...]
/drivers/usb/c67x00/
H A DMakefile9 c67x00-y := c67x00-drv.o c67x00-ll-hpi.o c67x00-hcd.o c67x00-sched.o
/drivers/net/ethernet/amd/
H A Da2065.c106 volatile struct lance_regs *ll; member in struct:lance_private
132 volatile struct lance_regs *ll = lp->ll; local
136 ll->rap = LE_CSR1;
137 ll->rdp = (leptr & 0xFFFF);
138 ll->rap = LE_CSR2;
139 ll->rdp = leptr >> 16;
140 ll->rap = LE_CSR3;
141 ll->rdp = lp->busmaster_regval;
144 ll
222 volatile struct lance_regs *ll = lp->ll; local
247 volatile struct lance_regs *ll = lp->ll; local
327 volatile struct lance_regs *ll = lp->ll; local
417 volatile struct lance_regs *ll = lp->ll; local
465 volatile struct lance_regs *ll = lp->ll; local
489 volatile struct lance_regs *ll = lp->ll; local
505 volatile struct lance_regs *ll = lp->ll; local
527 volatile struct lance_regs *ll = lp->ll; local
538 volatile struct lance_regs *ll = lp->ll; local
614 volatile struct lance_regs *ll = lp->ll; local
[all...]
H A Ddeclance.c253 volatile struct lance_regs *ll; member in struct:lance_private
303 volatile struct lance_regs *ll = lp->ll; local
311 writereg(&ll->rap, LE_CSR1);
312 writereg(&ll->rdp, (leptr & 0xFFFF));
313 writereg(&ll->rap, LE_CSR2);
314 writereg(&ll->rdp, leptr >> 16);
315 writereg(&ll->rap, LE_CSR3);
316 writereg(&ll->rdp, lp->busmaster_regval);
319 writereg(&ll
527 volatile struct lance_regs *ll = lp->ll; local
647 volatile struct lance_regs *ll = lp->ll; local
738 volatile struct lance_regs *ll = lp->ll; local
784 volatile struct lance_regs *ll = lp->ll; local
842 volatile struct lance_regs *ll = lp->ll; local
873 volatile struct lance_regs *ll = lp->ll; local
890 volatile struct lance_regs *ll = lp->ll; local
901 volatile struct lance_regs *ll = lp->ll; local
976 volatile struct lance_regs *ll = lp->ll; local
1030 volatile struct lance_regs *ll; local
[all...]
/drivers/zorro/
H A DKconfig14 really matters, you can disable this feature and you'll get device
/drivers/video/msm/
H A Dmddi.c516 struct mddi_llentry *ll; local
521 ll = mddi->reg_write_data;
523 ra = &(ll->u.r);
533 ll->flags = 1;
534 ll->header_count = 14;
535 ll->data_count = 4;
536 ll->data = mddi->reg_write_addr + offsetof(struct mddi_llentry,
538 ll->next = 0;
539 ll->reserved = 0;
551 struct mddi_llentry *ll; local
[all...]
/drivers/edac/
H A Dmce_amd.c147 u8 ll = LL(ec); local
150 if (ll == LL_L2)
152 else if (ll == LL_L1)
301 u8 ll = LL(ec); local
307 if (ll == 0x2)
309 else if (ll == 0x1) {
/drivers/input/serio/
H A DKconfig29 you'll need to say Y here.
117 If you use these devices, you'll need to say Y here.
/drivers/infiniband/hw/mlx4/
H A Dah.c169 enum rdma_link_layer ll; local
174 ll = rdma_port_get_link_layer(ibah->device, ah_attr->port_num);
175 ah_attr->dlid = ll == IB_LINK_LAYER_INFINIBAND ? be16_to_cpu(ah->av.ib.dlid) : 0;
H A Dmad.c381 enum rdma_link_layer ll; local
384 ll = rdma_port_get_link_layer(&dev->ib_dev, p + 1);
386 if (ll == IB_LINK_LAYER_INFINIBAND) {
/drivers/media/dvb/pt1/
H A Dva1j5jf8007t.c86 y = (24ll << 46) / 1000000;
87 y = ((s64)y * x >> 30) - (16ll << 40) / 10000;
88 y = ((s64)y * x >> 29) + (398ll << 35) / 10000;
89 y = ((s64)y * x >> 30) + (5491ll << 29) / 10000;
90 y = ((s64)y * x >> 30) + (30965ll << 23) / 10000;
H A Dva1j5jf8007s.c88 x1 = int_sqrt(word << 16) * ((15625ll << 21) / 1000000);
94 y = (58857ll << 23) / 1000;
95 y -= (s64)x1 * ((89565ll << 24) / 1000) >> 30;
96 y += (s64)x2 * ((88977ll << 24) / 1000) >> 28;
97 y -= (s64)x3 * ((50259ll << 25) / 1000) >> 27;
98 y += (s64)x4 * ((14341ll << 27) / 1000) >> 27;
99 y -= (s64)x5 * ((16346ll << 30) / 10000) >> 28;
/drivers/scsi/isci/
H A Dphy.c384 struct scu_link_layer_registers __iomem *ll)
390 sci_phy_link_layer_initialization(iphy, ll);
1140 struct scu_link_layer_registers __iomem *ll = iphy->link_layer_registers; local
1144 val = readl(&ll->phy_configuration);
1147 writel(val, &ll->phy_configuration);
1148 readl(&ll->phy_configuration); /* flush */
1152 val = readl(&ll->phy_configuration);
1154 writel(val, &ll->phy_configuration);
1155 readl(&ll->phy_configuration); /* flush */
382 sci_phy_initialize(struct isci_phy *iphy, struct scu_transport_layer_registers __iomem *tl, struct scu_link_layer_registers __iomem *ll) argument
/drivers/tty/vt/
H A Dvt_ioctl.c775 ushort ll,cc; local
778 if (get_user(ll, &vtsizes->v_rows) ||
789 vc_resize(vc_cons[i].d, cc, ll);
800 ushort ll,cc,vlin,clin,vcol,ccol; local
809 __get_user(ll, &vtconsize->v_rows);
817 if (ll) {
818 if (ll != vlin/clin) {
824 ll = vlin/clin;
850 vc_resize(vc_cons[i].d, cc, ll);
1298 * normal operation. In this case, we'll als
[all...]
/drivers/isdn/mISDN/
H A Dl1oip_core.c900 int l, ll; local
919 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME;
921 hc->chan[dch->slot].tx_counter++, p, ll);
922 p += ll;
923 l -= ll;
1115 int l, ll; local
1157 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME;
1159 hc->chan[bch->slot].tx_counter, p, ll);
1160 hc->chan[bch->slot].tx_counter += ll;
1161 p += ll;
[all...]
/drivers/eisa/
H A DKconfig52 can disable this feature and you'll get device ID instead of
/drivers/md/
H A Ddm-flakey.c280 map_context->ll = 1;
321 unsigned bio_submitted_while_down = map_context->ll;
H A DKconfig228 transparently encrypts the data on it. You'll need to activate
385 You'll need to activate the digests you're going to use in the
/drivers/usb/
H A DKconfig117 you'll be using. You may want to check out the information provided
/drivers/scsi/
H A Deata.c2118 unsigned long sl[n_ready], pl[n_ready], ll[n_ready]; local
2191 ll[n] = blk_rq_sectors(SCpnt->request);
2198 || (!rev && ((sl[n - 1] + ll[n - 1]) > sl[n]))
2199 || (rev && ((sl[n] + ll[n]) > sl[n - 1])))

Completed in 694 milliseconds

12