/linux-4.1.27/drivers/power/ |
D | 88pm860x_charger.c | 112 unsigned allowed:1; member 321 (info->present) ? "present" : "N/A", info->allowed); in set_charging_fsm() 326 if (info->online && info->present && info->allowed) { in set_charging_fsm() 347 if (info->online && info->present && info->allowed) { in set_charging_fsm() 358 if (info->online && info->present && info->allowed) { in set_charging_fsm() 369 if (info->online && info->present && info->allowed) { in set_charging_fsm() 393 (info->present) ? "present" : "N/A", info->allowed); in set_charging_fsm() 412 info->allowed = 1; in pm860x_charger_handler() 415 info->allowed = 0; in pm860x_charger_handler() 419 (info->online) ? "online" : "N/A", info->allowed); in pm860x_charger_handler() [all …]
|
/linux-4.1.27/arch/mips/kvm/ |
D | interrupt.c | 119 int allowed = 0; in kvm_mips_irq_deliver_cb() local 130 allowed = 1; in kvm_mips_irq_deliver_cb() 139 allowed = 1; in kvm_mips_irq_deliver_cb() 148 allowed = 1; in kvm_mips_irq_deliver_cb() 157 allowed = 1; in kvm_mips_irq_deliver_cb() 167 if (allowed) { in kvm_mips_irq_deliver_cb() 195 return allowed; in kvm_mips_irq_deliver_cb()
|
/linux-4.1.27/drivers/usb/core/ |
D | urb.c | 334 unsigned int allowed; in usb_submit_urb() local 453 allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT | URB_DIR_MASK | in usb_submit_urb() 459 allowed |= URB_ZERO_PACKET; in usb_submit_urb() 462 allowed |= URB_NO_FSBR; /* only affects UHCI */ in usb_submit_urb() 466 allowed |= URB_SHORT_NOT_OK; in usb_submit_urb() 469 allowed |= URB_ISO_ASAP; in usb_submit_urb() 472 allowed &= urb->transfer_flags; in usb_submit_urb() 475 if (allowed != urb->transfer_flags) in usb_submit_urb() 477 urb->transfer_flags, allowed); in usb_submit_urb()
|
D | Kconfig | 67 allowed to support only a limited number of peripherals. 74 external hubs. OTG hosts are allowed to reduce hardware
|
/linux-4.1.27/drivers/usb/usbip/ |
D | stub_rx.c | 400 unsigned int allowed; in masking_bogus_flags() local 427 allowed = (URB_NO_TRANSFER_DMA_MAP | URB_NO_INTERRUPT | in masking_bogus_flags() 432 allowed |= URB_ZERO_PACKET; in masking_bogus_flags() 435 allowed |= URB_NO_FSBR; /* only affects UHCI */ in masking_bogus_flags() 439 allowed |= URB_SHORT_NOT_OK; in masking_bogus_flags() 442 allowed |= URB_ISO_ASAP; in masking_bogus_flags() 445 urb->transfer_flags &= allowed; in masking_bogus_flags()
|
/linux-4.1.27/arch/mips/kernel/ |
D | mips-mt-fpaff.c | 157 cpumask_t allowed, mask; in mipsmt_sys_sched_getaffinity() local 176 cpumask_or(&allowed, &p->thread.user_cpus_allowed, &p->cpus_allowed); in mipsmt_sys_sched_getaffinity() 177 cpumask_and(&mask, &allowed, cpu_active_mask); in mipsmt_sys_sched_getaffinity()
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-bwc.txt | 10 The bandwidth allowed for a group is specified using a quota and period. Within 11 each given "period" (microseconds), a group is allowed to consume only up to 14 hierarchy will be throttled and are not allowed to run again until the next 40 The minimum quota allowed for the quota or period is 1ms. There is also an 80 aggregate case is explicitly allowed to enable work-conserving semantics 91 be allowed to until the parent's runtime is refreshed.
|
D | sched-domains.txt | 11 CPUs will never be given tasks to run unless the CPUs allowed mask is
|
/linux-4.1.27/Documentation/security/ |
D | Yama.txt | 26 exist and remain possible if ptrace is allowed to operate as before. 28 builders should be allowed the option to disable this debugging system. 40 other process (and its descendants) are allowed to call PTRACE_ATTACH 46 so that any otherwise allowed process (even those in external pid namespaces) 62 an allowed debugger PID to call PTRACE_ATTACH on the inferior.
|
D | Smack.txt | 168 which sort of access is allowed. The "-" is a placeholder for 169 permissions that are not allowed. The string "r-x--" would 180 which sort of access is allowed. The "-" is a placeholder for 181 permissions that are not allowed. The string "r-x--" would 220 only allowed when subject's and object's labels are equal. 241 object with objectlabel. If there is no rule no access is allowed. 256 allow the program or user to decide what other programs or users are allowed 322 Privilege: A task that is allowed to violate the system security 402 of access allowed. The access specification is searched for letters that 412 Uppercase values for the specification letters are allowed as well. [all …]
|
D | keys-trusted-encrypted.txt | 40 default 1 (resealing allowed)
|
D | keys-request-key.txt | 160 if the key is allowed to be found. If it is, that key is returned; if
|
/linux-4.1.27/mm/ |
D | util.c | 406 unsigned long allowed; in vm_commit_limit() local 409 allowed = sysctl_overcommit_kbytes >> (PAGE_SHIFT - 10); in vm_commit_limit() 411 allowed = ((totalram_pages - hugetlb_total_pages()) in vm_commit_limit() 413 allowed += total_swap_pages; in vm_commit_limit() 415 return allowed; in vm_commit_limit()
|
D | mlock.c | 733 int allowed = 0; in user_shm_lock() local 738 allowed = 1; in user_shm_lock() 741 if (!allowed && in user_shm_lock() 746 allowed = 1; in user_shm_lock() 749 return allowed; in user_shm_lock()
|
D | nommu.c | 1921 long free, allowed, reserve; in __vm_enough_memory() local 1973 allowed = vm_commit_limit(); in __vm_enough_memory() 1978 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); in __vm_enough_memory() 1985 allowed -= min_t(long, mm->total_vm / 32, reserve); in __vm_enough_memory() 1988 if (percpu_counter_read_positive(&vm_committed_as) < allowed) in __vm_enough_memory()
|
D | mmap.c | 155 long free, allowed, reserve; in __vm_enough_memory() local 211 allowed = vm_commit_limit(); in __vm_enough_memory() 216 allowed -= sysctl_admin_reserve_kbytes >> (PAGE_SHIFT - 10); in __vm_enough_memory() 223 allowed -= min_t(long, mm->total_vm / 32, reserve); in __vm_enough_memory() 226 if (percpu_counter_read_positive(&vm_committed_as) < allowed) in __vm_enough_memory()
|
/linux-4.1.27/Documentation/vm/ |
D | numa_memory_policy.txt | 218 the user should not be remapped if the task or VMA's set of allowed 222 change in the set of allowed nodes, the node (Preferred) or 224 allowed nodes. This may result in nodes being used that were 228 nodes allowed by the task's cpuset, then the memory policy is 236 3 is allowed from the user's nodemask, the "interleave" only 238 now allowed, the Default behavior is used. 247 set of allowed nodes. The kernel stores the user-passed nodemask, 248 and if the allowed nodes changes, then that original nodemask will 249 be remapped relative to the new set of allowed nodes. 252 mempolicy is rebound because of a change in the set of allowed [all …]
|
D | hugetlbpage.txt | 91 over all the set of allowed nodes specified by the NUMA memory policy of the 92 task that modifies nr_hugepages. The default for the allowed nodes--when the 118 indicates that the hugetlb subsystem is allowed to try to obtain that 141 no more surplus huge pages will be allowed to be allocated. 203 possibly, allocation of persistent huge pages on nodes not allowed by 216 3) The nodes allowed mask will be derived from any non-default task mempolicy, 282 size option sets the maximum value of memory (huge pages) allowed for that 286 value of memory (huge pages) allowed for the filesystem. min_size can be
|
D | overcommit-accounting | 6 overcommit to reduce swap usage. root is allowed to
|
D | page_migration | 45 of processes in a cpuset are moved if the allowed memory nodes of a
|
/linux-4.1.27/security/selinux/ss/ |
D | services.c | 226 if (avd->allowed & current_mapping[tclass].perms[i]) in map_decision() 231 avd->allowed = result; in map_decision() 569 if ((lo_avd.allowed & avd->allowed) == avd->allowed) in type_attribute_bounds_av() 571 masked = ~lo_avd.allowed & avd->allowed; in type_attribute_bounds_av() 584 if ((lo_avd.allowed & avd->allowed) == avd->allowed) in type_attribute_bounds_av() 586 masked = ~lo_avd.allowed & avd->allowed; in type_attribute_bounds_av() 600 if ((lo_avd.allowed & avd->allowed) == avd->allowed) in type_attribute_bounds_av() 602 masked = ~lo_avd.allowed & avd->allowed; in type_attribute_bounds_av() 607 avd->allowed &= ~masked; in type_attribute_bounds_av() 633 avd->allowed = 0; in context_struct_compute_av() [all …]
|
D | conditional.c | 629 avd->allowed |= node->datum.data; in cond_compute_av()
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-class-net-queues | 67 Indicates the current limit of bytes allowed to be queued 76 Indicates the absolute maximum limit of bytes allowed to be 85 Indicates the absolute minimum limit of bytes allowed to be
|
D | sysfs-module | 18 Description: Maximum time allowed for periodic transfers per microframe (μs) 20 [ USB 2.0 sets maximum allowed time for periodic transfers per
|
D | sysfs-class-powercap | 119 Maximum allowed power in micro watts for this constraint. 127 Minimum allowed power in micro watts for this constraint. 135 Maximum allowed time window in micro seconds for this 143 Minimum allowed time window in micro seconds for this
|
D | sysfs-memory-page-offline | 21 the file is not allowed. 44 Reading the file is not allowed.
|
D | sysfs-driver-ppi | 54 This attribute shows whether it is allowed to request an 65 This attribute shows whether it is allowed to request an
|
D | sysfs-kernel-uids | 7 to set the cpu bandwidth a user is allowed. This is a
|
D | sysfs-bus-event_source-devices-hv_gpci | 8 '1' if that access is allowed.
|
D | sysfs-class-led-flash | 80 its allowed upper limit
|
D | debugfs-driver-genwqe | 74 in the system and the maximum allowed queue size.
|
D | sysfs-firmware-dmi | 27 Multiple entries of the same type are allowed. In order
|
D | sysfs-devices-system-cpu | 22 kernel_max: the maximum cpu index allowed by the kernel 26 HOTPLUGGED off or exceed the limit of cpus allowed by the
|
D | sysfs-devices-power | 210 which is the maximum allowed time it can take to resume the 232 but hardware should not be allowed to set the latency tolerance
|
D | sysfs-firmware-acpi | 172 Note that only writting to VALID GPE/Fixed Event is allowed,
|
/linux-4.1.27/Documentation/cgroups/ |
D | cpusets.txt | 58 schedule a task on a CPU that is not allowed in its cpus_allowed 60 node that is not allowed in the requesting task's mems_allowed vector. 119 - Cpusets are sets of allowed CPUs and Memory Nodes, known to the 124 allowed in that task's cpuset. 126 those Memory Nodes allowed in that task's cpuset. 144 allowed in that task's cpuset. 146 the CPUs allowed by their cpuset, if possible. 148 Memory Nodes by what's allowed in that task's cpuset. 149 - in page_alloc.c, to restrict memory to allowed nodes. 178 - cpuset.memory_spread_page flag: if set, spread page cache evenly on allowed nodes [all …]
|
D | devices.txt | 79 In case parent's exceptions change and local exceptions are not allowed
|
D | freezer-subsystem.txt | 73 allowed - "FROZEN" and "THAWED". If FROZEN is written, the cgroup,
|
/linux-4.1.27/drivers/media/rc/ |
D | rc-main.c | 850 u64 allowed, enabled; in show_protocols() local 862 allowed = dev->allowed_protocols; in show_protocols() 863 if (dev->raw && !allowed) in show_protocols() 864 allowed = ir_raw_get_allowed_protocols(); in show_protocols() 867 allowed = dev->allowed_wakeup_protocols; in show_protocols() 873 __func__, (long long)allowed, (long long)enabled); in show_protocols() 876 if (allowed & enabled & proto_names[i].type) in show_protocols() 878 else if (allowed & proto_names[i].type) in show_protocols() 881 if (allowed & proto_names[i].type) in show_protocols() 882 allowed &= ~proto_names[i].type; in show_protocols()
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-st.txt | 18 allowed through the deglitch circuit. In units of us. 20 allowed through the deglitch circuit. In units of us.
|
/linux-4.1.27/net/mac80211/ |
D | led.c | 282 bool allowed; in ieee80211_mod_tpt_led_trig() local 298 allowed = tpt_trig->active & IEEE80211_TPT_LEDTRIG_FL_RADIO; in ieee80211_mod_tpt_led_trig() 300 if (!allowed || !(tpt_trig->active & tpt_trig->want)) in ieee80211_mod_tpt_led_trig()
|
/linux-4.1.27/arch/powerpc/kvm/ |
D | booke.c | 381 int allowed = 0; in kvmppc_booke_irqprio_deliver() local 433 allowed = 1; in kvmppc_booke_irqprio_deliver() 440 allowed = vcpu->arch.shared->msr & MSR_CE; in kvmppc_booke_irqprio_deliver() 441 allowed = allowed && !crit; in kvmppc_booke_irqprio_deliver() 446 allowed = vcpu->arch.shared->msr & MSR_ME; in kvmppc_booke_irqprio_deliver() 447 allowed = allowed && !crit; in kvmppc_booke_irqprio_deliver() 456 allowed = vcpu->arch.shared->msr & MSR_EE; in kvmppc_booke_irqprio_deliver() 457 allowed = allowed && !crit; in kvmppc_booke_irqprio_deliver() 462 allowed = vcpu->arch.shared->msr & MSR_DE; in kvmppc_booke_irqprio_deliver() 463 allowed = allowed && !crit; in kvmppc_booke_irqprio_deliver() [all …]
|
/linux-4.1.27/drivers/usb/mon/ |
D | Kconfig | 12 If unsure, say Y, if allowed, otherwise M.
|
/linux-4.1.27/Documentation/ |
D | IRQ-affinity.txt | 9 (smp_affinity) or cpu list (smp_affinity_list) of allowed CPUs. It's not 10 allowed to turn off all CPUs, and if an IRQ controller does not support
|
D | clk.txt | 273 .disable and .is_enabled operations. Those operations are thus not allowed to 275 functions are allowed in atomic context. 278 All those operations are allowed to sleep, and calls to the corresponding API 279 functions are not allowed in atomic context. 290 The clock framework is reentrant, in that a driver is allowed to call clock
|
D | cputopology.txt | 69 kernel_max: the maximum CPU index allowed by the kernel configuration. 74 of CPUs allowed by the kernel configuration (kernel_max
|
D | binfmt_misc.txt | 34 recognised (without the '.', the \x0a specials are not allowed). Extension 35 matching is case sensitive, and slashes '/' are not allowed!
|
D | sysrq.txt | 13 /proc/sys/kernel/sysrq controls the functions allowed to be invoked via 19 >1 - bitmask of allowed sysrq functions (see below for detailed function 39 allowed (by a user with admin privileges).
|
D | DMA-attributes.txt | 98 By default DMA-mapping subsystem is allowed to assemble the buffer
|
D | rtc.txt | 63 built in locking so that only one process is allowed to have the /dev/rtc 82 only allowed by root. This is perhaps a bit conservative, but we don't want
|
D | md.txt | 260 cannot be explicitly set, and some transitions are not allowed. 396 Writing "want_replacement" is allowed at any time except to a 398 Writing "-want_replacement" is allowed at any time. It clears 400 Writing "replacement" or "-replacement" is only allowed before
|
D | dma-buf-sharing.txt | 211 be allowed, if possible for the exporter. 213 In case it is allowed by the exporter: 290 the callback) is allowed to block when using these.
|
D | md-cluster.txt | 65 system. The node having the token resource is allowed to
|
D | padata.txt | 22 processors are allowed to be used as the serialization callback processor.
|
/linux-4.1.27/Documentation/arm/ |
D | kernel_mode_neon.txt | 52 implies that interruptions of a kernel mode NEON section can only be allowed if 55 * NEON/VFP code is not allowed in interrupt context; 56 * NEON/VFP code is not allowed to sleep; 81 kernel_neon_end(), i.e., that it is only allowed to issue NEON/VFP instructions
|
/linux-4.1.27/Documentation/power/powercap/ |
D | powercap.txt | 208 constraint_X_max_power_uw(ro): Maximum allowed power in micro watts. 210 constraint_X_min_power_uw(ro): Minimum allowed power in micro watts. 212 constraint_X_max_time_window_us(ro): Maximum allowed time window in micro seconds. 214 constraint_X_min_time_window_us(ro): Minimum allowed time window in micro seconds.
|
/linux-4.1.27/arch/arc/include/asm/ |
D | entry.h | 455 mov lp_count, r9 ;LD to lp_count is not allowed 538 mov lp_count, r9 ;LD to lp_count is not allowed 557 mov lp_count, r9 ;LD to lp_count is not allowed
|
/linux-4.1.27/Documentation/devicetree/bindings/c6x/ |
D | timer64.txt | 17 - ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
|
/linux-4.1.27/arch/mips/dec/ |
D | int-handler.S | 137 and t0,t1 # isolate allowed ones 191 1: and t0,t1 # mask out allowed ones
|
/linux-4.1.27/Documentation/ABI/removed/ |
D | dv1394 | 8 ioctl()s allowed limited control.
|
D | raw1394 | 5 /dev/raw1394 was a character device file that allowed low-level
|
/linux-4.1.27/kernel/ |
D | user_namespace.c | 933 bool allowed; in userns_may_setgroups() local 939 allowed = ns->gid_map.nr_extents != 0; in userns_may_setgroups() 941 allowed = allowed && (ns->flags & USERNS_SETGROUPS_ALLOWED); in userns_may_setgroups() 944 return allowed; in userns_may_setgroups()
|
D | cpuset.c | 2494 int allowed; /* is allocation in zone z allowed? */ in __cpuset_node_allowed() local 2518 allowed = node_isset(node, cs->mems_allowed); in __cpuset_node_allowed() 2522 return allowed; in __cpuset_node_allowed()
|
/linux-4.1.27/Documentation/thermal/ |
D | nouveau_thermal | 56 * pwm1_min: The minimum PWM speed allowed; 57 * pwm1_max: The maximum PWM speed allowed (bypassed when hitting Fan_boost);
|
D | intel_powerclamp.txt | 113 Only one CPU is allowed to collect statistics and update global 228 The maximum range that idle injection is allowed is capped at 50 229 percent. As mentioned earlier, since interrupts are allowed during
|
/linux-4.1.27/net/ieee802154/ |
D | Kconfig | 7 devices. Maximum allowed data rate is 250 kb/s and typical personal
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-driver-ib_srp | 42 * allow_ext_sg, whether ib_srp is allowed to include a partial 53 maximum S/G list length the SCSI layer is allowed to pass to 67 initiator is allowed to queue per SCSI host. The default 87 Description: Whether ib_srp is allowed to include a partial memory
|
/linux-4.1.27/fs/gfs2/ |
D | file.c | 859 if (ap.allowed && ap.allowed < max_blks) in __gfs2_fallocate() 860 max_blks = ap.allowed; in __gfs2_fallocate() 867 if (ap.allowed && ap.allowed < max_blks) in __gfs2_fallocate() 868 max_blks = ap.allowed; in __gfs2_fallocate()
|
D | quota.c | 1123 ap->allowed = UINT_MAX; /* Assume we are permitted a whole lot */ in gfs2_quota_check() 1144 if (limit > 0 && (limit - value) < ap->allowed) in gfs2_quota_check() 1145 ap->allowed = limit - value; in gfs2_quota_check() 1150 if (!ap->min_target || ap->min_target > ap->allowed) { in gfs2_quota_check()
|
D | incore.h | 307 u64 allowed; member
|
/linux-4.1.27/drivers/media/dvb-frontends/drx39xyj/ |
D | drx_dap_fasi.h | 98 #error At least one of short- or long-addressing format must be allowed.
|
/linux-4.1.27/Documentation/namespaces/ |
D | resource-control.txt | 3 of processes is allowed to switch user ids. With user namespaces
|
/linux-4.1.27/Documentation/devicetree/bindings/mips/cavium/ |
D | uctl.txt | 29 /* 12MHz, 24MHz and 48MHz allowed */
|
/linux-4.1.27/tools/perf/Documentation/ |
D | perf.txt | 21 List of debug variables allowed to set:
|
/linux-4.1.27/arch/powerpc/platforms/ps3/ |
D | spu.c | 553 static const u64 allowed = ~(MFC_STATE1_LOCAL_STORAGE_DECODE_MASK in mfc_sr1_set() local 556 BUG_ON((sr1 & allowed) != (spu_pdata(spu)->cache.sr1 & allowed)); in mfc_sr1_set()
|
/linux-4.1.27/Documentation/devicetree/bindings/misc/ |
D | at25.txt | 22 Additional compatible properties are also allowed.
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-impedance-analyzer-ad5933 | 28 that are allowed to pass through the unknown impedance,
|
/linux-4.1.27/Documentation/devicetree/bindings/clock/ |
D | maxim,max77686.txt | 19 to specify the clock which they consume. Following indices are allowed:
|
D | maxim,max77802.txt | 18 to specify the clock which they consume. Following indices are allowed:
|
/linux-4.1.27/Documentation/devicetree/bindings/media/i2c/ |
D | mt9v032.txt | 21 - link-frequencies: List of allowed link frequencies in Hz. Each frequency is
|
D | nokia,smia.txt | 20 - link-frequencies: List of allowed data link frequencies. An array of
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | gpio-keys.txt | 19 both at the same time. Specifying both properties is allowed.
|
/linux-4.1.27/security/selinux/include/ |
D | avc.h | 75 denied = requested & ~avd->allowed; in avc_audit_required()
|
D | security.h | 104 u32 allowed; member
|
/linux-4.1.27/Documentation/infiniband/ |
D | core_locking.txt | 70 allowed for a low-level driver to call a consumer's completion event 79 following situation is not allowed:
|
/linux-4.1.27/drivers/staging/slicoss/ |
D | TODO | 16 - no new SIOCDEVPRIVATE ioctl allowed
|
/linux-4.1.27/Documentation/w1/slaves/ |
D | w1_ds28e04 | 28 and 31) are allowed to be written.
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-bus-usb | 10 "on" means that the device is not allowed to autosuspend,
|
/linux-4.1.27/scripts/ |
D | checkpatch.pl | 4484 my @allowed = (); 4496 $allowed[$allow] = 0; 4512 $allowed[$allow] = 1; 4516 $allowed[$allow] = 1; 4520 $allowed[$allow] = 1; 4526 foreach (@allowed) { 4542 my $allowed = 0; 4547 $allowed = 1; 4561 $allowed = 1; 4565 $allowed = 1; [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ab8500/ |
D | fg.txt | 52 allowed types are:
|
/linux-4.1.27/security/selinux/ |
D | avc.c | 579 node->ae.avd.allowed |= perms; in avc_update_node() 583 node->ae.avd.allowed &= ~perms; in avc_update_node() 732 denied = requested & ~(avd->allowed); in avc_has_perm_noaudit()
|
/linux-4.1.27/Documentation/blockdev/drbd/ |
D | drbd-connection-state-overview.dot | 48 …any>resynchronisation process running\l'concurrent' application requests allowed|{{<T>PausedSyncT\…
|
/linux-4.1.27/drivers/net/wireless/ath/ |
D | Kconfig | 42 this feature is explicitly allowed and only on cards that
|
/linux-4.1.27/Documentation/arm/SA1100/ |
D | serial_UART | 45 in /etc/securetty for root to be allowed to login as well.
|
/linux-4.1.27/Documentation/misc-devices/ |
D | ad525x_dpot.txt | 16 many depends on the actual part you have, as will the range of allowed values.
|
/linux-4.1.27/Documentation/devicetree/bindings/memory-controllers/ti/ |
D | emif.txt | 13 allowed values
|
/linux-4.1.27/Documentation/devicetree/bindings/sound/ |
D | fsl,esai.txt | 32 FIFOs. This number is the maximum allowed value for
|
D | st,sta32x.txt | 53 multiples of 20 are allowed. Default is 140ns.
|
D | st,sta350.txt | 61 multiples of 20 are allowed. Default is 140ns.
|
D | fsl,ssi.txt | 30 This number is the maximum allowed value for SFCSR[TFWM0].
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | qcom-pm8xxx.txt | 79 Definition: indicates that the setting of RTC time is allowed by
|
D | ab8500.txt | 47 : USB_CHARGER_NOT_OKR : : allowed USB charger not ok detection
|
/linux-4.1.27/Documentation/i2c/ |
D | fault-codes | 58 than allowed. This usually indicates some device (maybe the 120 time than allowed by the SMBus specification; for example,
|
/linux-4.1.27/drivers/gpu/drm/radeon/ |
D | radeon_object.c | 535 u32 allowed = lobj->allowed_domains; in radeon_bo_list_validate() local 547 if ((allowed & current_domain) != 0 && in radeon_bo_list_validate() 557 radeon_uvd_force_into_uvd_segment(bo, allowed); in radeon_bo_list_validate()
|
/linux-4.1.27/Documentation/scsi/ |
D | scsi_eh.txt | 99 retry and only allowed scmd->allowed + 1(!) times. Once the 245 scmd->allowed. 317 scmd->retries is set to scmd->allowed preventing 466 ->allowed to limit the number of retries.
|
D | bnx2fc.txt | 71 LLDP client is allowed per interface. For proper operation all host software
|
D | st.txt | 183 allowed if ST_BUFFER_WRITES is non-zero and direct i/o is not used. 227 number of scatter/gather segments allowed for the SCSI adapter is not 229 segments specified. If the maximum number allowed for the SCSI adapter 239 the next write is allowed to proceed and, if successful, the number of 274 pairs are separated with a comma (no spaces allowed). A colon can be 359 This command is only allowed for the superuser (root). The
|
D | LICENSE.qla4xxx | 18 of this license document, but changing it is not allowed. 162 allowed only for noncommercial distribution and only if you
|
D | LICENSE.qla2xxx | 19 of this license document, but changing it is not allowed. 163 allowed only for noncommercial distribution and only if you
|
/linux-4.1.27/drivers/net/wireless/libertas/ |
D | cmd.c | 1520 int allowed = 1; in lbs_ps_confirm_sleep() local 1526 allowed = 0; in lbs_ps_confirm_sleep() 1532 allowed = 0; in lbs_ps_confirm_sleep() 1538 allowed = 0; in lbs_ps_confirm_sleep() 1543 if (allowed) { in lbs_ps_confirm_sleep()
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | 8250.txt | 44 driver is allowed to detect support for the capability even without this
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | mpic-msgr.txt | 26 are allowed to receive interrupts. The value is a bit mask where a set
|
D | srio.txt | 75 Note: All other standard properties (see ePAPR) are allowed but are optional.
|
D | srio-rmu.txt | 127 Note: All other standard properties (see the ePAPR) are allowed
|
/linux-4.1.27/include/scsi/ |
D | scsi_cmnd.h | 84 int allowed; member
|
/linux-4.1.27/Documentation/video4linux/cx2341x/ |
D | README.vbi | 12 all lines can be stored while still fitting within the maximum allowed size.
|
/linux-4.1.27/drivers/staging/speakup/ |
D | DefaultKeyAssignments | 39 allowed value for the row or column for your current screen.
|
/linux-4.1.27/Documentation/prctl/ |
D | seccomp_filter.txt | 39 system calls in socketcall() is allowed, for instance) which could be 65 If fork/clone and execve are allowed by @prog, any child 75 Additionally, if prctl(2) is allowed by the attached filter,
|
D | no_new_privs.txt | 43 Unprivileged users are therefore only allowed to install such filters
|
/linux-4.1.27/Documentation/networking/ |
D | netif-msg.txt | 33 were consistently renamed to "debug" and allowed to be set as a module
|
D | driver.txt | 69 For example, this means that it is not allowed for your TX
|
D | de4x5.txt | 154 Command line arguments are now allowed, similar to passing arguments 159 following parameters are allowed:
|
D | ip-sysctl.txt | 67 Maximum number of routes allowed in the kernel. Increase 84 Maximum number of neighbor entries allowed. Increase this 132 maximum "disorder" which is allowed among fragments which share a 373 max: number of pages allowed for queueing by all TCP sockets. 478 max: maximal size of receive buffer allowed for automatically 611 max: Maximal amount of memory allowed for automatically tuned 681 Number of pages allowed for queueing by all UDP sockets. 689 max: Number of pages allowed for queueing by all UDP sockets. 958 3069, where the individual ports are NOT allowed to 959 communicate with each other, but they are allowed to talk to [all …]
|
D | netdevices.txt | 39 must be able to receive at least the maximum size packet allowed by
|
D | ray_cs.txt | 120 but no normal network use is allowed.
|
D | netdev-features.txt | 144 NETIF_F_NETNS_LOCAL is set for devices that are not allowed to move between
|
D | phonet.txt | 68 Note that Phonet interfaces are not allowed to re-order packets, so
|
D | regulatory.txt | 91 the only ones that will be allowed and therefore *additional*
|
D | LICENSE.qlge | 17 of this license document, but changing it is not allowed. 161 allowed only for noncommercial distribution and only if you
|
/linux-4.1.27/fs/btrfs/ |
D | volumes.c | 3347 u64 allowed; in btrfs_balance() local 3360 allowed = btrfs_super_incompat_flags(fs_info->super_copy); in btrfs_balance() 3361 if (allowed & BTRFS_FEATURE_INCOMPAT_MIXED_GROUPS) in btrfs_balance() 3368 allowed = BTRFS_BALANCE_DATA | BTRFS_BALANCE_METADATA; in btrfs_balance() 3369 if (mixed && (bctl->flags & allowed)) { in btrfs_balance() 3387 allowed = BTRFS_AVAIL_ALLOC_BIT_SINGLE; in btrfs_balance() 3389 allowed |= BTRFS_BLOCK_GROUP_DUP; in btrfs_balance() 3391 allowed |= (BTRFS_BLOCK_GROUP_RAID0 | BTRFS_BLOCK_GROUP_RAID1); in btrfs_balance() 3393 allowed |= BTRFS_BLOCK_GROUP_RAID5; in btrfs_balance() 3395 allowed |= (BTRFS_BLOCK_GROUP_RAID10 | in btrfs_balance() [all …]
|
/linux-4.1.27/Documentation/filesystems/ |
D | cramfs.txt | 22 filesystem is allowed to extend past 256MB.)
|
D | quota.txt | 10 resource (unless he has CAP_SYS_RESOURCE capability). User is allowed to exceed
|
D | fuse.txt | 18 user. NOTE: this is not the same as mounts allowed with the "user" 104 allowed to root, but this restriction can be removed with a 294 ptrace can be used to check if a process is allowed to access
|
D | inotify.txt | 24 A: An fd-per-watch quickly consumes more file descriptors than are allowed,
|
D | overlayfs.txt | 208 Offline changes, when the overlay is not mounted, are allowed to either 212 filesystem are not allowed. If the underlying filesystem is changed,
|
D | ocfs2.txt | 81 inode64 Indicates that Ocfs2 is allowed to create inodes at
|
D | proc.txt | 254 Mems_allowed mask of memory nodes allowed to this process 723 between all the CPUs which are allowed to handle it. As usual the kernel has 1430 units are roughly a proportion along that range of allowed memory the process 1432 For example, if a task is using all allowed memory, its badness score will be 1433 1000. If it is using half of its allowed memory, its score will be 500. 1438 The amount of "allowed" memory depends on the context in which the oom killer 1440 being exhausted, the allowed memory represents the set of mems assigned to that 1441 cpuset. If it is due to a mempolicy's node(s) being exhausted, the allowed 1443 limit (or swap limit) being reached, the allowed memory is that configured 1445 allowed memory represents all allocatable resources. [all …]
|
D | vfat.txt | 33 writable, utime(2) is also allowed. I.e. ~dmask & 022) 125 allowed only if the extension part of the name is .EXE,
|
D | qnx6.txt | 132 If that structure shall fit for all allowed blocksizes, it is clear why there
|
/linux-4.1.27/Documentation/early-userspace/ |
D | README | 33 CONFIG_INITRAMFS_SOURCE and directory and file names are not allowed in 45 cpio archives are *not* allowed when building from sources.
|
/linux-4.1.27/Documentation/x86/x86_64/ |
D | fake-numa-for-cpusets | 46 Now this cpuset, 'ddset', will only allowed access to fake nodes 0 and 1 for
|
/linux-4.1.27/Documentation/devicetree/bindings/net/dsa/ |
D | dsa.txt | 18 the parent DSA node. The maximum number of allowed child nodes is 4
|
/linux-4.1.27/Documentation/usb/ |
D | power-management.txt | 84 exact definition depends on the device's driver; drivers are allowed 125 allowed to issue dynamic suspends. 161 autosuspend is not allowed. (Of course, system 162 suspends are still allowed.) 165 allowed to autosuspend and autoresume the device. 169 suspended and autoresume was not allowed. This 464 External suspend calls should never be allowed to fail in this way, 709 applied before the port is allowed to poweroff.
|
D | bulk-streams.txt | 50 Drivers will only be allowed to call this API once for the same endpoint
|
D | gadget_configfs.txt | 131 where <name> corresponds to one of allowed function names and instance name 132 is an arbitrary string allowed in a filesystem, e.g.:
|
D | callbacks.txt | 81 You are not allowed any IO to a device after returning from this
|
/linux-4.1.27/Documentation/virtual/kvm/devices/ |
D | s390_flic.txt | 45 the host is allowed to handle this async and continues the guest.
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | fw-cfg.txt | 49 certainly allowed to); the device tree bindings are documented here because
|
/linux-4.1.27/Documentation/devicetree/bindings/crypto/ |
D | fsl-sec6.txt | 58 Note: All other standard properties (see the ePAPR) are allowed
|
/linux-4.1.27/Documentation/acpi/ |
D | initrd_table_override.txt | 63 # tables are currently allowed (see osl.c):
|
D | method-customizing.txt | 72 restricted (for example if root is not allowed to load additional
|
/linux-4.1.27/net/irda/ |
D | Kconfig | 73 time (usually 500ms) before it is allowed to transmit the next time.
|
/linux-4.1.27/drivers/net/wireless/b43/ |
D | phy_ht.c | 236 u16 allowed = B43_PHY_HT_CLASS_CTL_CCK_EN | in b43_phy_ht_classifier() local 241 tmp &= allowed; in b43_phy_ht_classifier() 244 b43_phy_maskset(dev, B43_PHY_HT_CLASS_CTL, ~allowed, tmp); in b43_phy_ht_classifier()
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi-bus.txt | 69 Dual/Quad mode is not allowed when 3-wire mode is used.
|
/linux-4.1.27/drivers/w1/slaves/ |
D | Kconfig | 79 Full block writes are only allowed if the CRC is valid.
|
/linux-4.1.27/Documentation/ia64/ |
D | aliasing.txt | 122 the WC mapping is allowed. 164 These must be allowed so that X will work. This means that
|
/linux-4.1.27/drivers/scsi/ |
D | storvsc_drv.c | 1531 bool allowed = true; in storvsc_scsi_cmd_ok() local 1543 allowed = false; in storvsc_scsi_cmd_ok() 1548 return allowed; in storvsc_scsi_cmd_ok()
|
D | scsi_error.c | 141 (++scmd->retries <= scmd->allowed)) { in scmd_eh_abort_handler() 1202 scmd->retries = scmd->allowed; in scsi_eh_get_sense() 1931 if ((++scmd->retries) <= scmd->allowed in scsi_decide_disposition() 2084 (++scmd->retries <= scmd->allowed)) { in scsi_eh_flush_done_q()
|
D | sd.c | 757 cmd->allowed = SD_MAX_RETRIES; in sd_setup_discard_cmnd() 849 cmd->allowed = SD_MAX_RETRIES; in sd_setup_write_same_cmnd() 877 cmd->allowed = SD_MAX_RETRIES; in sd_setup_flush_cmnd() 1110 SCpnt->allowed = SD_MAX_RETRIES; in sd_setup_read_write_cmnd()
|
/linux-4.1.27/Documentation/cpu-freq/ |
D | boost.txt | 9 that file with either "0" (boosting disabled) or "1" (boosting allowed).
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/omap/ |
D | omap.txt | 26 - ti,no-idle: When present, the module is never allowed to idle.
|
/linux-4.1.27/Documentation/powerpc/ |
D | ptrace.txt | 54 uint32_t trigger_type; /* only some combinations allowed */
|
D | cxl.txt | 229 In AFU directed mode, master contexts are allowed to map all of 230 the MMIO space and slave contexts are allowed to only map the per
|
/linux-4.1.27/Documentation/arm/nwfpe/ |
D | TODO | 39 default, but rounding to + or - infinity or round to zero are also allowed.
|
/linux-4.1.27/Documentation/driver-model/ |
D | class.txt | 63 The class is allowed to create a class-specific structure for the
|
/linux-4.1.27/arch/mips/boot/dts/cavium-octeon/ |
D | octeon_3xxx.dts | 535 /* 12MHz, 24MHz and 48MHz allowed */ 560 /* 12MHz, 24MHz and 48MHz allowed */
|
/linux-4.1.27/drivers/net/appletalk/ |
D | Kconfig | 29 even politically correct people are allowed to say Y here.
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/msm/ |
D | qcom,idle-state.txt | 20 cache hierarchy is also out of standby, and then the cpu is allowed to resume
|
/linux-4.1.27/Documentation/block/ |
D | queue-sysfs.txt | 63 size allowed by the hardware.
|
/linux-4.1.27/Documentation/filesystems/pohmelfs/ |
D | design_notes.txt | 52 the server during system writeback. Only one writer at a time is allowed for any
|
/linux-4.1.27/Documentation/RCU/ |
D | rcu.txt | 76 Of these, one was allowed to lapse by the assignee, and the
|
/linux-4.1.27/Documentation/sysctl/ |
D | vm.txt | 113 allowed to examine the unevictable lru (mlocked pages) for pages to compact. 152 Note: the minimum value allowed for dirty_bytes is two pages (in bytes); any 265 hugetlb_shm_group contains group id that is allowed to create SysV 480 of memory userspace processes should not be allowed to write to them. By 749 If this is reduced to zero, then the user will be allowed to allocate
|
D | kernel.txt | 396 A toggle value indicating if modules are allowed to be loaded 591 Hints to the kernel how much CPU time it should be allowed to 600 allowed to execute. 663 Value from 0 - 10000 is allowed. 775 segments are allowed to exist without association with any process, and
|
D | fs.txt | 265 maximum number of message queues allowed on the system. 295 allowed for each user.
|
/linux-4.1.27/Documentation/x86/ |
D | pat.txt | 9 such attribute settings allowed. Added flexibility comes with guidelines for
|
/linux-4.1.27/Documentation/sound/alsa/ |
D | Channel-Mapping-API.txt | 152 This operation is allowed only at PCM PREPARED state. When called in
|
/linux-4.1.27/Documentation/input/ |
D | yealink.txt | 139 - If less characters are written than allowed, the remaining digits are
|
/linux-4.1.27/Documentation/locking/ |
D | lockdep-design.txt | 69 following states are exclusive, and only one of them is allowed to be 94 Furthermore, the following usage based lock dependencies are not allowed
|
D | ww-mutex-design.txt | 108 Method 1, using a list in execbuf->buffers that's not allowed to be reordered. 254 allowed to use object */
|
/linux-4.1.27/Documentation/PCI/ |
D | pci-error-recovery.txt | 40 In the first stage, each driver is allowed to indicate what type 187 This is the "early recovery" call. IOs are allowed again, but DMA is 213 allowed to proceed, as another driver on the
|
/linux-4.1.27/Documentation/video4linux/ |
D | fimc.txt | 79 capture video node operation on same FIMC instance is not allowed. The driver
|
D | README.ivtv | 58 A maximum of 12 ivtv boards are allowed at the moment.
|
/linux-4.1.27/Documentation/aoe/ |
D | aoe.txt | 111 It's helpful to trigger discovery after setting the list of allowed
|
/linux-4.1.27/Documentation/console/ |
D | console.txt | 6 This type will be called 'system driver', and only one system driver is allowed
|
/linux-4.1.27/drivers/ata/ |
D | libata-eh.c | 688 scmd->retries = scmd->allowed; in ata_scsi_cmd_error_handler() 1315 scmd->retries = scmd->allowed; in ata_eh_qc_complete() 1334 scmd->allowed++; in ata_eh_qc_retry() 3381 qc->scsicmd->allowed = max(qc->scsicmd->allowed, 1); in ata_eh_maybe_retry_flush()
|
/linux-4.1.27/crypto/ |
D | Kconfig | 1168 Keys are allowed to be from 0 to 256 bits in length, in steps 1188 Keys are allowed to be from 0 to 256 bits in length, in steps 1210 Keys are allowed to be from 0 to 256 bits in length, in steps 1232 Keys are allowed to be from 0 to 256 bits in length, in steps 1255 Keys are allowed to be from 0 to 256 bits in length, in steps
|
/linux-4.1.27/Documentation/gpio/ |
D | consumer.txt | 127 It is also not allowed to individually release descriptors (using gpiod_put()) 297 from gpiod_to_irq(). gpiod_to_irq() is not allowed to sleep.
|
/linux-4.1.27/arch/m68k/ifpsp060/ |
D | os.S | 65 | The result is that Unix processes are allowed to sleep as a consequence
|
/linux-4.1.27/Documentation/hid/ |
D | hid-transport.txt | 139 allowed on the intr channel and are the only means of data there. 279 allowed at a time.
|
/linux-4.1.27/arch/microblaze/ |
D | Kconfig | 124 and the task is only allowed to execute a few safe syscalls
|
/linux-4.1.27/Documentation/watchdog/ |
D | convert_drivers_to_kernel_api.txt | 32 - ioctl: While the driver is allowed to have extensions to the IOCTL interface,
|
/linux-4.1.27/net/wireless/ |
D | Kconfig | 126 scenarios, this relaxation is not allowed in cases that the BSS client
|
/linux-4.1.27/tools/power/cpupower/po/ |
D | de.po | 119 "only one of: -t, -l, -m are allowed\n" 409 "allowed *\n" 884 msgid "maximum allowed latency: %lu usec\n"
|
/linux-4.1.27/drivers/s390/scsi/ |
D | zfcp_dbf.c | 419 rec->scsi_allowed = sc->allowed; in zfcp_dbf_scsi()
|
/linux-4.1.27/arch/parisc/ |
D | Kconfig | 336 and the task is only allowed to execute a few safe syscalls
|
/linux-4.1.27/Documentation/fb/ |
D | sstfb.txt | 90 allowed values: 0, 1, 2, 4.
|
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/ |
D | pinctrl-single.txt | 12 - pinctrl-single,function-mask : mask of allowed pinmux function bits
|
/linux-4.1.27/arch/m68k/fpsp040/ |
D | skeleton.S | 399 | process is allowed to sleep as a consequence of a page fault during
|
/linux-4.1.27/fs/jffs2/ |
D | README.Locking | 112 will not be removed. So, it is allowed to access it without locking
|
/linux-4.1.27/Documentation/devicetree/bindings/thermal/ |
D | thermal.txt | 126 (i) - minimum state allowed for minimum cooling state used in the reference. 127 (ii) - maximum state allowed for maximum cooling state used in the reference.
|