/drivers/staging/lustre/lnet/libcfs/ |
D | libcfs_string.c | 279 struct cfs_range_expr *re; in cfs_range_expr_parse() local 282 LIBCFS_ALLOC(re, sizeof(*re)); in cfs_range_expr_parse() 283 if (!re) in cfs_range_expr_parse() 287 re->re_lo = min; in cfs_range_expr_parse() 288 re->re_hi = max; in cfs_range_expr_parse() 289 re->re_stride = 1; in cfs_range_expr_parse() 294 &re->re_lo, min, max)) { in cfs_range_expr_parse() 296 re->re_hi = re->re_lo; in cfs_range_expr_parse() 297 re->re_stride = 1; in cfs_range_expr_parse() 305 &re->re_lo, min, max)) in cfs_range_expr_parse() [all …]
|
/drivers/mtd/ubi/ |
D | cdev.c | 686 struct ubi_rename_entry *re, *re1; in rename_volumes() local 732 re = kzalloc(sizeof(struct ubi_rename_entry), GFP_KERNEL); in rename_volumes() 733 if (!re) { in rename_volumes() 738 re->desc = ubi_open_volume(ubi->ubi_num, vol_id, UBI_METAONLY); in rename_volumes() 739 if (IS_ERR(re->desc)) { in rename_volumes() 740 err = PTR_ERR(re->desc); in rename_volumes() 743 kfree(re); in rename_volumes() 748 if (re->desc->vol->name_len == name_len && in rename_volumes() 749 !memcmp(re->desc->vol->name, name, name_len)) { in rename_volumes() 750 ubi_close_volume(re->desc); in rename_volumes() [all …]
|
D | vtbl.c | 137 struct ubi_rename_entry *re; in ubi_vtbl_rename_volumes() local 139 list_for_each_entry(re, rename_list, list) { in ubi_vtbl_rename_volumes() 141 struct ubi_volume *vol = re->desc->vol; in ubi_vtbl_rename_volumes() 144 if (re->remove) { in ubi_vtbl_rename_volumes() 150 vtbl_rec->name_len = cpu_to_be16(re->new_name_len); in ubi_vtbl_rename_volumes() 151 memcpy(vtbl_rec->name, re->new_name, re->new_name_len); in ubi_vtbl_rename_volumes() 152 memset(vtbl_rec->name + re->new_name_len, 0, in ubi_vtbl_rename_volumes() 153 UBI_VOL_NAME_MAX + 1 - re->new_name_len); in ubi_vtbl_rename_volumes()
|
D | vmt.c | 561 struct ubi_rename_entry *re; in ubi_rename_volumes() local 567 list_for_each_entry(re, rename_list, list) { in ubi_rename_volumes() 568 if (re->remove) { in ubi_rename_volumes() 569 err = ubi_remove_volume(re->desc, 1); in ubi_rename_volumes() 573 struct ubi_volume *vol = re->desc->vol; in ubi_rename_volumes() 576 vol->name_len = re->new_name_len; in ubi_rename_volumes() 577 memcpy(vol->name, re->new_name, re->new_name_len + 1); in ubi_rename_volumes()
|
/drivers/staging/lustre/lnet/lnet/ |
D | nidstrings.c | 470 struct cfs_range_expr *re; in cfs_ip_ar_min_max() local 477 list_for_each_entry(re, &el->el_exprs, re_link) { in cfs_ip_ar_min_max() 478 min_ip[re_count] = re->re_lo; in cfs_ip_ar_min_max() 479 max_ip[re_count] = re->re_hi; in cfs_ip_ar_min_max() 509 struct cfs_range_expr *re; in cfs_num_ar_min_max() local 514 list_for_each_entry(re, &el->el_exprs, re_link) { in cfs_num_ar_min_max() 515 if (re->re_lo < min_addr || !min_addr) in cfs_num_ar_min_max() 516 min_addr = re->re_lo; in cfs_num_ar_min_max() 517 if (re->re_hi > max_addr) in cfs_num_ar_min_max() 518 max_addr = re->re_hi; in cfs_num_ar_min_max() [all …]
|
/drivers/net/ethernet/cavium/octeon/ |
D | octeon_mgmt.c | 218 union mgmt_port_ring_entry re; in octeon_mgmt_rx_fill_ring() local 230 re.d64 = 0; in octeon_mgmt_rx_fill_ring() 231 re.s.len = size; in octeon_mgmt_rx_fill_ring() 232 re.s.addr = dma_map_single(p->dev, skb->data, in octeon_mgmt_rx_fill_ring() 237 p->rx_ring[p->rx_next_fill] = re.d64; in octeon_mgmt_rx_fill_ring() 252 union mgmt_port_ring_entry re; in octeon_mgmt_clean_tx_buffers() local 272 re.d64 = p->tx_ring[p->tx_next_clean]; in octeon_mgmt_clean_tx_buffers() 286 dma_unmap_single(p->dev, re.s.addr, re.s.len, in octeon_mgmt_clean_tx_buffers() 290 if (unlikely(re.s.tstamp)) { in octeon_mgmt_clean_tx_buffers() 368 union mgmt_port_ring_entry re; in octeon_mgmt_dequeue_rx_buffer() local [all …]
|
/drivers/net/ethernet/marvell/ |
D | sky2.c | 1168 struct rx_ring_info *re; in sky2_get_rx_data_size() local 1175 BUG_ON(sky2->rx_nfrags > ARRAY_SIZE(re->frag_addr)); in sky2_get_rx_data_size() 1209 const struct rx_ring_info *re) in sky2_rx_submit() argument 1213 sky2_rx_add(sky2, OP_PACKET, re->data_addr, sky2->rx_data_size); in sky2_rx_submit() 1215 for (i = 0; i < skb_shinfo(re->skb)->nr_frags; i++) in sky2_rx_submit() 1216 sky2_rx_add(sky2, OP_BUFFER, re->frag_addr[i], PAGE_SIZE); in sky2_rx_submit() 1220 static int sky2_rx_map_skb(struct pci_dev *pdev, struct rx_ring_info *re, in sky2_rx_map_skb() argument 1223 struct sk_buff *skb = re->skb; in sky2_rx_map_skb() 1226 re->data_addr = pci_map_single(pdev, skb->data, size, PCI_DMA_FROMDEVICE); in sky2_rx_map_skb() 1227 if (pci_dma_mapping_error(pdev, re->data_addr)) in sky2_rx_map_skb() [all …]
|
/drivers/gpu/drm/nouveau/nvkm/subdev/fb/ |
D | nv50.c | 160 const struct nvkm_enum *en, *re, *cl, *sc; in nv50_fb_intr() local 193 re = nvkm_enum_find(vm_fault , st1); in nv50_fb_intr() 209 st1, re ? re->name : ""); in nv50_fb_intr()
|
/drivers/staging/olpc_dcon/ |
D | Kconfig | 24 have an XO-1 (or if you're unsure what model you have), you should 34 have an XO-1.5 (or if you're unsure what model you have), you
|
/drivers/pci/ |
D | Kconfig | 43 bool "Enable PCI resource re-allocation detection" 47 re-allocation needs to be enabled. You can always use pci=realloc=on 50 automatically re-allocate PCI resources if SR-IOV BARs have not
|
/drivers/net/usb/ |
D | Kconfig | 352 Choose this option if you're using a host-to-host cable, 362 Choose this option if you're using a host-to-host cable based 372 Choose this option if you're using a host-to-host cable 379 Choose this option if you're using a 10/100 Ethernet USB2 422 Choose this option if you're using a host-to-host cable 430 Choose this option if you're using a host-to-host cable 440 Choose this option if you're using a host-to-host cable 475 Choose this option if you're using a host-to-host cable 500 Choose this option if you're using a Conexant CX82310-based ADSL 551 Choose this option if you're using a 14Mb USB-based PLC
|
/drivers/input/ |
D | Kconfig | 127 If you're using a digitizer, or a graphic tablet, and want to use 130 you're not using a digitizer, this value is ignored. 137 If you're using a digitizer, or a graphic tablet, and want to use 140 you're not using a digitizer, this value is ignored.
|
/drivers/atm/ |
D | nicstarmac.copyright | 11 * loss of link, and correctly re-enable PHY when link is 12 * re-established. (put back CFG_PHYIE)
|
/drivers/virtio/ |
D | virtio_input.c | 156 u32 mi, ma, re, fu, fl; in virtinput_cfg_abs() local 161 virtio_cread(vi->vdev, struct virtio_input_config, u.abs.res, &re); in virtinput_cfg_abs() 165 input_abs_set_res(vi->idev, abs, re); in virtinput_cfg_abs()
|
/drivers/remoteproc/ |
D | Kconfig | 31 It's safe to say n here if you're not interested in multimedia 77 It's safe to say n here if you're not interested in multimedia
|
/drivers/gpu/drm/i2c/ |
D | Kconfig | 11 This driver is currently only useful if you're also using
|
/drivers/md/bcache/ |
D | Kconfig | 14 Don't select this option unless you're a developer
|
/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 66 another message is sent to the guests to re-enable the VFs. 85 another message is sent to the guests to re-enable the VFs.
|
/drivers/cpuidle/ |
D | Kconfig | 13 If you're using an ACPI-enabled platform, you should say Y here.
|
/drivers/hid/ |
D | hid-multitouch.c | 920 struct hid_report_enum *re; in mt_set_input_mode() local 928 re = &(hdev->report_enum[HID_FEATURE_REPORT]); in mt_set_input_mode() 929 r = re->report_id_hash[td->inputmode]; in mt_set_input_mode() 952 struct hid_report_enum *re; in mt_set_maxcontacts() local 961 re = &hdev->report_enum[HID_FEATURE_REPORT]; in mt_set_maxcontacts() 962 r = re->report_id_hash[td->maxcontact_report_id]; in mt_set_maxcontacts()
|
/drivers/usb/gadget/ |
D | Kconfig | 55 Avoid enabling these messages, even if you're actively 58 either create new failure modes or remove the one you're 69 Avoid enabling these messages, even if you're actively 72 either create new failure modes or remove the one you're 83 files may help when you're troubleshooting or bringing up a 93 The information in these files may help when you're
|
/drivers/hwspinlock/ |
D | Kconfig | 42 It's safe to say n here if you're not interested in SIRF hardware
|
/drivers/mmc/core/ |
D | Kconfig | 37 about re-trying SD init requests. This can be a useful
|
/drivers/vfio/ |
D | Kconfig | 41 devices without IOMMU backing for the purpose of re-using the VFIO
|
/drivers/staging/android/ion/ |
D | Kconfig | 10 If you're not using Android its probably safe to
|