/drivers/md/persistent-data/ |
D | dm-space-map-common.c | 191 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 …]
|
D | dm-space-map-common.h | 50 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 …]
|
D | dm-space-map-metadata.c | 97 struct ll_disk ll; member 133 r = sm_ll_inc(&smm->ll, op->block, &ev); in commit_bop() 137 r = sm_ll_dec(&smm->ll, op->block, &ev); in commit_bop() 202 *count = smm->ll.nr_blocks; in sm_metadata_get_nr_blocks() 245 r = sm_ll_lookup(&smm->ll, b, result); in sm_metadata_get_count() 287 r = sm_ll_lookup_bitmap(&smm->ll, b, &rc); in sm_metadata_count_is_more_than_one() 315 r = sm_ll_insert(&smm->ll, b, count, &ev); in sm_metadata_set_count() 331 r = sm_ll_inc(&smm->ll, b, &ev); in sm_metadata_inc_block() 348 r = sm_ll_dec(&smm->ll, b, &ev); in sm_metadata_dec_block() 371 r = sm_ll_inc(&smm->ll, *b, &ev); in sm_metadata_new_block_() [all …]
|
D | dm-space-map-disk.c | 27 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() 92 r = sm_ll_insert(&smd->ll, b, count, &ev); in sm_disk_set_count() 130 r = sm_ll_inc(&smd->ll, b, &ev); in sm_disk_inc_block() 148 r = sm_ll_dec(&smd->ll, b, &ev); in sm_disk_dec_block() 177 r = sm_ll_inc(&smd->ll, *b, &ev); in sm_disk_new_block() 196 r = sm_ll_commit(&smd->ll); in sm_disk_commit() 200 memcpy(&smd->old_ll, &smd->ll, sizeof(smd->old_ll)); in sm_disk_commit() 223 root_le.nr_blocks = cpu_to_le64(smd->ll.nr_blocks); in sm_disk_copy_root() [all …]
|
/drivers/bluetooth/ |
D | hci_ll.c | 97 struct ll_struct *ll = hu->priv; in send_hcill_cmd() local 116 skb_queue_tail(&ll->txq, skb); in send_hcill_cmd() 124 struct ll_struct *ll; in ll_open() local 128 ll = kzalloc(sizeof(*ll), GFP_KERNEL); in ll_open() 129 if (!ll) in ll_open() 132 skb_queue_head_init(&ll->txq); in ll_open() 133 skb_queue_head_init(&ll->tx_wait_q); in ll_open() 134 spin_lock_init(&ll->hcill_lock); in ll_open() 136 ll->hcill_state = HCILL_AWAKE; in ll_open() 138 hu->priv = ll; in ll_open() [all …]
|
/drivers/net/ethernet/amd/ |
D | a2065.c | 106 volatile struct lance_regs *ll; member 132 volatile struct lance_regs *ll = lp->ll; in load_csrs() local 136 ll->rap = LE_CSR1; in load_csrs() 137 ll->rdp = (leptr & 0xFFFF); in load_csrs() 138 ll->rap = LE_CSR2; in load_csrs() 139 ll->rdp = leptr >> 16; in load_csrs() 140 ll->rap = LE_CSR3; in load_csrs() 141 ll->rdp = lp->busmaster_regval; in load_csrs() 144 ll->rap = LE_CSR0; in load_csrs() 222 volatile struct lance_regs *ll = lp->ll; in init_restart_lance() local [all …]
|
D | declance.c | 253 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/ |
D | st_ll.c | 99 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/video/msm/ |
D | mddi.c | 513 struct mddi_llentry *ll; in mddi_remote_write() local 518 ll = mddi->reg_write_data; in mddi_remote_write() 520 ra = &(ll->u.r); in mddi_remote_write() 530 ll->flags = 1; in mddi_remote_write() 531 ll->header_count = 14; in mddi_remote_write() 532 ll->data_count = 4; in mddi_remote_write() 533 ll->data = mddi->reg_write_addr + offsetof(struct mddi_llentry, in mddi_remote_write() 535 ll->next = 0; in mddi_remote_write() 536 ll->reserved = 0; in mddi_remote_write() 548 struct mddi_llentry *ll; in mddi_remote_read() local [all …]
|
/drivers/net/wireless/ti/wl1251/ |
D | Kconfig | 10 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/p54/ |
D | Kconfig | 14 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/edac/ |
D | mce_amd.c | 145 u8 ll = LL(ec); in f12h_mc0_mce() local 148 if (ll == LL_L2) in f12h_mc0_mce() 150 else if (ll == LL_L1) in f12h_mc0_mce() 299 u8 ll = LL(ec); in k8_mc1_mce() local 305 if (ll == 0x2) in k8_mc1_mce() 307 else if (ll == 0x1) { in k8_mc1_mce()
|
/drivers/isdn/mISDN/ |
D | l1oip_core.c | 897 int l, ll; in handle_dmsg() local 916 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME; in handle_dmsg() 918 hc->chan[dch->slot].tx_counter++, p, ll); in handle_dmsg() 919 p += ll; in handle_dmsg() 920 l -= ll; in handle_dmsg() 1112 int l, ll; in handle_bmsg() local 1154 ll = (l < L1OIP_MAX_PERFRAME) ? l : L1OIP_MAX_PERFRAME; in handle_bmsg() 1156 hc->chan[bch->slot].tx_counter, p, ll); in handle_bmsg() 1157 hc->chan[bch->slot].tx_counter += ll; in handle_bmsg() 1158 p += ll; in handle_bmsg() [all …]
|
/drivers/tty/vt/ |
D | vt_ioctl.c | 825 ushort ll,cc; in vt_ioctl() local 828 if (get_user(ll, &vtsizes->v_rows) || in vt_ioctl() 839 vc_resize(vc_cons[i].d, cc, ll); in vt_ioctl() 850 ushort ll,cc,vlin,clin,vcol,ccol; in vt_ioctl() local 859 __get_user(ll, &vtconsize->v_rows); in vt_ioctl() 867 if (ll) { in vt_ioctl() 868 if (ll != vlin/clin) { in vt_ioctl() 874 ll = vlin/clin; in vt_ioctl() 900 vc_resize(vc_cons[i].d, cc, ll); in vt_ioctl()
|
/drivers/nfc/pn544/ |
D | Kconfig | 22 If you choose to build a module, it'll be called pn544_i2c. 33 If you choose to build a module, it'll be called pn544_mei.
|
/drivers/nfc/microread/ |
D | Kconfig | 23 If you choose to build a module, it'll be called microread_i2c. 34 If you choose to build a module, it'll be called microread_mei.
|
/drivers/net/wireless/ti/wlcore/ |
D | Kconfig | 23 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/infiniband/hw/mlx4/ |
D | ah.c | 169 enum rdma_link_layer ll; in mlx4_ib_query_ah() local 174 ll = rdma_port_get_link_layer(ibah->device, ah_attr->port_num); in mlx4_ib_query_ah() 175 ah_attr->dlid = ll == IB_LINK_LAYER_INFINIBAND ? be16_to_cpu(ah->av.ib.dlid) : 0; in mlx4_ib_query_ah()
|
/drivers/scsi/isci/ |
D | phy.c | 384 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/ |
D | Makefile | 9 c67x00-y := c67x00-drv.o c67x00-ll-hpi.o c67x00-hcd.o c67x00-sched.o
|
/drivers/zorro/ |
D | Kconfig | 14 really matters, you can disable this feature and you'll get device
|
/drivers/net/wireless/ath/carl9170/ |
D | Kconfig | 16 If you choose to build a module, it'll be called carl9170.
|
/drivers/eisa/ |
D | Kconfig | 52 can disable this feature and you'll get device ID instead of
|
/drivers/net/wireless/ath/ath5k/ |
D | Kconfig | 22 If you choose to build a module, it'll be called ath5k. Say M if
|
/drivers/isdn/gigaset/ |
D | Kconfig | 27 subsystem you'll have to enable the capidrv glue driver.
|