Home
last modified time | relevance | path

Searched refs:clients (Results 1 – 149 of 149) sorted by relevance

/linux-4.1.27/drivers/isdn/hardware/eicon/
Ddebug.c53 static diva_maint_client_t clients[MAX_DESCRIPTORS]; variable
290 for (i = 1; i < ARRAY_SIZE(clients); i++) { in diva_maint_finit()
291 if (clients[i].pmem) { in diva_maint_finit()
292 diva_os_free(0, clients[i].pmem); in diva_maint_finit()
394 for (id = 1; id < ARRAY_SIZE(clients); id++) { in DI_register()
395 if (clients[id].hDbg == hDbg) { in DI_register()
402 if (clients[id].hDbg) { /* slot is busy */ in DI_register()
406 if (!strcmp(clients[id].drvName, hDbg->drvName)) { in DI_register()
414 if (!clients[id].hDbg) { /* slot is busy */ in DI_register()
428 clients[free_id].hDbg = hDbg; in DI_register()
[all …]
/linux-4.1.27/drivers/gpu/vga/
Dvga_switcheroo.c57 struct list_head clients; member
72 .clients = LIST_HEAD_INIT(vgasr_priv.clients),
91 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_enable()
153 list_add_tail(&client->list, &vgasr_priv.clients); in register_client()
216 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_get_client_state()
230 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_unregister_client()
252 client = find_client_from_pci(&vgasr_priv.clients, pdev); in vga_switcheroo_client_fb_set()
264 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_show()
311 client = find_client_from_id(&vgasr_priv.clients, id | ID_BIT_AUDIO); in set_audio_state()
323 active = find_active_client(&vgasr_priv.clients); in vga_switchto_stage1()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/dma/
Drenesas,rcar-dmac.txt4 controller instances named DMAC capable of serving multiple clients. Channels
5 can be dedicated to specific clients or shared between a large number of
6 clients.
10 256 clients in total. When the number of hardware channels is lower than the
11 number of clients to be served, channels must be shared between multiple DMA
12 clients. The association of DMA clients to DMAC channels is fully dynamic and
Datmel-xdma.txt29 * DMA clients
30 DMA clients connected to the Atmel XDMA controller must use the format
Djz4780-dma.txt11 DMA clients (see below).
37 DMA clients must use the format described in dma.txt, giving a phandle to the
Dmoxa,moxart-dma.txt25 DMA clients connected to the MOXA ART DMA controller must use the format
Dmpc512x-dma.txt29 DMA clients must use the format described in dma/dma.txt file.
Dqcom_bam_dma.txt29 DMA clients must use the format described in the dma.txt file, using a two cell
Datmel-dma.txt19 DMA clients connected to the Atmel DMA controller must use the format
Dbrcm,bcm2835-dma.txt44 DMA clients connected to the BCM2835 DMA controller must use the format
Dsun6i-dma.txt27 DMA clients connected to the A31 DMA controller must use the format
Dfsl-mxs-dma.txt49 DMA clients connected to the MXS DMA controller must use the format
Dqcom_adm.txt38 DMA clients must use the format descripted in the dma.txt file, using a three
Dsnps-dma.txt44 DMA clients connected to the Designware DMA controller must use the format
Dfsl-imx-sdma.txt71 DMA clients connected to the i.MX SDMA controller must use the format
Dfsl-edma.txt58 * DMA clients
/linux-4.1.27/drivers/char/agp/
Dfrontend.c340 client = controller->clients; in agp_remove_all_clients()
406 struct agp_client *clients; in agp_controller_make_current() local
408 clients = controller->clients; in agp_controller_make_current()
410 while (clients != NULL) { in agp_controller_make_current()
413 priv = agp_find_private(clients->pid); in agp_controller_make_current()
419 clients = clients->next; in agp_controller_make_current()
428 struct agp_client *clients; in agp_controller_release_current() local
431 clients = controller->clients; in agp_controller_release_current()
433 while (clients != NULL) { in agp_controller_release_current()
436 priv = agp_find_private(clients->pid); in agp_controller_release_current()
[all …]
/linux-4.1.27/drivers/gpu/host1x/
Dbus.c26 static LIST_HEAD(clients);
106 list_move_tail(&client->list, &device->clients); in host1x_subdev_register()
173 list_for_each_entry(client, &device->clients, list) { in host1x_device_init()
199 list_for_each_entry_reverse(client, &device->clients, list) { in host1x_device_exit()
340 list_add_tail(&client->list, &clients); in __host1x_device_del()
354 list_for_each_entry_safe(client, cl, &device->clients, list) in __host1x_device_del()
355 list_move_tail(&client->list, &clients); in __host1x_device_del()
390 INIT_LIST_HEAD(&device->clients); in host1x_device_add()
411 list_for_each_entry_safe(client, tmp, &clients, list) { in host1x_device_add()
565 list_add_tail(&client->list, &clients); in host1x_client_register()
[all …]
DKconfig9 by host1x are referred to as clients. host1x includes some other
/linux-4.1.27/drivers/mfd/
Dtps80031.c441 tps80031->clients[i] = client; in tps80031_probe()
443 tps80031->clients[i] = i2c_new_dummy(client->adapter, in tps80031_probe()
445 if (!tps80031->clients[i]) { in tps80031_probe()
451 i2c_set_clientdata(tps80031->clients[i], tps80031); in tps80031_probe()
452 tps80031->regmap[i] = devm_regmap_init_i2c(tps80031->clients[i], in tps80031_probe()
515 if (tps80031->clients[i] && (tps80031->clients[i] != client)) in tps80031_probe()
516 i2c_unregister_device(tps80031->clients[i]); in tps80031_probe()
536 if (tps80031->clients[i] != client) in tps80031_remove()
537 i2c_unregister_device(tps80031->clients[i]); in tps80031_remove()
/linux-4.1.27/include/soc/tegra/
Dmc.h53 const struct tegra_mc_client *clients; member
85 const struct tegra_mc_client *clients; member
/linux-4.1.27/Documentation/filesystems/nfs/
Dpnfs-block-server.txt6 to the clients to directly access the underlying block devices that are
12 to the clients in addition to the MDS. As of now the file system needs to
14 volumes on the MDS and clients is not supported yet.
Dnfs.txt22 NFSv4 requires clients to identify themselves to servers with a unique
38 nfs.nfs4_unique_id stays the same, preventing collision with other clients
42 anything that is believed to be unique across all NFS clients. An
54 clients running in containers.
Dfault_injection.txt35 The NFS server keeps a list of clients that have placed a mount call. If
Dnfs41-server.txt154 CLAIM_DELEG_PREV_FH (which allows clients to keep delegations that
/linux-4.1.27/drivers/gpu/drm/msm/mdp/mdp5/
Dmdp5_cfg.c34 .clients = {
95 .clients = {
164 .clients = {
Dmdp5_cfg.h55 uint32_t clients[MAX_CLIENTS]; /* SMP port allocation /pipe */ member
Dmdp5_smp.c107 return mdp5_cfg->smp.clients[pipe] + plane; in pipe2client()
/linux-4.1.27/drivers/hsi/clients/
DKconfig2 # HSI clients configuration
5 comment "HSI clients"
/linux-4.1.27/drivers/pps/clients/
DKconfig2 # PPS clients configuration
7 comment "PPS clients support"
/linux-4.1.27/drivers/iommu/
Dexynos-iommu.c198 struct list_head clients; /* list of sysmmu_drvdata.node */ member
741 INIT_LIST_HEAD(&exynos_domain->clients); in exynos_iommu_domain_alloc()
763 WARN_ON(!list_empty(&priv->clients)); in exynos_iommu_domain_free()
767 list_for_each_entry(owner, &priv->clients, client) { in exynos_iommu_domain_free()
772 while (!list_empty(&priv->clients)) in exynos_iommu_domain_free()
773 list_del_init(priv->clients.next); in exynos_iommu_domain_free()
800 list_add_tail(&owner->client, &priv->clients); in exynos_iommu_attach_device()
828 list_for_each_entry(owner, &priv->clients, client) { in exynos_iommu_detach_device()
890 list_for_each_entry(owner, &priv->clients, client) in alloc_lv2entry()
932 list_for_each_entry(owner, &priv->clients, client) in lv1set_section()
[all …]
Dtegra-smmu.c319 const struct tegra_mc_client *client = &smmu->soc->clients[i]; in tegra_smmu_enable()
356 const struct tegra_mc_client *client = &smmu->soc->clients[i]; in tegra_smmu_disable()
/linux-4.1.27/drivers/media/platform/soc_camera/
Dsh_mobile_csi2.c272 if ((pdata->clients[i].pdev && in sh_csi2_client_connect()
273 &pdata->clients[i].pdev->dev == icd->pdev) || in sh_csi2_client_connect()
275 strcmp(pdata->clients[i].name, dev_name(icd->control)))) in sh_csi2_client_connect()
283 priv->client = pdata->clients + i; in sh_csi2_client_connect()
/linux-4.1.27/arch/cris/arch-v32/mach-a3/
Darbiter.c363 unsigned long clients, unsigned long accesses, in crisv32_arbiter_watch() argument
381 if (clients & 0xffff) in crisv32_arbiter_watch()
383 if (clients & 0xffff0000) in crisv32_arbiter_watch()
421 clients & 0xffff); in crisv32_arbiter_watch()
436 rw_clients, clients >> 16); in crisv32_arbiter_watch()
/linux-4.1.27/fs/nfsd/
DKconfig26 available to clients mounting the NFS server on this system.
52 This protocol extension allows applications on NFS clients to
58 NFSv3 ACL protocol extension allowing NFS clients to manipulate
60 clients which support the Solaris NFSv3 ACL protocol can then
/linux-4.1.27/drivers/memory/tegra/
Dmc.c82 const struct tegra_mc_la *la = &mc->soc->clients[i].la; in tegra_mc_setup_latency_allowance()
156 if (mc->soc->clients[i].id == id) { in tegra_mc_irq()
157 client = mc->soc->clients[i].name; in tegra_mc_irq()
Dtegra124.c978 .clients = tegra124_mc_clients,
990 .clients = tegra124_mc_clients,
Dtegra114.c932 .clients = tegra114_mc_clients,
944 .clients = tegra114_mc_clients,
Dtegra30.c954 .clients = tegra30_mc_clients,
966 .clients = tegra30_mc_clients,
/linux-4.1.27/drivers/hsi/
DMakefile7 obj-y += clients/
DKconfig18 source "drivers/hsi/clients/Kconfig"
Dhsi.c317 void hsi_add_clients_from_dt(struct hsi_port *port, struct device_node *clients) in hsi_add_clients_from_dt() argument
324 for_each_available_child_of_node(clients, child) in hsi_add_clients_from_dt()
/linux-4.1.27/drivers/pps/
DMakefile8 obj-y += clients/ generators/
DKconfig43 source drivers/pps/clients/Kconfig
/linux-4.1.27/arch/cris/include/arch-v32/mach-fs/mach/
Darbiter.h24 unsigned long clients, unsigned long accesses,
/linux-4.1.27/include/media/
Dsh_mobile_csi2.h44 struct sh_csi2_client_config *clients; member
/linux-4.1.27/arch/cris/include/arch-v32/mach-a3/mach/
Darbiter.h30 unsigned long clients, unsigned long accesses,
/linux-4.1.27/net/irda/
Dirlmp.c93 irlmp->clients = hashbin_new(HB_LOCK); in irlmp_init()
99 if ((irlmp->clients == NULL) || in irlmp_init()
138 hashbin_delete(irlmp->clients, (FREE_FUNC) kfree); in irlmp_cleanup()
1016 client = (irlmp_client_t *) hashbin_get_first(irlmp->clients); in irlmp_discovery_confirm()
1017 while (NULL != hashbin_find_next(irlmp->clients, (long) client, NULL, in irlmp_discovery_confirm()
1046 client = (irlmp_client_t *) hashbin_get_first(irlmp->clients); in irlmp_discovery_expiry()
1047 while (NULL != hashbin_find_next(irlmp->clients, (long) client, NULL, in irlmp_discovery_expiry()
1551 hashbin_insert(irlmp->clients, (irda_queue_t *) client, in irlmp_register_client()
1575 client = hashbin_lock_find(irlmp->clients, (long) handle, NULL); in irlmp_update_client()
1604 client = hashbin_lock_find(irlmp->clients, (long) handle, NULL); in irlmp_unregister_client()
[all …]
/linux-4.1.27/Documentation/zh_CN/
Demail-clients.txt1 Chinese translated version of Documentation/email-clients.txt
11 Documentation/email-clients.txt 的中文翻译
/linux-4.1.27/include/linux/hsi/
Dhsi.h306 struct device_node *clients);
309 struct device_node *clients) in hsi_add_clients_from_dt() argument
/linux-4.1.27/Documentation/ABI/removed/
Draw13948 of abstraction that required userspace clients to duplicate much
/linux-4.1.27/include/linux/
Dagpgart.h105 struct agp_client *clients; member
Dhost1x.h287 struct list_head clients; member
Di2c.h194 struct list_head clients; member
/linux-4.1.27/Documentation/devicetree/bindings/spi/
Dspi-gpio.txt29 /* clients */
/linux-4.1.27/drivers/staging/lustre/
DREADME.txt10 can scale to thousands of clients, petabytes of storage and
14 Lustre has independent Metadata and Data servers that clients can access
/linux-4.1.27/sound/core/seq/
Dseq_queue.c520 queue->clients++; in snd_seq_queue_use()
523 queue->clients--; in snd_seq_queue_use()
525 if (queue->clients) { in snd_seq_queue_use()
526 if (use && queue->clients == 1) in snd_seq_queue_use()
Dseq_queue.h56 unsigned int clients; /* users of this queue */ member
Dseq_clientmgr.c1138 info.clients = SNDRV_SEQ_MAX_CLIENTS; in snd_seq_ioctl_system_info()
/linux-4.1.27/arch/um/drivers/
Dmconsole_kern.c553 static LIST_HEAD(clients);
562 if (list_empty(&clients)) in console_write()
571 list_for_each(ele, &clients) { in console_write()
601 list_add(&entry.list, &clients); in with_console()
/linux-4.1.27/sound/ppc/
Dkeywest.c79 &to_i2c_driver(keywest_ctx->client->dev.driver)->clients); in keywest_attach_adapter()
/linux-4.1.27/Documentation/
Demail-clients.txt1 Email clients info for Linux
7 email clients. The man page for this is quite good. On the receiving
24 Email clients that are used for Linux kernel patches should send the
34 Email clients should not modify the character set encoding of the text.
39 Email clients should generate and maintain References: or In-Reply-To:
Dvgaarbiter.txt15 when these devices are trying to be accessed by different userspace clients
44 The kernel exports a char device interface (/dev/vga_arbiter) to the clients,
DChanges252 would take information about active clients from /var/lib/nfs/rmtab.
263 currently active clients.
D00-INDEX180 email-clients.txt
DSubmittingPatches354 See Documentation/email-clients.txt for hints about configuring
Dkernel-parameters.txt2235 ification string that NFSv4 clients can insert into
2262 clients using auth_sys, and will accept numeric uids
2263 and gids from such clients. This is intended to ease
/linux-4.1.27/arch/cris/arch-v32/mach-fs/
Darbiter.c264 unsigned long clients, unsigned long accesses, in crisv32_arbiter_watch() argument
296 clients); in crisv32_arbiter_watch()
/linux-4.1.27/Documentation/devicetree/bindings/soc/ti/
Dkeystone-navigator-dma.txt6 the actual data movements across clients using destination queues. Every
53 - ti,enable-all: Enable all DMA channels vs clients opening specific channels
/linux-4.1.27/Documentation/devicetree/bindings/arm/tegra/
Dnvidia,tegra30-actmon.txt6 from the monitored clients.
/linux-4.1.27/fs/ceph/
DKconfig25 caching support for Ceph clients using FS-Cache
/linux-4.1.27/Documentation/devicetree/bindings/iio/adc/
Dqcom,spmi-iadc.txt3 QPNP PMIC current ADC (IADC) provides interface to clients to read current.
Dqcom,spmi-vadc.txt3 SPMI PMIC voltage ADC (VADC) provides interface to clients to read
/linux-4.1.27/drivers/gpu/drm/nouveau/
Dnouveau_drm.c386 INIT_LIST_HEAD(&drm->clients); in nouveau_drm_load()
587 list_for_each_entry(cli, &drm->clients, head) { in nouveau_do_suspend()
602 list_for_each_entry_continue_reverse(cli, &drm->clients, head) { in nouveau_do_suspend()
635 list_for_each_entry(cli, &drm->clients, head) { in nouveau_do_resume()
848 list_add(&cli->head, &drm->clients); in nouveau_drm_open()
Dnouveau_drm.h109 struct list_head clients; member
/linux-4.1.27/fs/9p/
DKconfig18 caching support for 9p clients using FS-Cache
/linux-4.1.27/Documentation/devicetree/bindings/hsi/
Dclient-devices.txt3 following properties are standardized for HSI clients:
/linux-4.1.27/drivers/staging/android/ion/
Dion.c61 struct rb_root clients; member
781 client->display_serial = ion_get_client_serial(&dev->clients, name); in ion_client_create()
788 p = &dev->clients.rb_node; in ion_client_create()
799 rb_insert_color(&client->node, &dev->clients); in ion_client_create()
844 rb_erase(&client->node, &dev->clients); in ion_client_destroy()
1406 for (n = rb_first(&dev->clients); n; n = rb_next(n)) { in ion_debug_heap_show()
1607 idev->clients = RB_ROOT; in ion_device_create()
/linux-4.1.27/fs/ncpfs/
DKconfig9 used by Novell NetWare clients to talk to file servers. It is to
17 file *server* for Novell NetWare clients.
/linux-4.1.27/net/ax25/
DKconfig57 from clients (called "slaves") and redistributes it to other slaves.
72 from clients (called "slaves") and redistributes it to other slaves.
/linux-4.1.27/drivers/mailbox/
DKconfig55 PCC clients mentioned above.
/linux-4.1.27/include/net/irda/
Dirlmp.h184 hashbin_t *clients; member
/linux-4.1.27/Documentation/video4linux/
DREADME.ir61 clients.
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_init_ops.h636 struct ilt_client_info *ilt_cli = &ilt->clients[cli_num]; in bnx2x_ilt_client_mem_op()
789 struct ilt_client_info *ilt_cli = &ilt->clients[cli_num]; in bnx2x_ilt_client_id_init_op()
813 struct ilt_client_info *ilt_cli = &ilt->clients[cli_num]; in bnx2x_ilt_init_client_psz()
Dbnx2x_init.h520 struct ilt_client_info clients[4]; member
Dbnx2x_main.c7917 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start; in bnx2x_init_hw_func()
7926 cdu_ilt_start = ilt->clients[ILT_CLIENT_CDU].start; in bnx2x_init_hw_func()
8515 ilt_client = &ilt->clients[ILT_CLIENT_CDU]; in bnx2x_ilt_set_info()
8535 ilt_client = &ilt->clients[ILT_CLIENT_QM]; in bnx2x_ilt_set_info()
8558 ilt_client = &ilt->clients[ILT_CLIENT_SRC]; in bnx2x_ilt_set_info()
8575 ilt_client = &ilt->clients[ILT_CLIENT_TM]; in bnx2x_ilt_set_info()
/linux-4.1.27/Documentation/filesystems/
Drelay.txt11 clients write into the channel buffers using efficient write
20 hooks which allow kernel clients to impose some structure on the
146 clients to create or use channels - it only needs to be
154 Here's a summary of the API the relay interface provides to in-kernel clients:
292 The private_data passed into relay_open() allows clients to associate
418 Kernel clients write data into the current cpu's channel buffer using
Dceph.txt22 on symmetric access by all clients to shared block devices, Ceph
Dxfs.txt223 where failover must not result in clients seeing
Dcoda.txt722 clients enforce the security of the system. The result of this call
Dvfs.txt1040 dentry (optional). This allows autofs, for example, to hold up clients
/linux-4.1.27/drivers/gpu/drm/tegra/
Ddrm.h46 struct list_head clients; member
Ddrm.c138 INIT_LIST_HEAD(&tegra->clients); in tegra_drm_load()
530 list_for_each_entry(client, &tegra->clients, list) in tegra_open_channel()
958 list_add_tail(&client->list, &tegra->clients); in tegra_drm_register_client()
/linux-4.1.27/Documentation/sound/alsa/
DProcfile.txt190 seq/clients
191 Shows the list of currently available sequencer clients and
/linux-4.1.27/Documentation/scsi/
Dbnx2fc.txt72 based DCBX/LLDP clients (e.g. lldpad) must be disabled. To disable lldpad on a
Dosd.txt20 as its back-end data storage. Other clients are the other osd parts listed below.
/linux-4.1.27/Documentation/filesystems/cifs/
DAUTHORS14 for proving years ago that very good smb/cifs clients could be done on Unix-like
DTODO38 in the Extended Attribute format their SFU clients would recognize.
DREADME69 Linux clients is useful in mapping Uids and Gids consistently across the
141 are also useful (on the Samba server) when the majority of clients are Unix or
182 that is ignored by local server applications and non-cifs clients and that will
185 later, but only for remote clients using the CIFS Unix extensions, and will
186 be invisbile to Windows clients and typically will not affect local
270 specified unless the server and clients uid and gid
DCHANGES625 Fix caching problem when files opened by multiple clients in which
979 clients. basic posix file i/o tests now work on big endian machines, not just le
/linux-4.1.27/Documentation/dmaengine/
Dclient.txt52 is in struct dma_slave_config. This allows the clients to specify
78 interleaved_dma - This is common to Slave as well as M2M clients. For slave
/linux-4.1.27/Documentation/fb/
Dudlfb.txt49 interface to allow mmap clients to report damage, for the benefit
113 Can be disabled if fbcon and other clients
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-rpmsg70 creation of the channel (this way remote clients know they
Dsysfs-class-net-mesh76 is used to classify clients as "isolated" by the
/linux-4.1.27/include/uapi/sound/
Dasequencer.h313 int clients; /* maximum clients count */ member
Dasound.h694 unsigned int clients; /* active timer clients */ member
/linux-4.1.27/drivers/media/common/siano/
Dsmscoreapi.c605 while (!list_empty(&coredev->clients)) { in smscore_notify_clients()
606 client = (struct smscore_client_t *) coredev->clients.next; in smscore_notify_clients()
674 INIT_LIST_HEAD(&dev->clients); in smscore_register_device()
1457 first = &coredev->clients; in smscore_find_client()
1742 list_add_locked(&newclient->entry, &coredev->clients, in smscore_register_client()
Dsmscoreapi.h165 struct list_head clients; member
/linux-4.1.27/Documentation/i2c/
Di2c-protocol72 probably confuse all other clients on your bus, so don't try this.
Dslave-interface33 I2C slave backends behave like standard I2C clients. So, you can instantiate
Dwriting-clients23 all clients from it. Remember, a driver structure contains general access
/linux-4.1.27/Documentation/pps/
Dpps.txt128 Please see the file drivers/pps/clients/ktimer.c for example code.
198 computers (master) and PPS clients on others (slaves), and use very simple
/linux-4.1.27/include/linux/mfd/
Dtps80031.h513 struct i2c_client *clients[TPS80031_NUM_SLAVES]; member
/linux-4.1.27/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt58 POHMELFS clients operate with a working set of servers and are capable of balancing read-only
Dnetwork_protocol.txt169 Command is only received by clients. It contains information about
/linux-4.1.27/net/
DKconfig122 clients. Proxy-based firewalls don't need support by the kernel, but
293 with many clients some protection against DoS by a single (spoofed)
/linux-4.1.27/Documentation/ja_JP/
DSubmittingPatches249 のヒントについては Documentation/email-clients.txt を参照してください。
/linux-4.1.27/Documentation/power/regulator/
Doverview.txt150 regulator events to clients.
/linux-4.1.27/Documentation/networking/
Doperstates.txt34 backward compatibility, routing daemons, dhcp clients can use this
Darcnet.txt246 oak.oakland.edu:/simtel/msdos/nfs has some nice DOS clients. There
277 Using the freeware Samba server and clients for Linux, you can now
Dl2tp.txt46 clients/servers and are used to setup / teardown tunnels and
Dixgb.txt201 # set the MTU (max transmission unit) - it requires your switch and clients
Dip-sysctl.txt186 option can harm clients of your server.
525 but your clients and relays, contacting you. While you see
1467 that ensures that clients don't synchronize with each
Drxrpc.txt177 may handle calls from many clients.
Dbonding.txt645 clients. The updelay parameter (detailed below) must
/linux-4.1.27/fs/nfs/
DKconfig59 applications on NFS clients to manipulate POSIX Access Control
/linux-4.1.27/drivers/net/ppp/
DKconfig96 configuring PPTP clients and servers to utilize this method.
/linux-4.1.27/sound/drivers/
DKconfig105 sequencer clients.
/linux-4.1.27/net/wireless/
DKconfig129 non P2P clients.
/linux-4.1.27/drivers/usb/usbip/
Dusbip_protocol.txt5 USB devices and the clients imports them. The device driver for the exported
/linux-4.1.27/drivers/i2c/
Di2c-core.c1581 list_for_each_entry_safe(client, _n, &driver->clients, detected) { in i2c_do_del_adapter()
1740 INIT_LIST_HEAD(&driver->clients); in i2c_register_driver()
2277 list_add_tail(&client->detected, &driver->clients); in i2c_detect_address()
/linux-4.1.27/fs/cifs/
DKconfig105 user namespace prefix, but their names are seen by Linux cifs clients
/linux-4.1.27/Documentation/crypto/
Dasync-tx-api.txt50 3/ dmaengine extensions to support multiple clients and operation types
/linux-4.1.27/Documentation/development-process/
D5.Posting239 Documentation/email-clients.txt has some helpful hints on making
240 specific mail clients work for sending patches.
/linux-4.1.27/arch/arm/boot/dts/
Domap3-pandora-common.dtsi440 /* no clients so we should disable clock */
/linux-4.1.27/net/netfilter/ipvs/
DKconfig269 clients in ftp connections directly, so FTP protocol helper is
/linux-4.1.27/arch/tile/
DKconfig393 allow it to run a kernel at PL1, but clients running at PL1
/linux-4.1.27/Documentation/ioctl/
Dbotching-up-ioctls.txt177 * Ensure that you have sufficient insulation between different clients. By
/linux-4.1.27/arch/cris/arch-v10/kernel/
Dhead.S439 ;; Init DMA channel muxing (set to unused clients).
/linux-4.1.27/Documentation/vm/
Dfrontswap.txt99 how much of the RAM is available for each of the clients!
/linux-4.1.27/sound/soc/
Dsoc-pcm.c2363 struct list_head *clients = in soc_dpcm_be_digital_mute() local
2366 list_for_each_entry(dpcm, clients, list_be) { in soc_dpcm_be_digital_mute()
/linux-4.1.27/drivers/char/ipmi/
Dipmi_ssif.c185 struct list_head clients; member
/linux-4.1.27/net/ipv4/
DKconfig284 SYN cookies may prevent correct error reporting on clients when the
/linux-4.1.27/drivers/char/
DKconfig598 Enables userspace clients to read and write to some packet SMD
/linux-4.1.27/sound/core/
Dtimer.c1507 ginfo->clients++; in snd_timer_user_ginfo()
/linux-4.1.27/drivers/video/fbdev/
DKconfig2113 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
2129 Supports fbdev clients like xf86-video-fbdev, kdrive, fbi, and
/linux-4.1.27/Documentation/gpio/
Dgpio-legacy.txt71 in this document, but drivers acting as clients to the GPIO interface must
/linux-4.1.27/net/netfilter/
DKconfig628 if you need to work around old applications such as dhcp clients,
/linux-4.1.27/drivers/tty/serial/
DKconfig1386 Enables userspace clients to read and write to some streaming SMD