Home
last modified time | relevance | path

Searched refs:bound (Results 1 – 195 of 195) sorted by relevance

/linux-4.4.14/drivers/gpu/drm/
Ddrm_agpsupport.c218 entry->bound = 0; in drm_agp_alloc()
280 if (!entry->bound) in drm_agp_unbind()
284 entry->bound = 0; in drm_agp_unbind()
321 if (entry->bound) in drm_agp_bind()
326 entry->bound = dev->agp->base + (page << PAGE_SHIFT); in drm_agp_bind()
328 dev->agp->base, entry->bound); in drm_agp_bind()
364 if (entry->bound) in drm_agp_free()
447 if (entry->bound) in drm_agp_clear()
Ddrm_memory.c70 if (agpmem->bound <= offset in agp_remap()
71 && (agpmem->bound + (agpmem->pages << PAGE_SHIFT)) >= in agp_remap()
87 phys_page_map = (agpmem->memory->pages + (offset - agpmem->bound) / PAGE_SIZE); in agp_remap()
Ddrm_legacy.h84 unsigned long bound; member
Ddrm_vm.c144 if (agpmem->bound <= baddr && in drm_do_vm_fault()
145 agpmem->bound + agpmem->pages * PAGE_SIZE > baddr) in drm_do_vm_fault()
155 offset = (baddr - agpmem->bound) >> PAGE_SHIFT; in drm_do_vm_fault()
Ddrm_bufs.c287 if ((map->offset >= entry->bound) && in drm_addmap_core()
288 (map->offset + map->size <= entry->bound + entry->pages * PAGE_SIZE)) { in drm_addmap_core()
645 if ((agp_offset >= agp_entry->bound) && in drm_legacy_addbufs_agp()
646 (agp_offset + total * count <= agp_entry->bound + agp_entry->pages * PAGE_SIZE)) { in drm_legacy_addbufs_agp()
Ddrm_fb_helper.c488 int bound = 0, crtcs_bound = 0; in drm_fb_helper_is_bound() local
499 bound++; in drm_fb_helper_is_bound()
502 if (bound < crtcs_bound) in drm_fb_helper_is_bound()
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_gem_shrinker.c271 unsigned long pinned, bound, unbound, freed_pages; in i915_gem_shrinker_oom() local
296 unbound = bound = pinned = 0; in i915_gem_shrinker_oom()
313 bound += obj->base.size; in i915_gem_shrinker_oom()
319 if (freed_pages || unbound || bound) in i915_gem_shrinker_oom()
322 if (unbound || bound) in i915_gem_shrinker_oom()
325 bound, unbound); in i915_gem_shrinker_oom()
Di915_gem_gtt.c2526 vma->bound |= GLOBAL_BIND | LOCAL_BIND; in ggtt_bind_vma()
2577 if (vma->bound & GLOBAL_BIND) { in ggtt_unbind_vma()
2584 if (dev_priv->mm.aliasing_ppgtt && vma->bound & LOCAL_BIND) { in ggtt_unbind_vma()
2678 vma->bound |= GLOBAL_BIND; in i915_gem_setup_global_gtt()
3492 bind_flags |= vma->bound; in i915_vma_bind()
3494 bind_flags &= ~vma->bound; in i915_vma_bind()
3499 if (vma->bound == 0 && vma->vm->allocate_va_range) { in i915_vma_bind()
3519 vma->bound |= bind_flags; in i915_vma_bind()
Di915_gem.c3308 vma->bound = 0; in __i915_vma_unbind()
3737 bool bound = false; in i915_gem_object_set_cache_level() local
3762 bound = true; in i915_gem_object_set_cache_level()
3772 if (bound) { in i915_gem_object_set_cache_level()
4167 unsigned bound; in i915_gem_object_do_pin() local
4211 bound = vma ? vma->bound : 0; in i915_gem_object_do_pin()
4224 (bound ^ vma->bound) & GLOBAL_BIND) { in i915_gem_object_do_pin()
Di915_gem_gtt.h189 unsigned int bound : 4; member
Di915_gem_stolen.c689 vma->bound |= GLOBAL_BIND; in i915_gem_object_create_stolen_for_preallocated()
Di915_gpu_error.c619 vma && (vma->bound & GLOBAL_BIND) && in i915_error_object_create()
626 if (!(vma && vma->bound & GLOBAL_BIND)) in i915_error_object_create()
/linux-4.4.14/drivers/base/
Dcomponent.c33 bool bound; member
44 bool bound; member
162 if (master->bound) in try_to_bring_up_master()
193 master->bound = true; in try_to_bring_up_master()
218 if (master->bound) { in take_down_master()
221 master->bound = false; in take_down_master()
356 WARN_ON(!component->bound); in component_unbind()
359 component->bound = false; in component_unbind()
409 component->bound = true; in component_bind()
/linux-4.4.14/net/can/
Draw.c85 int bound; member
284 if (ro->bound) in raw_notifier()
291 ro->bound = 0; in raw_notifier()
314 ro->bound = 0; in raw_init()
357 if (ro->bound) { in raw_release()
374 ro->bound = 0; in raw_release()
401 if (ro->bound && addr->can_ifindex == ro->ifindex) in raw_bind()
433 if (ro->bound) { in raw_bind()
447 ro->bound = 1; in raw_bind()
516 if (ro->bound && ro->ifindex) in raw_setsockopt()
[all …]
Dbcm.c119 int bound; member
1249 if (!bo->bound) in bcm_sendmsg()
1378 if (bo->bound && bo->ifindex == dev->ifindex) { in bcm_notifier()
1379 bo->bound = 0; in bcm_notifier()
1394 if (bo->bound && bo->ifindex == dev->ifindex) { in bcm_notifier()
1411 bo->bound = 0; in bcm_init()
1483 if (bo->bound) { in bcm_release()
1484 bo->bound = 0; in bcm_release()
1507 if (bo->bound) in bcm_connect()
1531 bo->bound = 1; in bcm_connect()
/linux-4.4.14/scripts/coccinelle/iterators/
Ditnull.cocci1 /// Many iterators have the property that the first argument is always bound
85 cocci.print_main("iterator-bound variable",p1)
93 msg = "ERROR: iterator variable bound on line %s cannot be NULL" % (p1[0].line)
/linux-4.4.14/Documentation/ABI/stable/
Dsysfs-bus-vmbus26 Description: The mapping of which primary/sub channels are bound to which
28 Format: <channel's child_relid:the bound cpu's number>
/linux-4.4.14/include/net/
Dpkt_sched.h58 psched_tdiff_bounded(psched_time_t tv1, psched_time_t tv2, psched_time_t bound) in psched_tdiff_bounded() argument
60 return min(tv1 - tv2, bound); in psched_tdiff_bounded()
/linux-4.4.14/lib/
Ddecompress_unlzma.c75 uint32_t bound; member
151 rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS); in rc_is_bit_0_helper()
152 return rc->bound; in rc_is_bit_0_helper()
163 rc->range = rc->bound; in rc_update_bit_0()
168 rc->range -= rc->bound; in rc_update_bit_1()
169 rc->code -= rc->bound; in rc_update_bit_1()
/linux-4.4.14/drivers/usb/gadget/function/
Du_gether.h24 bool bound; member
Du_eem.h24 bool bound; member
Du_ncm.h24 bool bound; member
Du_ecm.h24 bool bound; member
Du_uac2.h36 bool bound; member
Du_rndis.h26 bool bound; member
Du_phonet.h19 bool bound; member
Du_uac1.h67 unsigned bound:1; member
Df_subset.c315 if (!gether_opts->bound) { in geth_bind()
322 gether_opts->bound = true; in geth_bind()
426 if (opts->bound) in geth_free_inst()
Df_rndis.c698 if (!rndis_opts->bound) { in rndis_bind()
703 rndis_opts->bound = true; in rndis_bind()
836 if (opts->bound) in rndis_borrow_net()
840 opts->borrowed_net = opts->bound = true; in rndis_borrow_net()
886 if (opts->bound) in rndis_free_inst()
Df_eem.c263 if (!eem_opts->bound) { in eem_bind()
270 eem_opts->bound = true; in eem_bind()
566 if (opts->bound) in eem_free_inst()
Df_phonet.c505 if (!phonet_opts->bound) { in pn_bind()
510 phonet_opts->bound = true; in pn_bind()
620 if (opts->bound) in phonet_free_inst()
Df_ecm.c702 if (!ecm_opts->bound) { in ecm_bind()
709 ecm_opts->bound = true; in ecm_bind()
859 if (opts->bound) in ecm_free_inst()
Df_ncm.c1356 if (!ncm_opts->bound) { in ncm_bind()
1363 ncm_opts->bound = true; in ncm_bind()
1509 if (opts->bound) in ncm_free_inst()
Df_uac1.c680 if (!audio_opts->bound) { in f_audio_bind()
684 audio_opts->bound = true; in f_audio_bind()
/linux-4.4.14/drivers/usb/gadget/legacy/
Dether.c377 eem_opts->bound = true; in eth_bind()
379 ecm_opts->bound = true; in eth_bind()
381 geth_opts->bound = true; in eth_bind()
Dg_ffs.c383 ecm_opts->bound = true; in gfs_bind()
389 geth_opts->bound = true; in gfs_bind()
Dmulti.c360 ecm_opts->bound = true; in multi_bind()
/linux-4.4.14/Documentation/input/
Dnotifier.txt13 - KBD_UNBOUND_KEYCODE events are sent if the keycode is not bound to a keysym.
32 || !bound) {
/linux-4.4.14/fs/nfs/
Dread.c268 loff_t bound; in nfs_readpage_result() local
270 bound = hdr->args.offset + hdr->res.count; in nfs_readpage_result()
272 if (bound < hdr->io_start + hdr->good_bytes) { in nfs_readpage_result()
275 hdr->good_bytes = bound - hdr->io_start; in nfs_readpage_result()
/linux-4.4.14/arch/tile/include/arch/
Dmpipe_shm.h71 uint_reg_t bound : 1; member
115 uint_reg_t bound : 1;
/linux-4.4.14/Documentation/usb/
Dcallbacks.txt83 with another driver bound the interface, eg. a power management
122 that isn't bound to your driver.
124 Probe will never be called for an interface bound to a driver.
128 Once your driver is bound to an interface, disconnect can be
Dgadget_configfs.txt204 In order to enable the gadget it must be bound to a UDC (USB Device Controller).
367 functions and binds them. This way the whole gadget is bound.
Dpower-management.txt114 non-supporting driver is bound to a device, the device won't be
333 USB drivers are bound to interfaces, so their suspend and resume
607 leave hub interface drivers bound. If the driver for the usb device (not
Dproc_usb_info.txt223 interface serves a distinct "function", which is typically bound
Dusb-serial.txt29 will print to the system log, which node(s) the device has been bound
/linux-4.4.14/drivers/gpu/drm/ast/
DKconfig15 is bound to the driver. These GPUs are commonly found
/linux-4.4.14/drivers/infiniband/core/
Dumem_odp.c622 u64 bound) in ib_umem_odp_unmap_dma_pages() argument
629 bound = min_t(u64, bound, ib_umem_end(umem)); in ib_umem_odp_unmap_dma_pages()
636 for (addr = virt; addr < bound; addr += (u64)umem->page_size) { in ib_umem_odp_unmap_dma_pages()
/linux-4.4.14/Documentation/console/
Dconsole.txt48 0 - means the driver is not bound and if echo'ed, commands the driver
51 1 - means the driver is bound and if echo'ed, commands the driver to
104 driver is bound or not.
122 driver, which was previously bound, becomes unbound. The console layer
/linux-4.4.14/tools/usb/usbip/
DREADME111 A USB storage device of busid 3-3.2 is now bound to the usb-storage
113 "exportable"; the device is bound to the usbip-host driver. Please
193 - usbip-host.ko must be bound to the target device.
/linux-4.4.14/drivers/gpu/drm/amd/amdkfd/
Dkfd_process.c385 if (pdd->bound) in kfd_bind_process_to_device()
392 pdd->bound = true; in kfd_bind_process_to_device()
440 pdd->bound = false; in kfd_unbind_process_from_device()
Dkfd_priv.h465 bool bound; member
Dkfd_device_queue_manager.c783 pdd->bound = false; in stop_cpsch()
/linux-4.4.14/net/ieee802154/
Dsocket.c451 unsigned int bound:1; member
504 ro->bound = 0; in dgram_bind()
526 ro->bound = 1; in dgram_bind()
585 if (!ro->bound) { in dgram_connect()
630 if (!ro->bound) in dgram_sendmsg()
680 ro->bound ? &ro->src_addr : NULL, size); in dgram_sendmsg()
773 if (!ro->bound) in ieee802154_match_sock()
/linux-4.4.14/include/media/
Dv4l2-async.h85 int (*bound)(struct v4l2_async_notifier *notifier, member
/linux-4.4.14/Documentation/hwmon/
Dadt746260 point1: Set the pwm speed at a lower temperature bound.
61 point2: Set the pwm speed at a higher temperature bound.
Dadt747059 point1: Set the pwm speed at a lower temperature bound.
60 point2: Set the pwm speed at a higher temperature bound.
Dadt747598 point1: Set the PWM speed at the lower temperature bound
99 point2: Set the PWM speed at the higher temperature bound
Dlm93157 points of configuration. To start, each PWM output can be bound to any
159 individual control sources to which the PWM output is bound.
164 a "0" disables it. The h/w default is 0x0f (all temperatures bound).
233 If the #PROCHOT or #VRDHOT signals are asserted while bound to a PWM output
/linux-4.4.14/drivers/staging/fsl-mc/
DREADME.txt261 Each object in the DPRC is a Linux "device" and is bound to a driver.
263 scenario and the objects bound to each driver. A brief description
317 The dprc-driver is bound DPRC objects and does runtime management
330 and those objects are bound to the allocator when the bus is probed.
336 The DPIO driver is bound to DPIO objects and provides services that allow
353 The Ethernet driver is bound to a DPNI and implements the kernel
/linux-4.4.14/Documentation/
Dworkqueue.txt110 unless specifically overridden, a work item of a bound workqueue will
120 Each worker-pool bound to an actual CPU implements concurrency
142 mark a bound wq to ignore the concurrency management. Please refer to
172 woker-pools which host workers which are not bound to any
180 expected and using bound wq may end up creating large number
214 worker-pool from starting execution. This is useful for bound
237 Currently, for a bound wq, the maximum limit for @max_active is 512
261 Work items w0, w1, w2 are queued to a bound wq q0 on the same CPU.
348 cycles, using a bound wq is usually beneficial due to the increased
Dcircular-buffers.txt116 they will return a lower bound as the producer controls the head index,
120 To the consumer it will show an upper bound as the producer may be busy
124 will return a lower bound as the consumer controls the tail index, but the
128 To the producer it will show an upper bound as the consumer may be busy
Drpmsg.txt54 When a driver starts listening on a channel, its rx callback is bound with
157 - every rpmsg address in the system is bound to an rx callback (so when
171 endpoint, their rx callback is bound to their rpmsg address, and when
Dvfio.txt91 be bound to a VFIO driver before operations on the VFIO group
190 /* Group is not viable (ie, not all devices bound for vfio) */
249 into VFIO core. When devices are bound and unbound to the driver,
Dpi-futex.txt24 determinism and well-bound latencies. Even in the worst-case, PI will
Dphy.txt145 bound to devices. A lookup can be made be made during runtime when a handle to
Dmedia-framework.txt169 bound together. Example usages include reporting
Dkernel-per-CPU-kthreads.txt203 but if your workload is CPU-bound, this is a bad idea.
Dassoc_array.txt491 bound and get to the fourth level where these actually become different.
Ddevices.txt76 offended. I often get submissions for /dev names that would be bound
Dkernel-parameters.txt3612 you have and where their interrupts are bound, this
/linux-4.4.14/Documentation/devicetree/bindings/iommu/
Drockchip,iommu.txt5 its master device. Each slave device is bound to a single master device, and
/linux-4.4.14/lib/xz/
Dxz_dec_lzma2.c499 uint32_t bound; in rc_bit() local
503 bound = (rc->range >> RC_BIT_MODEL_TOTAL_BITS) * *prob; in rc_bit()
504 if (rc->code < bound) { in rc_bit()
505 rc->range = bound; in rc_bit()
509 rc->range -= bound; in rc_bit()
510 rc->code -= bound; in rc_bit()
/linux-4.4.14/include/rdma/
Dib_umem_odp.h107 u64 bound);
/linux-4.4.14/net/netlink/
Daf_netlink.h38 bool bound; member
Daf_netlink.c1114 if (nlk_sk(sk)->bound) in netlink_insert()
1140 nlk_sk(sk)->bound = portid; in netlink_insert()
1308 if (nlk->portid && nlk->bound) { in netlink_release()
1526 bool bound; in netlink_bind() local
1543 bound = nlk->bound; in netlink_bind()
1544 if (bound) { in netlink_bind()
1569 if (!bound) { in netlink_bind()
1620 if (!nlk->bound) in netlink_connect()
2461 if (!nlk->bound) { in netlink_sendmsg()
/linux-4.4.14/drivers/media/v4l2-core/
Dv4l2-async.c107 if (notifier->bound) { in v4l2_async_test_notify()
108 ret = notifier->bound(notifier, sd, asd); in v4l2_async_test_notify()
/linux-4.4.14/drivers/scsi/aic7xxx/
DKconfig.aic79xx21 This is an upper bound value for the number of tagged transactions
31 on some devices. The upper bound is 253. 0 disables tagged queueing.
DKconfig.aic7xxx26 This is an upper bound value for the number of tagged transactions
36 on some devices. The upper bound is 253. 0 disables tagged queueing.
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dda9052-i2c.txt9 bound using their names as listed below:
Dda9055.txt33 bound using their names as listed below:
Dda9062.txt29 DA9062 regulators are bound using their names listed below:
Dda9063.txt27 DA9063 regulators are bound using their names listed below:
Dmc13xxx.txt25 - regulators : Contain the regulator nodes. The regulators are bound using
/linux-4.4.14/fs/sysfs/
DKconfig12 which driver each is bound to. sysfs can also be used to tune devices
/linux-4.4.14/Documentation/timers/
Dtimers-howto.txt87 worst case, fire an interrupt for your upper bound.
91 be balanced with what is an acceptable upper bound on
Dhrtimers.txt85 - data structure not bound to jiffies or any other granularity. All the
Dhighres.txt196 separated from the tick bound timer softirq to allow accurate delivery of high
/linux-4.4.14/Documentation/devicetree/bindings/clock/
Dst,stm32-rcc.txt55 The secondary index is bound with the following magic numbers:
/linux-4.4.14/Documentation/devicetree/bindings/thermal/
Ddb8500-thermal.txt14 - tripN-cdev-num : number of the cooling devices which can be bound to trip
Dthermal.txt178 Note: The delay properties are bound to the maximum dT/dt (temperature
184 The maximum dT/dt is highly bound to hardware power consumption and dissipation
/linux-4.4.14/Documentation/ABI/obsolete/
Dsysfs-bus-usb27 drivers may change this setting when they are bound.
/linux-4.4.14/drivers/staging/rtl8723au/hal/
DHalDMOutSrc8723A_CE.c668 u32 i, j, diff, SimularityBitMap, bound = 0; in _PHY_SimularityCompare() local
674 bound = 8; in _PHY_SimularityCompare()
676 bound = 4; in _PHY_SimularityCompare()
680 for (i = 0; i < bound; i++) { in _PHY_SimularityCompare()
697 for (i = 0; i < (bound/4); i++) { in _PHY_SimularityCompare()
/linux-4.4.14/Documentation/driver-model/
Ddriver.txt121 The devices field is a list of all the devices that have been bound to
148 and the driver partially bound to the device. Drivers commonly use
159 When the driver has successfully bound itself to that device, then probe()
Dporting.txt330 devices must be bound to a driver, or drivers must be bound to all
353 When a device is successfully bound to a driver, device->driver is
Dclass.txt51 As devices are bound to drivers, they are added to the device class
Dplatform.txt170 probe() succeeds, the driver and device are bound as usual. There are
/linux-4.4.14/Documentation/filesystems/nfs/
Dnfsd-admin-interfaces.txt17 bound (and listening, for tcp) socket, or
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-bus-usb-lvstest3 driver is bound with root hub device.
Dsysfs-bus-rpmsg50 from any remote rpmsg client; it is not bound to a single
Dsysfs-tty26 UART port in serial_core, that is bound to TTY like ttyS0.
Dsysfs-block76 generate checksums for write requests bound for
Dsysfs-bus-coresight-devices-etm3x143 and bound to change depending on the driver.
/linux-4.4.14/drivers/thermal/
DKconfig246 created. Cooling devices can be bound to the trip points to cool this
263 (CPU, GPU, MEM, PLLX). Cooling devices can be bound to the thermal
274 bound to thermal zone trip points. When a trip point reached, the
275 bound cpufreq cooling device turns active to set CPU frequency low to
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/
Dampdu.c76 #define MODADD_POW2(x, y, bound) (((x) + (y)) & ((bound) - 1)) argument
77 #define MODSUB_POW2(x, y, bound) (((x) - (y)) & ((bound) - 1)) argument
Dmain.c1030 brcms_b_txstatus(struct brcms_hardware *wlc_hw, bool bound, bool *fatal) in brcms_b_txstatus() argument
1040 uint max_tx_num = bound ? TXSBND : -1; in brcms_b_txstatus()
7719 brcms_b_recv(struct brcms_hardware *wlc_hw, uint fifo, bool bound) in brcms_b_recv() argument
7726 uint bound_limit = bound ? RXBND : -1; in brcms_b_recv()
/linux-4.4.14/arch/ia64/kernel/
Dsmpboot.c280 unsigned long flags, rt, master_time_stamp, bound; in ia64_sync_itc() local
314 bound = rt; in ia64_sync_itc()
/linux-4.4.14/arch/tile/mm/
Dfault.c169 int bound = get_clock_rate(); in wait_for_migration() local
172 if (++retries > bound) in wait_for_migration()
/linux-4.4.14/Documentation/video4linux/cx2341x/
Dfw-encoder-api.txt330 '00' subbands 4-31 in intensity_stereo, bound==4
331 '01' subbands 8-31 in intensity_stereo, bound==8
332 '10' subbands 12-31 in intensity_stereo, bound==12
333 '11' subbands 16-31 in intensity_stereo, bound==16
/linux-4.4.14/drivers/staging/rtl8188eu/hal/
Dphy.c987 u32 i, j, diff, sim_bitmap = 0, bound; in simularity_compare() local
996 bound = 8; in simularity_compare()
998 bound = 4; in simularity_compare()
1000 for (i = 0; i < bound; i++) { in simularity_compare()
1033 for (i = 0; i < (bound/4); i++) { in simularity_compare()
/linux-4.4.14/drivers/media/platform/omap3isp/
Dispccp2.c392 u64 bound; in ccp2_adjust_bandwidth() local
410 bound = div_u64(area * timeperframe->denominator, in ccp2_adjust_bandwidth()
412 value = min_t(u64, bound, l3_ick); in ccp2_adjust_bandwidth()
Disp.c2468 isp->notifier.bound = isp_subdev_notifier_bound; in isp_probe()
/linux-4.4.14/Documentation/networking/
Dphonet.txt93 protocol from the PF_PHONET family. Each socket is bound to one of the
136 socket paradigm. The listening socket is bound to an unique free object
Drds.txt50 Sockets must be bound before you can send or receive data.
52 attaches it to the socket. Once bound, the transport assignment
235 indicate which ports on bound addresses are congested. As the
Drxrpc.txt224 bound before the operation takes place.
495 (2) A local address can optionally be bound:
591 (2) A local address must then be bound:
710 the socket is bound to. The call will go to the destination address of a
715 the key bound to the socket with the RXRPC_SECURITY_KEY sockopt. Calls
Dl2tp.txt96 2. Create a single PPPoL2TP socket per tunnel bound to a special null
280 /* Note, the target socket must be bound already, else it will not be ready */
Dcan.txt320 on a socket that is bound to 'any' interface sendto(2) is needed to
323 Reading CAN frames from a bound CAN_RAW socket (see above) consists
347 When the CAN interface is bound to 'any' existing CAN interface
364 To write CAN frames on sockets bound to 'any' CAN interface the
669 Note a CAN_BCM socket must be connected instead of bound after socket
692 When the broadcast manager socket is bound to 'any' CAN interface (=> the
Ddl2k.txt100 Once the driver has been compiled, it must be loaded, enabled, and bound
Ddccp.txt199 bound for the expiry of the nofeedback timer. This can be useful on LANs
Dudplite.txt157 option. The maximum upper bound for the send buffer is determined
Dpktgen.txt256 also assign /proc/irq/XX/smp_affinity so that the TX interrupts are bound
Dcdc_mbim.txt34 functions bound to the "wrong" driver
Dcxgb.txt211 controller may be bound to more than one CPU. This will cause TCP
Dppp_generic.txt59 system call on an instance of /dev/ppp which is bound to the
Dscaling.txt44 programmable filters. For example, webserver bound TCP port 80 packets
Dpacket_mmap.txt332 <frame size> : it's an upper bound of frame's capture size (more on this later)
Dip-sysctl.txt479 seconds and is a lower bound for the effective timeout.
Dbonding.txt1637 force all traffic bound to 192.168.1.100 to use eth1 in the bond as its output
/linux-4.4.14/Documentation/fb/
Dfbcon.txt163 unloaded if it is still bound to the console layer. (See
171 The fbdev drivers cannot be unloaded if it's bound to fbcon, and fbcon cannot
172 be unloaded if it's bound to the console layer.
/linux-4.4.14/drivers/block/zram/
Dzram_drv.c120 u64 end, bound; in valid_io_request() local
129 bound = zram->disksize >> SECTOR_SHIFT; in valid_io_request()
131 if (unlikely(start >= bound || end > bound || start > end)) in valid_io_request()
/linux-4.4.14/Documentation/spi/
Dspi-lm70llp54 the bound "hwmon/lm70" protocol driver through its sysfs hook, using a
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192c/
Dphy_common.c1174 u32 i, j, diff, simularity_bitmap, bound; in _rtl92c_phy_simularity_compare() local
1181 bound = 8; in _rtl92c_phy_simularity_compare()
1183 bound = 4; in _rtl92c_phy_simularity_compare()
1187 for (i = 0; i < bound; i++) { in _rtl92c_phy_simularity_compare()
1208 for (i = 0; i < (bound / 4); i++) { in _rtl92c_phy_simularity_compare()
/linux-4.4.14/drivers/cpufreq/
DKconfig.x86146 the CPUs' workloads are. CPU-bound workloads will be more sensitive
147 -- they will perform better as frequency increases. Memory/IO-bound
/linux-4.4.14/Documentation/filesystems/
Dudf.txt15 be bound to the underlying cd device to provide the required buffering
Dsysfs-pci.txt79 In the event a driver is not bound to the device, it can be enabled using the
Dbtrfs.txt78 consequences when the system crashes. The upper bound is not forced,
Dseq_file.txt98 holding the current position. There is no upper bound for the sequence
Dxfs-delayed-logging-design.txt79 Effectively, this gives us the maximum bound of outstanding metadata changes
85 bound.
Dproc.txt1105 (interface index, label, number of references, number of bound
/linux-4.4.14/Documentation/cgroups/
Dunified-hierarchy.txt47 populated. Another issue is that all controllers bound to a hierarchy
103 All controllers which support the unified hierarchy and are not bound
104 to other hierarchies are automatically bound to unified hierarchy and
106 root of unified hierarchy can be bound to other hierarchies. This
162 In the root cgroup, this lists controllers which are not bound to
163 other hierarchies and the content changes as controllers are bound to
Dcpusets.txt605 mempolicy MPOL_BIND, and the nodes to which it was bound overlap with
610 was MPOL_BIND bound to the new cpuset (even though its NUMA placement,
620 bound to some subset of its cpuset using the sched_setaffinity() call,
651 cpuset is bound with another cgroup subsystem which has some restrictions
Dcgroups.txt372 to use it. Remounting allows changing bound subsystems and
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723ae/
Dphy.c1111 u32 i, j, diff, simularity_bitmap, bound; in _rtl8723e_phy_simularity_compare() local
1116 bound = 4; in _rtl8723e_phy_simularity_compare()
1120 for (i = 0; i < bound; i++) { in _rtl8723e_phy_simularity_compare()
1141 for (i = 0; i < (bound / 4); i++) { in _rtl8723e_phy_simularity_compare()
/linux-4.4.14/arch/powerpc/platforms/
DKconfig265 bound. The default behavior is to show both the upper and lower
266 bound in /proc/cpuinfo. If the range is large, the temperature is
/linux-4.4.14/tools/virtio/virtio-trace/
DREADME13 2) Create a read/write thread per CPU. Each thread is bound to a CPU.
/linux-4.4.14/Documentation/RCU/
Drcu.txt87 needed if you have CPU-bound realtime threads.
Dstallwarn.txt220 o A CPU-bound real-time task in a CONFIG_PREEMPT kernel, which might
229 o A CPU-bound real-time task in a CONFIG_PREEMPT_RT kernel that
DRTFP.txt74 This works well if there is a well-defined upper bound on the length of
/linux-4.4.14/Documentation/scheduler/
Dsched-bwc.txt41 upper bound on the period length of 1s. Additional restrictions exist when
Dsched-deadline.txt166 As a matter of fact, in this case it is possible to provide an upper bound
259 bound[12] (as previously noted). Different bounds on the maximum tardiness
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
Dphy.c1657 u32 i, j, diff, simularity_bitmap, bound; in _rtl88e_phy_simularity_compare() local
1664 bound = 8; in _rtl88e_phy_simularity_compare()
1666 bound = 4; in _rtl88e_phy_simularity_compare()
1670 for (i = 0; i < bound; i++) { in _rtl88e_phy_simularity_compare()
1691 for (i = 0; i < (bound / 4); i++) { in _rtl88e_phy_simularity_compare()
/linux-4.4.14/Documentation/cpu-freq/
Dgovernors.txt183 frequency changes. A workload with sensitivity of 0% (memory/IO-bound)
185 workload with sensitivity of 100% (CPU-bound) will perform better
/linux-4.4.14/Documentation/thermal/
Dintel_powerclamp.txt81 effect. Threads are also bound to the CPU such that they cannot be
264 cooling device. Currently, it’s not bound to any thermal zones.
Dsysfs-api.txt143 If nth bit is set, then the cdev and thermal zone are bound
153 be bound, as per platform data.
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmsmac/phy/
Dphy_cmn.c45 #define MODINC(x, bound) MUX((x) == (bound) - 1, 0, (x) + 1) argument
48 #define MODDEC_POW2(x, bound) (((x) - 1) & ((bound) - 1)) argument
49 #define MODINC_POW2(x, bound) (((x) + 1) & ((bound) - 1)) argument
/linux-4.4.14/Documentation/w1/
Dw1.generic54 provides temperature reading function which is bound to ->rbin() method
/linux-4.4.14/Documentation/networking/dsa/
Dbcm_sf2.txt62 driver require a struct device to be bound to a struct device_node, but things
/linux-4.4.14/Documentation/isdn/
DREADME296 4. Either the channel is not bound exclusively to another Net-interface, or
297 it is bound AND the other checks apply to exactly this interface.
311 is pre-bound to a channel, this channel is used directly.
532 unbinds a previously bound interface.
DINTERFACE454 The call is not implicitely bound to a connection.
708 The call is not implicitely bound to a connection.
DREADME.sc64 channels can be specifically bound to particular interfaces.
/linux-4.4.14/arch/m68k/fpsp040/
Dscale.S167 cmpiw #0xffc0,%d1 |lower bound for normalization
Dsetox.S125 | This bound will be used in Step 4.
/linux-4.4.14/Documentation/gpio/
Dboard.txt106 Finally, GPIOs can be bound to devices and functions using platform data. Board
/linux-4.4.14/Documentation/x86/
Dearlyprintk.txt52 The EHCI debug controller is bound to a specific physical USB
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8723be/
Dphy.c2004 u32 i, j, diff, simularity_bitmap, bound = 0; in _rtl8723be_phy_simularity_compare() local
2010 bound = 8; in _rtl8723be_phy_simularity_compare()
2014 for (i = 0; i < bound; i++) { in _rtl8723be_phy_simularity_compare()
2046 for (i = 0; i < (bound / 4); i++) { in _rtl8723be_phy_simularity_compare()
/linux-4.4.14/net/irda/
Daf_irda.c1611 int bound = 0; in irda_sendmsg_ultra() local
1659 bound = 1; in irda_sendmsg_ultra()
1689 err = irlmp_connless_data_request((bound ? self->lsap : NULL), in irda_sendmsg_ultra()
/linux-4.4.14/drivers/media/platform/xilinx/
Dxilinx-vipp.c548 xdev->notifier.bound = xvip_graph_notify_bound; in xvip_graph_init()
/linux-4.4.14/Documentation/vm/
Duserfaultfd.txt97 aren't waiting for userfaults (i.e. network bound) can keep running in
Dfrontswap.txt132 to be I/O bound and using a small fraction of a percent of a CPU
Dhugetlbpage.txt210 For local policy to be deterministic, the task must be bound to a cpu or
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192ee/
Dphy.c2448 u32 i, j, diff, simularity_bitmap, bound; in _rtl92ee_phy_simularity_compare() local
2454 bound = 8; in _rtl92ee_phy_simularity_compare()
2458 for (i = 0; i < bound; i++) { in _rtl92ee_phy_simularity_compare()
2491 for (i = 0; i < (bound / 4); i++) { in _rtl92ee_phy_simularity_compare()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8192de/
Dphy.c2114 u32 i, j, diff, sim_bitmap, bound; in _rtl92d_phy_simularity_compare() local
2120 bound = 8; in _rtl92d_phy_simularity_compare()
2122 bound = 4; in _rtl92d_phy_simularity_compare()
2124 for (i = 0; i < bound; i++) { in _rtl92d_phy_simularity_compare()
2141 for (i = 0; i < (bound / 4); i++) { in _rtl92d_phy_simularity_compare()
/linux-4.4.14/drivers/xen/
DKconfig177 will need to make sure no other driver has bound to the device(s)
/linux-4.4.14/drivers/input/serio/
DKconfig192 bound to this driver will be accessible via a char device with
/linux-4.4.14/drivers/char/
DKconfig501 The raw driver permits block devices to be bound to /dev/raw/rawN.
502 Once bound, I/O against /dev/raw/rawN uses efficient zero-copy I/O.
/linux-4.4.14/drivers/net/ethernet/tile/
Dtilegx.c1897 edesc_body.bound = !(p_used < p_len); in tso_egress()
2035 edescs[num_edescs - 1].bound = 1; in tile_net_tx()
/linux-4.4.14/drivers/net/wireless/realtek/rtl8xxxu/
Drtl8xxxu.c2906 u32 i, j, diff, simubitmap, bound = 0; in rtl8xxxu_simularity_compare() local
2911 bound = 8; in rtl8xxxu_simularity_compare()
2913 bound = 4; in rtl8xxxu_simularity_compare()
2917 for (i = 0; i < bound; i++) { in rtl8xxxu_simularity_compare()
2936 for (i = 0; i < (bound / 4); i++) { in rtl8xxxu_simularity_compare()
/linux-4.4.14/Documentation/sysctl/
Dnet.txt268 the primary network. It also indicates which device it is bound to (or
Dkernel.txt329 The upper bound on the number of tasks that are checked.
469 guarantee. If the target workload is already bound to NUMA nodes then this
/linux-4.4.14/drivers/scsi/
DBusLogic.c631 int last_exchange = probeinfo_cnt - 1, bound, j; in blogic_sort_probeinfo() local
634 bound = last_exchange; in blogic_sort_probeinfo()
636 for (j = 0; j < bound; j++) { in blogic_sort_probeinfo()
/linux-4.4.14/Documentation/frv/
Dmmu-layout.txt255 (*) The current task's page directory is bound to DAMR3.
/linux-4.4.14/init/
DKconfig604 initialization. These systems tend to run CPU-bound, and thus
665 real-time application that has one or more CPU-bound threads
668 real-time CPU-bound application thread. The default RCU_KTHREAD_PRIO
670 applications that do not have any CPU-bound threads.
766 "rcuo" are bound to "housekeeping" CPUs, this reduces OS jitter
/linux-4.4.14/drivers/media/platform/soc_camera/
Dsoc_camera.c1568 sasc->notifier.bound = soc_camera_async_bound; in scan_async_group()
1667 sasc->notifier.bound = soc_camera_async_bound; in soc_of_bind()
/linux-4.4.14/drivers/tty/vt/
Dvt.c3462 int i, bound = 0; in con_is_bound() local
3466 bound = 1; in con_is_bound()
3471 return bound; in con_is_bound()
/linux-4.4.14/Documentation/acpi/
Denumeration.txt365 the MFD device and if found, that ACPI companion device is bound to the
/linux-4.4.14/drivers/media/platform/davinci/
Dvpif_display.c1319 vpif_obj.notifier.bound = vpif_async_bound; in vpif_probe()
Dvpif_capture.c1508 vpif_obj.notifier.bound = vpif_async_bound; in vpif_probe()
/linux-4.4.14/drivers/media/platform/exynos4-is/
Dmedia-dev.c1407 fmd->subdev_notifier.bound = subdev_notifier_bound; in fimc_md_probe()
/linux-4.4.14/Documentation/devicetree/
Dusage-model.txt338 platform_device, which in turn may get bound to a platform_driver.
/linux-4.4.14/drivers/media/platform/am437x/
Dam437x-vpfe.c2597 vpfe->notifier.bound = vpfe_async_bound; in vpfe_probe()
/linux-4.4.14/Documentation/DocBook/
Ddevice-drivers.xml.db547 API-mpt-detect-bound-ports
/linux-4.4.14/Documentation/filesystems/caching/
Dnetfs-api.txt306 subtrees to be bound to particular caches, the second step is to look up cache
/linux-4.4.14/net/netfilter/
DKconfig1383 routing to implement full featured non-locally bound sockets.
/linux-4.4.14/Documentation/video4linux/
Dv4l2-framework.txt437 subdevices to them. If a match is detected the .bound() notifier callback is
Dvivid.txt843 upper bound of the HW Seek. Otherwise the frequency range boundaries
/linux-4.4.14/arch/m68k/ifpsp060/src/
Dfplsp.S6782 # This bound will be used in Step 4. #