/linux-4.1.27/drivers/gpu/drm/udl/ |
D | udl_dmabuf.c | 33 struct dma_buf_attachment *attach) in udl_attach_dma_buf() argument 37 DRM_DEBUG_PRIME("[DEV:%s] size:%zd\n", dev_name(attach->dev), in udl_attach_dma_buf() 38 attach->dmabuf->size); in udl_attach_dma_buf() 45 attach->priv = udl_attach; in udl_attach_dma_buf() 51 struct dma_buf_attachment *attach) in udl_detach_dma_buf() argument 53 struct udl_drm_dmabuf_attachment *udl_attach = attach->priv; in udl_detach_dma_buf() 59 DRM_DEBUG_PRIME("[DEV:%s] size:%zd\n", dev_name(attach->dev), in udl_detach_dma_buf() 60 attach->dmabuf->size); in udl_detach_dma_buf() 65 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, in udl_detach_dma_buf() 70 attach->priv = NULL; in udl_detach_dma_buf() [all …]
|
/linux-4.1.27/drivers/gpu/drm/exynos/ |
D | exynos_drm_dmabuf.c | 33 struct dma_buf_attachment *attach) in exynos_gem_attach_dma_buf() argument 42 attach->priv = exynos_attach; in exynos_gem_attach_dma_buf() 48 struct dma_buf_attachment *attach) in exynos_gem_detach_dma_buf() argument 50 struct exynos_drm_dmabuf_attachment *exynos_attach = attach->priv; in exynos_gem_detach_dma_buf() 59 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, in exynos_gem_detach_dma_buf() 64 attach->priv = NULL; in exynos_gem_detach_dma_buf() 68 exynos_gem_map_dma_buf(struct dma_buf_attachment *attach, in exynos_gem_map_dma_buf() argument 71 struct exynos_drm_dmabuf_attachment *exynos_attach = attach->priv; in exynos_gem_map_dma_buf() 72 struct exynos_drm_gem_obj *gem_obj = dma_buf_to_obj(attach->dmabuf); in exynos_gem_map_dma_buf() 109 nents = dma_map_sg(attach->dev, sgt->sgl, sgt->orig_nents, dir); in exynos_gem_map_dma_buf() [all …]
|
/linux-4.1.27/drivers/media/v4l2-core/ |
D | videobuf2-vmalloc.c | 227 struct vb2_vmalloc_attachment *attach; in vb2_vmalloc_dmabuf_ops_attach() local 236 attach = kzalloc(sizeof(*attach), GFP_KERNEL); in vb2_vmalloc_dmabuf_ops_attach() 237 if (!attach) in vb2_vmalloc_dmabuf_ops_attach() 240 sgt = &attach->sgt; in vb2_vmalloc_dmabuf_ops_attach() 243 kfree(attach); in vb2_vmalloc_dmabuf_ops_attach() 251 kfree(attach); in vb2_vmalloc_dmabuf_ops_attach() 258 attach->dma_dir = DMA_NONE; in vb2_vmalloc_dmabuf_ops_attach() 259 dbuf_attach->priv = attach; in vb2_vmalloc_dmabuf_ops_attach() 266 struct vb2_vmalloc_attachment *attach = db_attach->priv; in vb2_vmalloc_dmabuf_ops_detach() local 269 if (!attach) in vb2_vmalloc_dmabuf_ops_detach() [all …]
|
D | videobuf2-dma-sg.c | 443 struct vb2_dma_sg_attachment *attach; in vb2_dma_sg_dmabuf_ops_attach() local 450 attach = kzalloc(sizeof(*attach), GFP_KERNEL); in vb2_dma_sg_dmabuf_ops_attach() 451 if (!attach) in vb2_dma_sg_dmabuf_ops_attach() 454 sgt = &attach->sgt; in vb2_dma_sg_dmabuf_ops_attach() 460 kfree(attach); in vb2_dma_sg_dmabuf_ops_attach() 472 attach->dma_dir = DMA_NONE; in vb2_dma_sg_dmabuf_ops_attach() 473 dbuf_attach->priv = attach; in vb2_dma_sg_dmabuf_ops_attach() 481 struct vb2_dma_sg_attachment *attach = db_attach->priv; in vb2_dma_sg_dmabuf_ops_detach() local 484 if (!attach) in vb2_dma_sg_dmabuf_ops_detach() 487 sgt = &attach->sgt; in vb2_dma_sg_dmabuf_ops_detach() [all …]
|
D | videobuf2-dma-contig.c | 240 struct vb2_dc_attachment *attach; in vb2_dc_dmabuf_ops_attach() local 247 attach = kzalloc(sizeof(*attach), GFP_KERNEL); in vb2_dc_dmabuf_ops_attach() 248 if (!attach) in vb2_dc_dmabuf_ops_attach() 251 sgt = &attach->sgt; in vb2_dc_dmabuf_ops_attach() 257 kfree(attach); in vb2_dc_dmabuf_ops_attach() 269 attach->dma_dir = DMA_NONE; in vb2_dc_dmabuf_ops_attach() 270 dbuf_attach->priv = attach; in vb2_dc_dmabuf_ops_attach() 278 struct vb2_dc_attachment *attach = db_attach->priv; in vb2_dc_dmabuf_ops_detach() local 281 if (!attach) in vb2_dc_dmabuf_ops_detach() 284 sgt = &attach->sgt; in vb2_dc_dmabuf_ops_detach() [all …]
|
/linux-4.1.27/drivers/gpu/drm/ |
D | drm_prime.c | 120 struct dma_buf_attachment *attach) in drm_gem_map_attach() argument 131 attach->priv = prime_attach; in drm_gem_map_attach() 140 struct dma_buf_attachment *attach) in drm_gem_map_detach() argument 142 struct drm_prime_attachment *prime_attach = attach->priv; in drm_gem_map_detach() 156 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, in drm_gem_map_detach() 163 attach->priv = NULL; in drm_gem_map_detach() 180 static struct sg_table *drm_gem_map_dma_buf(struct dma_buf_attachment *attach, in drm_gem_map_dma_buf() argument 183 struct drm_prime_attachment *prime_attach = attach->priv; in drm_gem_map_dma_buf() 184 struct drm_gem_object *obj = attach->dmabuf->priv; in drm_gem_map_dma_buf() 204 if (!dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir)) { in drm_gem_map_dma_buf() [all …]
|
D | drm_bridge.c | 62 if (bridge->funcs->attach) in drm_bridge_attach() 63 return bridge->funcs->attach(bridge); in drm_bridge_attach()
|
D | drm_gem_cma_helper.c | 454 struct dma_buf_attachment *attach, in drm_gem_cma_prime_import_sg_table() argument 463 cma_obj = __drm_gem_cma_create(dev, attach->dmabuf->size); in drm_gem_cma_prime_import_sg_table() 470 DRM_DEBUG_PRIME("dma_addr = %pad, size = %zu\n", &cma_obj->paddr, attach->dmabuf->size); in drm_gem_cma_prime_import_sg_table()
|
D | drm_mipi_dsi.c | 212 if (!ops || !ops->attach) in mipi_dsi_attach() 215 return ops->attach(dsi->host, dsi); in mipi_dsi_attach()
|
/linux-4.1.27/drivers/dma-buf/ |
D | dma-buf.c | 421 struct dma_buf_attachment *attach; in dma_buf_attach() local 427 attach = kzalloc(sizeof(struct dma_buf_attachment), GFP_KERNEL); in dma_buf_attach() 428 if (attach == NULL) in dma_buf_attach() 431 attach->dev = dev; in dma_buf_attach() 432 attach->dmabuf = dmabuf; in dma_buf_attach() 436 if (dmabuf->ops->attach) { in dma_buf_attach() 437 ret = dmabuf->ops->attach(dmabuf, dev, attach); in dma_buf_attach() 441 list_add(&attach->node, &dmabuf->attachments); in dma_buf_attach() 444 return attach; in dma_buf_attach() 447 kfree(attach); in dma_buf_attach() [all …]
|
/linux-4.1.27/drivers/gpu/drm/vmwgfx/ |
D | vmwgfx_prime.c | 44 struct dma_buf_attachment *attach) in vmw_prime_map_attach() argument 50 struct dma_buf_attachment *attach) in vmw_prime_map_detach() argument 54 static struct sg_table *vmw_prime_map_dma_buf(struct dma_buf_attachment *attach, in vmw_prime_map_dma_buf() argument 60 static void vmw_prime_unmap_dma_buf(struct dma_buf_attachment *attach, in vmw_prime_unmap_dma_buf() argument 106 .attach = vmw_prime_map_attach,
|
/linux-4.1.27/drivers/gpu/drm/armada/ |
D | armada_gem.c | 421 armada_gem_prime_map_dma_buf(struct dma_buf_attachment *attach, in armada_gem_prime_map_dma_buf() argument 424 struct drm_gem_object *obj = attach->dmabuf->priv; in armada_gem_prime_map_dma_buf() 456 if (dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir) == 0) { in armada_gem_prime_map_dma_buf() 467 if (dma_map_sg(attach->dev, sgt->sgl, sgt->nents, dir) == 0) in armada_gem_prime_map_dma_buf() 490 static void armada_gem_prime_unmap_dma_buf(struct dma_buf_attachment *attach, in armada_gem_prime_unmap_dma_buf() argument 493 struct drm_gem_object *obj = attach->dmabuf->priv; in armada_gem_prime_unmap_dma_buf() 498 dma_unmap_sg(attach->dev, sgt->sgl, sgt->nents, dir); in armada_gem_prime_unmap_dma_buf() 554 struct dma_buf_attachment *attach; in armada_gem_prime_import() local 569 attach = dma_buf_attach(buf, dev->dev); in armada_gem_prime_import() 570 if (IS_ERR(attach)) in armada_gem_prime_import() [all …]
|
/linux-4.1.27/drivers/staging/android/ion/ |
D | ion_test.c | 48 struct dma_buf_attachment *attach; in ion_handle_test_dma() local 55 attach = dma_buf_attach(dma_buf, dev); in ion_handle_test_dma() 56 if (IS_ERR(attach)) in ion_handle_test_dma() 57 return PTR_ERR(attach); in ion_handle_test_dma() 59 table = dma_buf_map_attachment(attach, dir); in ion_handle_test_dma() 95 dma_buf_unmap_attachment(attach, table, dir); in ion_handle_test_dma() 96 dma_buf_detach(dma_buf, attach); in ion_handle_test_dma()
|
/linux-4.1.27/drivers/gpu/drm/tegra/ |
D | gem.c | 320 struct dma_buf_attachment *attach; in tegra_bo_import() local 328 attach = dma_buf_attach(buf, drm->dev); in tegra_bo_import() 329 if (IS_ERR(attach)) { in tegra_bo_import() 330 err = PTR_ERR(attach); in tegra_bo_import() 336 bo->sgt = dma_buf_map_attachment(attach, DMA_TO_DEVICE); in tegra_bo_import() 360 bo->gem.import_attach = attach; in tegra_bo_import() 366 dma_buf_unmap_attachment(attach, bo->sgt, DMA_TO_DEVICE); in tegra_bo_import() 368 dma_buf_detach(buf, attach); in tegra_bo_import() 516 tegra_gem_prime_map_dma_buf(struct dma_buf_attachment *attach, in tegra_gem_prime_map_dma_buf() argument 519 struct drm_gem_object *gem = attach->dmabuf->priv; in tegra_gem_prime_map_dma_buf() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/phy/ |
D | rockchip-usb-phy.txt | 17 "0x320" - for PHY attach to OTG controller 18 "0x334" - for PHY attach to HOST0 controller 19 "0x348" - for PHY attach to HOST1 controller
|
/linux-4.1.27/drivers/gpu/drm/i915/ |
D | i915_gem_dmabuf.c | 278 struct dma_buf_attachment *attach; in i915_gem_prime_import() local 297 attach = dma_buf_attach(dma_buf, dev->dev); in i915_gem_prime_import() 298 if (IS_ERR(attach)) in i915_gem_prime_import() 299 return ERR_CAST(attach); in i915_gem_prime_import() 311 obj->base.import_attach = attach; in i915_gem_prime_import() 316 dma_buf_detach(dma_buf, attach); in i915_gem_prime_import()
|
/linux-4.1.27/drivers/gpu/drm/nouveau/ |
D | nouveau_prime.c | 60 struct dma_buf_attachment *attach, in nouveau_gem_prime_import_sg_table() argument 64 struct reservation_object *robj = attach->dmabuf->resv; in nouveau_gem_prime_import_sg_table() 71 ret = nouveau_bo_new(dev, attach->dmabuf->size, 0, flags, 0, 0, in nouveau_gem_prime_import_sg_table()
|
/linux-4.1.27/drivers/net/ethernet/qlogic/qlcnic/ |
D | qlcnic_dcb.h | 31 int (*attach) (struct qlcnic_dcb *); member 67 if (dcb && dcb->ops->attach) in qlcnic_dcb_attach() 68 return dcb->ops->attach(dcb); in qlcnic_dcb_attach()
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_prime.c | 61 struct dma_buf_attachment *attach, in radeon_gem_prime_import_sg_table() argument 64 struct reservation_object *resv = attach->dmabuf->resv; in radeon_gem_prime_import_sg_table() 70 ret = radeon_bo_create(rdev, attach->dmabuf->size, PAGE_SIZE, false, in radeon_gem_prime_import_sg_table()
|
/linux-4.1.27/drivers/net/wireless/prism54/ |
D | oid_mgt.c | 331 struct obj_attachment *attach = data; in mgt_le_to_cpu() local 332 attach->id = le16_to_cpu(attach->id); in mgt_le_to_cpu() 333 attach->size = le16_to_cpu(attach->size); in mgt_le_to_cpu() 400 struct obj_attachment *attach = data; in mgt_cpu_to_le() local 401 attach->id = cpu_to_le16(attach->id); in mgt_cpu_to_le() 402 attach->size = cpu_to_le16(attach->size); in mgt_cpu_to_le() 857 struct obj_attachment *attach = r->ptr; in mgt_response_to_str() local 860 attach->id, in mgt_response_to_str() 861 attach->size); in mgt_response_to_str()
|
D | isl_ioctl.c | 1256 struct obj_attachment *attach; in prism54_set_genie() local 1265 alen = sizeof(*attach) + priv->wpa_ie_len; in prism54_set_genie() 1266 attach = kzalloc(alen, GFP_KERNEL); in prism54_set_genie() 1267 if (attach == NULL) in prism54_set_genie() 1275 attach->type = (WLAN_FC_TYPE_MGMT << 2) | in prism54_set_genie() 1277 attach->id = -1; in prism54_set_genie() 1278 attach->size = priv->wpa_ie_len; in prism54_set_genie() 1279 memcpy(attach->data, extra, priv->wpa_ie_len); in prism54_set_genie() 1281 ret = mgt_set_varlen(priv, DOT11_OID_ATTACHMENT, attach, in prism54_set_genie() 1284 attach->type = (WLAN_FC_TYPE_MGMT << 2) | in prism54_set_genie() [all …]
|
/linux-4.1.27/drivers/scsi/pcmcia/ |
D | Kconfig | 16 Say Y here if you intend to attach this type of PCMCIA SCSI host 25 Say Y here if you intend to attach this type of PCMCIA SCSI host 35 If you intend to attach this type of PCMCIA SCSI host adapter to 68 Say Y here if you intend to attach this type of PCMCIA SCSI host
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | msm_gem_prime.c | 54 struct dma_buf_attachment *attach, struct sg_table *sg) in msm_gem_prime_import_sg_table() argument 56 return msm_gem_import(dev, attach->dmabuf->size, sg); in msm_gem_prime_import_sg_table()
|
D | msm_mmu.h | 24 int (*attach)(struct msm_mmu *mmu, const char **names, int cnt); member
|
D | msm_iommu.c | 120 .attach = msm_iommu_attach,
|
D | msm_drv.h | 197 struct dma_buf_attachment *attach, struct sg_table *sg);
|
/linux-4.1.27/drivers/usb/serial/ |
D | io_tables.h | 110 .attach = edge_startup, 142 .attach = edge_startup, 174 .attach = edge_startup, 206 .attach = edge_startup,
|
D | keyspan.h | 549 .attach = keyspan_fake_startup, 569 .attach = keyspan_startup, 593 .attach = keyspan_startup, 617 .attach = keyspan_startup,
|
D | empeg.c | 57 .attach = empeg_startup,
|
D | visor.c | 177 .attach = treo_attach, 197 .attach = clie_5_attach, 217 .attach = clie_3_5_startup,
|
D | symbolserial.c | 193 .attach = symbol_startup,
|
D | safe_serial.c | 298 .attach = safe_startup,
|
D | ipw.c | 300 .attach = ipw_attach,
|
D | keyspan_pda.c | 740 .attach = keyspan_pda_fake_startup, 753 .attach = keyspan_pda_fake_startup,
|
D | qcserial.c | 439 .attach = qc_attach,
|
D | ir-usb.c | 83 .attach = ir_startup,
|
D | whiteheat.c | 110 .attach = whiteheat_firmware_attach, 122 .attach = whiteheat_attach,
|
D | opticon.c | 416 .attach = opticon_startup,
|
D | ipaq.c | 510 .attach = ipaq_startup,
|
D | ssu100.c | 546 .attach = ssu100_attach,
|
/linux-4.1.27/net/netfilter/ |
D | core.c | 231 void (*attach)(struct sk_buff *, const struct sk_buff *); in nf_ct_attach() local 235 attach = rcu_dereference(ip_ct_attach); in nf_ct_attach() 236 if (attach) in nf_ct_attach() 237 attach(new, skb); in nf_ct_attach()
|
/linux-4.1.27/Documentation/security/ |
D | Yama.txt | 19 attach to other running processes (e.g. Firefox, SSH sessions, GPG agent, 47 may attach. 65 2 - admin-only attach: only processes with CAP_SYS_PTRACE may use ptrace 68 3 - no attach: no processes may use ptrace with PTRACE_ATTACH nor via
|
D | keys.txt | 409 description, and to instantiate it with the supplied payload and attach it 477 attempts to attach it as the session keyring, returning an error if that 481 To attach to a named keyring, the keyring must have search permission for 1163 The method can attach anything it likes to type_data[] and payload. These 1184 This method is called to attach a payload to a key during construction. 1194 This method does not have to lock the key in order to attach a payload. 1255 and may attach something to the preparsed pointer for use by (*cmp)(). 1418 In this case, the program isn't required to actually attach the key to a ring;
|
/linux-4.1.27/sound/aoa/core/ |
D | core.c | 94 goto attach; in aoa_fabric_register() 107 attach: in aoa_fabric_register()
|
/linux-4.1.27/tools/usb/usbip/ |
D | README | 39 server:# (Physically attach your USB device.) 61 client:# usbip attach --remote <host> --busid 1-2 75 Physically attach your USB devices to this host. 170 deux:# usbip attach --remote 10.0.0.3 --busid 1-1
|
/linux-4.1.27/include/linux/ |
D | atm_tcp.h | 13 int (*attach)(struct atm_vcc *vcc,int itf); member
|
D | hdlc.h | 40 int (*attach)(struct net_device *dev, member
|
D | dma-buf.h | 75 int (*attach)(struct dma_buf *, struct device *, member
|
D | cgroup-defs.h | 410 void (*attach)(struct cgroup_subsys_state *css, member
|
D | parport.h | 252 void (*attach) (struct parport *); member
|
/linux-4.1.27/Documentation/acpi/ |
D | scan_handlers.txt | 38 int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id); 44 maintained by the ACPI core and the .attach() and .detach() callbacks are 51 available scan handlers. If a matching scan handler is found, its .attach() 59 If the .attach() callback returns 0, it means that the device node is not
|
/linux-4.1.27/drivers/acpi/ |
D | int340x_thermal.c | 48 .attach = int340x_thermal_handler_attach,
|
D | acpi_pnp.c | 362 .attach = acpi_pnp_attach,
|
D | acpi_cmos_rtc.c | 83 .attach = acpi_install_cmos_rtc_space_handler,
|
D | container.c | 111 .attach = container_device_attach,
|
D | acpi_memhotplug.c | 65 .attach = acpi_memory_device_add, 370 memory_device_handler.attach = NULL; in acpi_memory_hotplug_init()
|
D | acpi_apd.c | 144 .attach = acpi_apd_create_device,
|
D | acpi_processor.c | 492 .attach = acpi_processor_add,
|
D | pci_root.c | 70 .attach = acpi_pci_root_add,
|
/linux-4.1.27/Documentation/i2c/ |
D | old-module-parameters | 6 control how the driver would probe i2c buses and attach to devices. These 8 address), "force" (to forcibly attach the driver to a given device) and
|
D | functionality | 6 is implemented when it is given the option to attach to an adapter: 94 Before a client tries to attach to an adapter, or even do tests to check
|
D | upgrading-clients | 50 dev_err(dev, "failed to attach client\n"); 154 - dev_err(dev, "failed to attach client\n");
|
/linux-4.1.27/drivers/mtd/ubi/ |
D | Makefile | 3 ubi-y += vtbl.o vmt.o upd.o build.o cdev.o kapi.o eba.o io.o wl.o attach.o
|
D | Kconfig | 55 by the "attach" ioctl. 69 The on-flash fastmap contains all information needed to attach
|
/linux-4.1.27/drivers/gpu/drm/qxl/ |
D | qxl_prime.c | 49 struct drm_device *dev, struct dma_buf_attachment *attach, in qxl_gem_prime_import_sg_table() argument
|
/linux-4.1.27/drivers/staging/comedi/drivers/ |
D | amplc_pc236.c | 74 .attach = pc236_attach,
|
D | ni_labpc.c | 115 .attach = labpc_attach,
|
D | amplc_dio200.c | 263 .attach = dio200_attach,
|
D | amplc_pc263.c | 100 .attach = pc263_attach,
|
D | dac02.c | 143 .attach = dac02_attach,
|
D | rti802.c | 122 .attach = rti802_attach,
|
D | pcl724.c | 142 .attach = pcl724_attach,
|
D | das08_isa.c | 189 .attach = das08_isa_attach,
|
D | dt2817.c | 142 .attach = dt2817_attach,
|
D | pcmad.c | 148 .attach = pcmad_attach,
|
D | pcmda12.c | 167 .attach = pcmda12_attach,
|
D | fl512.c | 149 .attach = fl512_attach,
|
D | ssv_dnp.c | 179 .attach = dnp_attach,
|
D | dt2815.c | 216 .attach = dt2815_attach,
|
D | pcm3724.c | 213 .attach = pcm3724_attach,
|
D | aio_iiro_16.c | 237 .attach = aio_iiro_16_attach,
|
D | adq12b.c | 261 .attach = adq12b_attach,
|
D | aio_aio12_8.c | 239 .attach = aio_aio12_8_attach,
|
D | mpc624.c | 350 .attach = mpc624_attach,
|
D | ni_atmio.c | 375 .attach = ni_atmio_attach,
|
D | 8255.c | 335 .attach = dev_8255_attach,
|
D | pcl730.c | 339 .attach = pcl730_attach,
|
D | c6xdigio.c | 300 .attach = c6xdigio_attach,
|
D | comedi_parport.c | 307 .attach = parport_attach,
|
D | dt2814.c | 290 .attach = dt2814_attach,
|
D | rti800.c | 352 .attach = rti800_attach,
|
D | multiq3.c | 282 .attach = multiq3_attach,
|
D | dt2811.c | 464 .attach = dt2811_attach,
|
D | comedi_bond.c | 348 .attach = bonding_attach,
|
D | ni_at_ao.c | 373 .attach = atao_attach,
|
D | pcl726.c | 422 .attach = pcl726_attach,
|
D | unioxx5.c | 499 .attach = unioxx5_attach,
|
D | ii_pci20kc.c | 519 .attach = ii20k_attach,
|
D | comedi_test.c | 449 .attach = waveform_attach,
|
D | dt2801.c | 632 .attach = dt2801_attach,
|
D | s526.c | 607 .attach = s526_attach,
|
D | pcl711.c | 511 .attach = pcl711_attach,
|
D | das16m1.c | 637 .attach = das16m1_attach,
|
D | pcmuio.c | 623 .attach = pcmuio_attach,
|
D | dmm32at.c | 620 .attach = dmm32at_attach,
|
/linux-4.1.27/Documentation/networking/ |
D | ixgbe.txt | 35 optics and/or the direct attach cables listed below. 39 82598-based adapters support all passive direct attach cables that comply 40 with SFF-8431 v4.1 and SFF-8472 v10.4 specifications. Active direct attach 54 The following is a list of 3rd party SFP+ modules and direct attach cables that 70 82599-based adapters support all passive and active limiting direct attach 91 The following is a list of 3rd party SFP+ modules and direct attach cables that 100 82598-based adapters support all passive direct attach cables that comply 101 with SFF-8431 v4.1 and SFF-8472 v10.4 specifications. Active direct attach
|
/linux-4.1.27/arch/mips/boot/dts/brcm/ |
D | bcm97420c.dts | 26 /* FIXME: MAC driver comes up but cannot attach to PHY */
|
/linux-4.1.27/drivers/net/wireless/ath/ath5k/ |
D | Makefile | 11 ath5k-y += attach.o
|
/linux-4.1.27/include/drm/ |
D | drm_gem_cma_helper.h | 63 struct dma_buf_attachment *attach,
|
D | drm_mipi_dsi.h | 87 int (*attach)(struct mipi_dsi_host *host, member
|
/linux-4.1.27/drivers/staging/fwserial/ |
D | TODO | 8 3. Expose means of controlling attach/detach of peers via sysfs. Include
|
/linux-4.1.27/drivers/net/ethernet/fujitsu/ |
D | Kconfig | 25 Say Y here if you intend to attach a Fujitsu FMV-J18x or compatible
|
/linux-4.1.27/drivers/media/common/b2c2/ |
D | flexcop-fe-tuner.c | 624 int (*attach)(struct flexcop_device *, struct i2c_adapter *); member 642 if (!flexcop_frontends[i].attach) in flexcop_frontend_init() 647 if (flexcop_frontends[i].attach(fc, &fc->fc_i2c_adap[0].i2c_adap)) in flexcop_frontend_init()
|
/linux-4.1.27/drivers/net/wan/ |
D | hdlc_raw.c | 76 result = hdlc->attach(dev, new_settings.encoding, in raw_ioctl()
|
D | hdlc_raw_eth.c | 91 result = hdlc->attach(dev, new_settings.encoding, in raw_eth_ioctl()
|
D | hdlc_x25.c | 209 result=hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT); in x25_ioctl()
|
D | hostess_sv11.c | 279 dev_to_hdlc(netdev)->attach = hostess_attach; in sv11_init()
|
D | sealevel.c | 188 dev_to_hdlc(dev)->attach = sealevel_attach; in slvl_setup()
|
D | hdlc_cisco.c | 368 result = hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT); in cisco_ioctl()
|
D | c101.c | 378 hdlc->attach = sca_attach; in c101_run()
|
D | pci200syn.c | 396 hdlc->attach = sca_attach; in pci200_pci_init_one()
|
D | pc300too.c | 456 hdlc->attach = sca_attach; in pc300_pci_init_one()
|
D | n2.c | 471 hdlc->attach = sca_attach; in n2_run()
|
/linux-4.1.27/drivers/net/ethernet/xircom/ |
D | Kconfig | 25 Say Y here if you intend to attach a Xircom 16-bit PCMCIA (PC-card)
|
/linux-4.1.27/net/core/ |
D | netclassid_cgroup.c | 109 .attach = cgrp_attach,
|
D | netprio_cgroup.c | 251 .attach = net_prio_attach,
|
/linux-4.1.27/drivers/net/ethernet/3com/ |
D | Kconfig | 51 Say Y here if you intend to attach a 3Com 3c574 or compatible PCMCIA 61 Say Y here if you intend to attach a 3Com 3c589 or compatible PCMCIA
|
/linux-4.1.27/Documentation/devicetree/ |
D | of_unittest.txt | 101 Before executing OF unittest, it is required to attach the test data to 114 attach_node_and_children() uses of_attach_node() to attach the nodes into the 130 required to attach the root('/') node. All other nodes are attached by calling
|
/linux-4.1.27/drivers/scsi/bfa/ |
D | bfa_modules.h | 101 void (*attach) (struct bfa_s *bfa, void *bfad, member
|
D | bfa_fcs.c | 33 void (*attach) (struct bfa_fcs_s *fcs); member 86 if (mod->attach) in bfa_fcs_attach() 87 mod->attach(fcs); in bfa_fcs_attach()
|
/linux-4.1.27/Documentation/i2c/busses/ |
D | i2c-ocores | 23 There is also a possibility to attach a list of i2c_board_info which
|
/linux-4.1.27/drivers/usb/misc/sisusbvga/ |
D | Kconfig | 7 Say Y here if you intend to attach a USB2VGA dongle based on a
|
/linux-4.1.27/Documentation/cgroups/ |
D | cgroups.txt | 198 - in fork and exit, to attach and detach a task from its css_set. 410 Now attach your shell to this cgroup: 429 Note that it is PID, not PIDs. You can only attach ONE task at a time. 430 If you have several tasks to attach, you have to do it one after another: 437 You can attach the current shell task by echoing 0: 585 subsystem returns an error, this will abort the attach operation. 600 attach() or cancel_attach() will be called in future. 619 Called when a task attach operation has failed after can_attach() has succeeded. 625 void attach(struct cgroup *cgrp, struct cgroup_taskset *tset) 675 Q: When I attach processes, only the first of the line gets really attached !
|
/linux-4.1.27/drivers/pps/clients/ |
D | pps_parport.c | 213 .attach = parport_attach,
|
/linux-4.1.27/drivers/w1/ |
D | w1.h | 297 void w1_reconnect_slaves(struct w1_family *f, int attach);
|
D | w1.c | 858 void w1_reconnect_slaves(struct w1_family *f, int attach) in w1_reconnect_slaves() argument 875 if ((attach && sl->family->fid == W1_FAMILY_DEFAULT in w1_reconnect_slaves() 877 (!attach && sl->family->fid == f->fid)) { in w1_reconnect_slaves()
|
/linux-4.1.27/drivers/scsi/device_handler/ |
D | scsi_dh.c | 114 d = scsi_dh->attach(sdev); in scsi_dh_handler_attach() 358 if (!scsi_dh->attach || !scsi_dh->detach) in scsi_register_device_handler()
|
D | scsi_dh_hp_sw.c | 378 .attach = hp_sw_bus_attach,
|
D | scsi_dh_emc.c | 695 .attach = clariion_bus_attach,
|
/linux-4.1.27/drivers/vhost/ |
D | vhost.c | 350 struct vhost_attach_cgroups_struct attach; in vhost_attach_cgroups() local 352 attach.owner = current; in vhost_attach_cgroups() 353 vhost_work_init(&attach.work, vhost_attach_cgroups_work); in vhost_attach_cgroups() 354 vhost_work_queue(dev, &attach.work); in vhost_attach_cgroups() 355 vhost_work_flush(dev, &attach.work); in vhost_attach_cgroups() 356 return attach.ret; in vhost_attach_cgroups()
|
/linux-4.1.27/Documentation/ |
D | dma-buf-sharing.txt | 96 After this, the buffer-user needs to attach its device with the buffer, which 104 for scatterlist operations. It will optionally call the 'attach' dma_buf 118 access to the buffer using dma_buf_map_attachment API. At least one attach to 196 - Importance of attach-detach and {map,unmap}_dma_buf operation pairs 197 The attach-detach calls allow the exporter to figure out backing-storage 210 another new buffer-user intends to attach itself to this buffer, it might 228 If the exporter chooses not to allow an attach() operation once a
|
D | SM501.txt | 71 attach if the PLL selection is different.
|
D | bcache.txt | 46 have to manually attach: 57 device, it'll be running in passthrough mode until you attach it to a cache. 87 echo <CSET-UUID> > /sys/block/bcache0/bcache/attach 201 attach
|
/linux-4.1.27/drivers/net/ethernet/ti/ |
D | netcp.h | 185 int (*attach)(void *inst_priv, struct net_device *ndev, member
|
/linux-4.1.27/Documentation/netlabel/ |
D | introduction.txt | 9 NetLabel is a mechanism which can be used by kernel security modules to attach
|
/linux-4.1.27/drivers/usb/usbip/ |
D | vhci_sysfs.c | 240 static DEVICE_ATTR(attach, S_IWUSR, NULL, store_attach);
|
D | usbip_protocol.txt | 170 OP_REQ_IMPORT: Request to import (attach) a remote USB device. 187 OP_REP_IMPORT: Reply to import (attach) a remote USB device.
|
/linux-4.1.27/drivers/pps/generators/ |
D | pps_gen_parport.c | 239 .attach = parport_attach,
|
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/engine/disp/ |
D | nv50.h | 87 int (*attach)(struct nvkm_object *, struct nvkm_object *, u32); member
|
D | gf110.c | 356 .attach = gf110_disp_dmac_object_attach, 450 .attach = gf110_disp_dmac_object_attach, 531 .attach = gf110_disp_dmac_object_attach,
|
D | nv50.c | 76 nv_parent(chan)->object_attach = impl->attach; in nv50_disp_chan_create_() 585 .attach = nv50_disp_dmac_object_attach, 687 .attach = nv50_disp_dmac_object_attach, 777 .attach = nv50_disp_dmac_object_attach,
|
/linux-4.1.27/drivers/spi/ |
D | spi-lm70llp.c | 325 .attach = spi_lm70llp_attach,
|
D | spi-butterfly.c | 333 .attach = butterfly_attach,
|
/linux-4.1.27/Documentation/filesystems/ |
D | 9p.txt | 123 attach command (Tattach) for that user. 127 any = v9fs does single attach and performs all
|
D | ubifs.txt | 110 The following is an example of the kernel boot arguments to attach mtd0
|
/linux-4.1.27/security/apparmor/include/ |
D | policy.h | 208 const char *attach; member
|
/linux-4.1.27/Documentation/watchdog/ |
D | pcwd-watchdog.txt | 18 attach a running driver for use with that card. After the watchdog
|
/linux-4.1.27/Documentation/virtual/uml/ |
D | UserModeLinux-HOWTO.txt | 478 lines and consoles'' to see how to attach the consoles to 582 It is possible to attach UML serial lines and consoles to many types 586 You can attach them to host ptys, ttys, file descriptors, and ports. 591 o hook two virtual machines together by having one attach to a pty 592 and having the other attach to the corresponding tty 631 There are a number of different types of channels to attach a UML 633 attach to. 659 This will make UML attach the device to the specified tty (i.e 667 will attach UML's console 1 to the host's /dev/tty3). If the tty that 687 This will attach the UML devices to the specified host port. [all …]
|
/linux-4.1.27/drivers/i2c/busses/ |
D | i2c-parport.c | 271 .attach = i2c_parport_attach,
|
/linux-4.1.27/drivers/net/ethernet/8390/ |
D | Kconfig | 25 Say Y here if you intend to attach an Asix AX88190-based PCMCIA 144 Say Y here if you intend to attach an NE2000 compatible PCMCIA
|
/linux-4.1.27/drivers/bus/ |
D | Kconfig | 56 You can attach many different devices on it, such as NOR, onenand.
|
/linux-4.1.27/net/sched/ |
D | sch_mq.c | 243 .attach = mq_attach,
|
D | sch_api.c | 827 if (new && new->ops->attach) in qdisc_graft() 848 if (new && !new->ops->attach) in qdisc_graft() 852 if (new && new->ops->attach) in qdisc_graft() 853 new->ops->attach(new); in qdisc_graft()
|
D | sch_mqprio.c | 410 .attach = mqprio_attach,
|
/linux-4.1.27/drivers/media/pci/saa7146/ |
D | hexium_orion.c | 475 .attach = hexium_attach,
|
D | hexium_gemini.c | 403 .attach = hexium_attach,
|
/linux-4.1.27/sound/oss/ |
D | dev_table.h | 53 void (*attach) (struct address_info *hw_config); member
|
/linux-4.1.27/kernel/ |
D | cgroup_freezer.c | 481 .attach = freezer_attach,
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-extcon | 36 attach/detach information of the corresponding extcon object.
|
/linux-4.1.27/include/linux/usb/ |
D | serial.h | 241 int (*attach)(struct usb_serial *serial); member
|
/linux-4.1.27/drivers/parport/ |
D | share.c | 109 drv->attach(port); in attach_driver_chain() 163 drv->attach(port); in parport_register_driver()
|
/linux-4.1.27/drivers/staging/comedi/ |
D | drivers.c | 817 if (!driv->attach) { in comedi_device_attach() 829 ret = driv->attach(dev, it); in comedi_device_attach()
|
D | comedidev.h | 245 int (*attach)(struct comedi_device *, struct comedi_devconfig *); member
|
/linux-4.1.27/include/media/ |
D | saa7146.h | 103 int (*attach)(struct saa7146_dev *, struct saa7146_pci_extension_data *); member
|
/linux-4.1.27/drivers/gpu/drm/bridge/ |
D | ptn3460.c | 305 .attach = ptn3460_bridge_attach,
|
D | ps8622.c | 543 .attach = ps8622_attach,
|
/linux-4.1.27/Documentation/dvb/ |
D | bt8xx.txt | 22 => "DVB for Linux" "DVB Core Support" "Load and attach frontend modules as needed"
|
/linux-4.1.27/drivers/auxdisplay/ |
D | Kconfig | 93 It will work fine. However, you can't attach it to the fbdev driver
|
/linux-4.1.27/security/apparmor/ |
D | apparmorfs.c | 299 if (profile->attach) in aa_fs_seq_profattach_show() 300 seq_printf(seq, "%s\n", profile->attach); in aa_fs_seq_profattach_show()
|
/linux-4.1.27/Documentation/input/ |
D | joystick.txt | 451 kernel, you also need to attach a serial port to it. to do that, run the 495 To use it, you need to attach the serial port to the driver using the 515 To use it, you need to attach the serial port to the driver using the 534 computers, is supported by the stinger.c module. To use it, attach the
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | mcg.c | 1328 u8 gid[16], u8 attach, u8 block_loopback, in mlx4_QP_ATTACH() argument 1345 if (attach && block_loopback) in mlx4_QP_ATTACH() 1348 err = mlx4_cmd(dev, mailbox->dma, qpn, attach, in mlx4_QP_ATTACH() 1353 if (err && !attach && in mlx4_QP_ATTACH()
|
/linux-4.1.27/Documentation/sound/oss/ |
D | AudioExcelDSP16 | 85 the audio card and will recognize and attach it.
|
/linux-4.1.27/Documentation/hwmon/ |
D | hwmon-kernel-api.txt | 52 driver data. hwmon_device_register_with_groups will attach this pointer
|
/linux-4.1.27/Documentation/extcon/ |
D | porting-android-switch-class | 80 You can notify others of the cable attach/detach events with
|
/linux-4.1.27/drivers/mtd/nand/ |
D | Kconfig | 143 must advertise a platform_device for the driver to attach. 176 must advertise a platform_device for the driver to attach. 420 must advertise a platform_device for the driver to attach.
|
/linux-4.1.27/include/scsi/ |
D | scsi_device.h | 212 struct scsi_dh_data *(*attach)(struct scsi_device *); member
|
/linux-4.1.27/Documentation/early-userspace/ |
D | buffer-format.txt | 96 (GNU cpio is reported to attach the data to the last instance of a
|
/linux-4.1.27/drivers/net/ethernet/smsc/ |
D | Kconfig | 63 Say Y here if you intend to attach an SMC 91Cxx compatible PCMCIA
|
/linux-4.1.27/drivers/misc/vmw_vmci/ |
D | vmci_queue_pair.c | 939 static int qp_notify_peer_local(bool attach, struct vmci_handle handle) in qp_notify_peer_local() argument 949 attach ? VMCI_EVENT_QP_PEER_ATTACH : VMCI_EVENT_QP_PEER_DETACH; in qp_notify_peer_local() 1535 static int qp_notify_peer(bool attach, in qp_notify_peer() argument 1559 ev.msg.event_data.event = attach ? in qp_notify_peer() 1568 attach ? "ATTACH" : "DETACH", peer_id); in qp_notify_peer()
|
/linux-4.1.27/drivers/net/arcnet/ |
D | Kconfig | 130 Say Y here if you intend to attach this type of ARCnet PCMCIA card
|
/linux-4.1.27/Documentation/frv/ |
D | gdbstub.txt | 61 attach. If not, then the kernel will boot immediately and GDB will have to
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-domains.txt | 71 arch_init_sched_domains function. This function will attach domains to all
|
/linux-4.1.27/drivers/gpu/drm/msm/adreno/ |
D | adreno_gpu.c | 349 ret = mmu->funcs->attach(mmu, iommu_ports, in adreno_gpu_init()
|
/linux-4.1.27/Documentation/fb/ |
D | fbcon.txt | 153 Before going on how to attach, detach and unload the framebuffer console, an 186 echo 1 > sys/class/vtconsole/vtcon1/bind - attach framebuffer console to
|
/linux-4.1.27/drivers/media/pci/ttpci/ |
D | budget-patch.c | 667 .attach = budget_patch_attach,
|
/linux-4.1.27/drivers/net/can/ |
D | Kconfig | 24 Userspace tools to attach the SLCAN line discipline (slcan_attach,
|
/linux-4.1.27/Documentation/scsi/ |
D | ChangeLog.sym53c8xx_2 | 75 has been allocated. This fixes a panic if attach failed.
|
/linux-4.1.27/drivers/media/common/saa7146/ |
D | saa7146_core.c | 470 if (ext->attach(dev, pci_ext)) { in saa7146_init_one()
|
/linux-4.1.27/sound/drivers/ |
D | portman2x4.c | 710 .attach = snd_portman_attach,
|
/linux-4.1.27/include/acpi/ |
D | acpi_bus.h | 137 int (*attach)(struct acpi_device *dev, const struct acpi_device_id *id); member
|