Home
last modified time | relevance | path

Searched refs:ll (Results 1 – 25 of 65) sorted by relevance

123

/drivers/md/persistent-data/
Ddm-space-map-common.c191 static int sm_ll_init(struct ll_disk *ll, struct dm_transaction_manager *tm) in sm_ll_init() argument
193 ll->tm = tm; in sm_ll_init()
195 ll->bitmap_info.tm = tm; in sm_ll_init()
196 ll->bitmap_info.levels = 1; in sm_ll_init()
203 ll->bitmap_info.value_type.size = sizeof(struct disk_index_entry); in sm_ll_init()
204 ll->bitmap_info.value_type.inc = NULL; in sm_ll_init()
205 ll->bitmap_info.value_type.dec = NULL; in sm_ll_init()
206 ll->bitmap_info.value_type.equal = NULL; in sm_ll_init()
208 ll->ref_count_info.tm = tm; in sm_ll_init()
209 ll->ref_count_info.levels = 1; in sm_ll_init()
[all …]
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);
107 int sm_ll_extend(struct ll_disk *ll, dm_block_t extra_blocks);
108 int sm_ll_lookup_bitmap(struct ll_disk *ll, dm_block_t b, uint32_t *result);
109 int sm_ll_lookup(struct ll_disk *ll, dm_block_t b, uint32_t *result);
110 int sm_ll_find_free_block(struct ll_disk *ll, dm_block_t begin,
[all …]
Ddm-space-map-disk.c27 struct ll_disk ll; member
45 return sm_ll_extend(&smd->ll, extra_blocks); in sm_disk_extend()
68 return sm_ll_lookup(&smd->ll, b, result); in sm_disk_get_count()
94 r = sm_ll_insert(&smd->ll, b, count, &ev); in sm_disk_set_count()
132 r = sm_ll_inc(&smd->ll, b, &ev); in sm_disk_inc_block()
150 r = sm_ll_dec(&smd->ll, b, &ev); in sm_disk_dec_block()
173 r = sm_ll_find_common_free_block(&smd->old_ll, &smd->ll, smd->begin, smd->ll.nr_blocks, b); in sm_disk_new_block()
178 r = sm_ll_inc(&smd->ll, *b, &ev); in sm_disk_new_block()
197 r = sm_ll_commit(&smd->ll); in sm_disk_commit()
201 memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll)); in sm_disk_commit()
[all …]
Ddm-space-map-metadata.c168 struct ll_disk ll; member
199 r = sm_ll_inc(&smm->ll, op->block, &ev); in commit_bop()
203 r = sm_ll_dec(&smm->ll, op->block, &ev); in commit_bop()
284 *count = smm->ll.nr_blocks; in sm_metadata_get_nr_blocks()
330 r = sm_ll_lookup(&smm->ll, b, result); in sm_metadata_get_count()
376 r = sm_ll_lookup_bitmap(&smm->ll, b, &rc); in sm_metadata_count_is_more_than_one()
404 r = sm_ll_insert(&smm->ll, b, count, &ev); in sm_metadata_set_count()
420 r = sm_ll_inc(&smm->ll, b, &ev); in sm_metadata_inc_block()
437 r = sm_ll_dec(&smm->ll, b, &ev); in sm_metadata_dec_block()
453 r = sm_ll_find_common_free_block(&smm->old_ll, &smm->ll, smm->begin, smm->ll.nr_blocks, b); in sm_metadata_new_block_()
[all …]
/drivers/bluetooth/
Dhci_ll.c109 struct ll_struct *ll = hu->priv; in send_hcill_cmd() local
127 skb_queue_tail(&ll->txq, skb); in send_hcill_cmd()
135 struct ll_struct *ll; in ll_open() local
139 ll = kzalloc(sizeof(*ll), GFP_KERNEL); in ll_open()
140 if (!ll) in ll_open()
143 skb_queue_head_init(&ll->txq); in ll_open()
144 skb_queue_head_init(&ll->tx_wait_q); in ll_open()
145 spin_lock_init(&ll->hcill_lock); in ll_open()
147 ll->hcill_state = HCILL_AWAKE; in ll_open()
149 hu->priv = ll; in ll_open()
[all …]
/drivers/net/ethernet/amd/
Da2065.c107 volatile struct lance_regs *ll; member
133 volatile struct lance_regs *ll = lp->ll; in load_csrs() local
137 ll->rap = LE_CSR1; in load_csrs()
138 ll->rdp = (leptr & 0xFFFF); in load_csrs()
139 ll->rap = LE_CSR2; in load_csrs()
140 ll->rdp = leptr >> 16; in load_csrs()
141 ll->rap = LE_CSR3; in load_csrs()
142 ll->rdp = lp->busmaster_regval; in load_csrs()
145 ll->rap = LE_CSR0; in load_csrs()
223 volatile struct lance_regs *ll = lp->ll; in init_restart_lance() local
[all …]
Ddeclance.c253 volatile struct lance_regs *ll; member
303 volatile struct lance_regs *ll = lp->ll; in load_csrs() local
311 writereg(&ll->rap, LE_CSR1); in load_csrs()
312 writereg(&ll->rdp, (leptr & 0xFFFF)); in load_csrs()
313 writereg(&ll->rap, LE_CSR2); in load_csrs()
314 writereg(&ll->rdp, leptr >> 16); in load_csrs()
315 writereg(&ll->rap, LE_CSR3); in load_csrs()
316 writereg(&ll->rdp, lp->busmaster_regval); in load_csrs()
319 writereg(&ll->rap, LE_CSR0); in load_csrs()
527 volatile struct lance_regs *ll = lp->ll; in init_restart_lance() local
[all …]
/drivers/misc/ti-st/
Dst_ll.c99 void st_ll_enable(struct st_data_s *ll) in st_ll_enable() argument
101 ll->ll_state = ST_LL_AWAKE; in st_ll_enable()
106 void st_ll_disable(struct st_data_s *ll) in st_ll_disable() argument
108 ll->ll_state = ST_LL_INVALID; in st_ll_disable()
112 void st_ll_wakeup(struct st_data_s *ll) in st_ll_wakeup() argument
114 if (likely(ll->ll_state != ST_LL_AWAKE)) { in st_ll_wakeup()
115 send_ll_cmd(ll, LL_WAKE_UP_IND); /* WAKE_IND */ in st_ll_wakeup()
116 ll->ll_state = ST_LL_ASLEEP_TO_AWAKE; in st_ll_wakeup()
124 unsigned long st_ll_getstate(struct st_data_s *ll) in st_ll_getstate() argument
126 pr_debug(" returning state %ld", ll->ll_state); in st_ll_getstate()
[all …]
/drivers/net/wireless/ti/wl1251/
DKconfig10 If you choose to build a module, it'll be called wl1251. Say
21 If you choose to build a module, it'll be called wl1251_spi.
32 If you choose to build a module, it'll be called
/drivers/net/wireless/intersil/p54/
DKconfig14 If you choose to build a module, it'll be called p54common.
26 If you choose to build a module, it'll be called p54usb.
40 If you choose to build a module, it'll be called p54pci.
49 If you choose to build a module, it'll be called p54spi.
/drivers/nfc/pn533/
DKconfig15 If you choose to build a module, it'll be called pn533_usb.
26 If you choose to build a module, it'll be called pn533_i2c.
/drivers/isdn/mISDN/
Dl1oip_core.c895 int l, ll; in handle_dmsg() local
914 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME; in handle_dmsg()
916 hc->chan[dch->slot].tx_counter++, p, ll); in handle_dmsg()
917 p += ll; in handle_dmsg()
918 l -= ll; in handle_dmsg()
1110 int l, ll; in handle_bmsg() local
1152 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME; in handle_bmsg()
1154 hc->chan[bch->slot].tx_counter, p, ll); in handle_bmsg()
1155 hc->chan[bch->slot].tx_counter += ll; in handle_bmsg()
1156 p += ll; in handle_bmsg()
[all …]
/drivers/nfc/st-nci/
DKconfig17 If you choose to build a module, it'll be called st-nci_i2c.
29 If you choose to build a module, it'll be called st-nci_spi.
/drivers/nfc/pn544/
DKconfig17 If you choose to build a module, it'll be called pn544_i2c.
29 If you choose to build a module, it'll be called pn544_mei.
/drivers/nfc/microread/
DKconfig18 If you choose to build a module, it'll be called microread_i2c.
30 If you choose to build a module, it'll be called microread_mei.
/drivers/edac/
Dmce_amd.c314 u8 ll = LL(ec); in f12h_mc0_mce() local
317 if (ll == LL_L2) in f12h_mc0_mce()
319 else if (ll == LL_L1) in f12h_mc0_mce()
474 u8 ll = LL(ec); in k8_mc1_mce() local
480 if (ll == 0x2) in k8_mc1_mce()
482 else if (ll == 0x1) { in k8_mc1_mce()
/drivers/net/wireless/ti/wlcore/
DKconfig23 If you choose to build a module, it'll be called wlcore_spi.
34 If you choose to build a module, it'll be called wlcore_sdio.
/drivers/scsi/isci/
Dphy.c384 struct scu_link_layer_registers __iomem *ll) in sci_phy_initialize() argument
390 sci_phy_link_layer_initialization(iphy, ll); in sci_phy_initialize()
1202 struct scu_link_layer_registers __iomem *ll = iphy->link_layer_registers; in scu_link_layer_start_oob() local
1206 val = readl(&ll->phy_configuration); in scu_link_layer_start_oob()
1210 writel(val, &ll->phy_configuration); in scu_link_layer_start_oob()
1211 readl(&ll->phy_configuration); /* flush */ in scu_link_layer_start_oob()
1215 val = readl(&ll->phy_configuration); in scu_link_layer_start_oob()
1217 writel(val, &ll->phy_configuration); in scu_link_layer_start_oob()
1218 readl(&ll->phy_configuration); /* flush */ in scu_link_layer_start_oob()
/drivers/usb/c67x00/
DMakefile7 c67x00-y := c67x00-drv.o c67x00-ll-hpi.o c67x00-hcd.o c67x00-sched.o
/drivers/net/wireless/ath/wcn36xx/
DKconfig10 If you choose to build a module, it'll be called wcn36xx.
/drivers/nfc/st21nfca/
DKconfig17 If you choose to build a module, it'll be called st21nfca_i2c.
/drivers/zorro/
DKconfig14 really matters, you can disable this feature and you'll get device
/drivers/nfc/fdp/
DKconfig22 If you choose to build a module, it'll be called fdp_i2c.
/drivers/net/wireless/ath/carl9170/
DKconfig14 If you choose to build a module, it'll be called carl9170.
/drivers/net/wireless/ath/ath10k/
DKconfig11 If you choose to build a module, it'll be called ath10k.

123