/linux-4.1.27/scripts/ |
D | config | 25 --enable-after|-E beforeopt option 26 Enable option directly after other option 27 --disable-after|-D beforeopt option 28 Disable option directly after other option 29 --module-after|-M beforeopt option 30 Turn option into module directly after other option
|
/linux-4.1.27/tools/testing/selftests/vm/ |
D | thuge-gen.c | 142 unsigned long before, after; in test_mmap() local 151 after = read_free(size); in test_mmap() 153 before, after, before - after, size); in test_mmap() 154 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_mmap() 163 unsigned long before, after; in test_shmget() local 182 after = read_free(size); in test_shmget() 185 before, after, before - after, size); in test_shmget() 186 assert(size == getpagesize() || (before - after) == NUM_PAGES); in test_shmget()
|
D | hugetlbfstest.c | 36 u64 before, after; in do_mmap() local 43 after = read_rss(); in do_mmap() 44 assert(llabs(after - before - length) < 0x40000 || in do_mmap() 50 after = read_rss(); in do_mmap() 51 assert(llabs(after - before) < 0x40000 || in do_mmap()
|
/linux-4.1.27/sound/usb/ |
D | helper.c | 44 void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype) in snd_usb_find_desc() argument 56 if (p[1] == dtype && (!after || (void *)p > after)) { in snd_usb_find_desc() 67 void *snd_usb_find_csint_desc(void *buffer, int buflen, void *after, u8 dsubtype) in snd_usb_find_csint_desc() argument 69 unsigned char *p = after; in snd_usb_find_csint_desc()
|
D | helper.h | 6 void *snd_usb_find_desc(void *descstart, int desclen, void *after, u8 dtype); 7 void *snd_usb_find_csint_desc(void *descstart, int desclen, void *after, u8 dsubtype);
|
/linux-4.1.27/tools/testing/selftests/powerpc/pmu/ebb/ |
D | pmae_handling_test.c | 29 static uint64_t before, after; variable 49 after = mfspr(SPRN_MMCR0); in syscall_ebb_callee() 50 if (before != after) in syscall_ebb_callee() 88 printf("Saw MMCR0 before 0x%lx after 0x%lx\n", before, after); in test_body()
|
/linux-4.1.27/arch/powerpc/lib/ |
D | rheap.c | 155 rh_block_t *after; in attach_free_block() local 169 after = NULL; in attach_free_block() 185 after = blk; in attach_free_block() 188 if (before != NULL && after != NULL) in attach_free_block() 196 if (after && e != after->start) in attach_free_block() 197 after = NULL; in attach_free_block() 200 if (before == NULL && after == NULL) { in attach_free_block() 214 if (before != NULL && after == NULL) { in attach_free_block() 220 if (before == NULL && after != NULL) { in attach_free_block() 221 after->start -= size; in attach_free_block() [all …]
|
/linux-4.1.27/Documentation/ABI/stable/ |
D | sysfs-transport-srp | 12 Description: Number of seconds the SCSI layer will wait after a transport 21 Description: Number of seconds the SCSI layer will wait after a transport 37 Description: Number of seconds the SCSI layer will wait after a reconnect 55 after the fast_io_fail_tmo timer has fired and before the 56 "dev_loss_tmo" timer has fired; "lost" after the
|
D | sysfs-firmware-opal-elog | 27 entries than firmware can, so after you acknowledge 57 Shortly after acknowledging it, the log
|
/linux-4.1.27/mm/ |
D | Kconfig.debug | 18 Unmap pages from the kernel linear mapping after free_pages(). 23 fill the pages with poison patterns after free_pages() and verify 26 that would result in incorrect warnings of memory corruption after
|
/linux-4.1.27/scripts/kconfig/ |
D | qconf.h | 147 ConfigItem(Q3ListView *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument 148 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() 152 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() argument 153 : Parent(parent, after), menu(m), visible(v), goParent(false) in ConfigItem() 157 ConfigItem(Q3ListView *parent, ConfigItem *after, bool v) in ConfigItem() argument 158 : Parent(parent, after), menu(0), visible(v), goParent(true) in ConfigItem()
|
/linux-4.1.27/net/ipv4/ |
D | tcp_input.c | 730 if (after(tp->snd_una, tp->rtt_seq)) { in tcp_rtt_estimator() 875 after(TCP_SKB_CB(skb)->end_seq, tp->retransmit_high)) in tcp_verify_retransmit_hint() 998 if (after(end_seq, tp->snd_nxt) || !before(start_seq, end_seq)) in tcp_is_sackblock_valid() 1008 if (after(start_seq, tp->snd_una)) in tcp_is_sackblock_valid() 1015 if (after(end_seq, tp->snd_una)) in tcp_is_sackblock_valid() 1022 if (!after(end_seq, tp->undo_marker)) in tcp_is_sackblock_valid() 1050 !after(received_upto, tp->lost_retrans_low) || in tcp_mark_lost_retrans() 1061 if (!after(TCP_SKB_CB(skb)->end_seq, tp->snd_una)) in tcp_mark_lost_retrans() 1078 if (after(received_upto, ack_seq)) { in tcp_mark_lost_retrans() 1112 if (!after(end_seq_0, end_seq_1) && in tcp_check_dsack() [all …]
|
D | tcp_minisocks.c | 45 if (after(end_seq, s_win) && before(seq, e_win)) in tcp_in_window() 138 !after(TCP_SKB_CB(skb)->end_seq, tcptw->tw_rcv_nxt) || in tcp_timewait_state_process() 235 (after(TCP_SKB_CB(skb)->seq, tcptw->tw_rcv_nxt) || in tcp_timewait_state_process() 710 if (tmp_opt.saw_tstamp && !after(TCP_SKB_CB(skb)->seq, tcp_rsk(req)->rcv_nxt)) in tcp_check_req()
|
D | tcp_cubic.c | 168 if (after(ca->epoch_start, now)) in bictcp_cwnd_event() 345 if (hystart && after(ack, ca->end_seq)) in bictcp_cong_avoid()
|
/linux-4.1.27/Documentation/devicetree/bindings/panel/ |
D | samsung,s6e8aa0.txt | 12 - power-on-delay: delay after turning regulators on [ms] 13 - reset-delay: delay after reset sequence [ms] 14 - init-delay: delay after initialization sequence [ms]
|
D | samsung,ld9040.txt | 14 - power-on-delay: delay after turning regulators on [ms] 15 - reset-delay: delay after reset sequence [ms]
|
/linux-4.1.27/scripts/coccinelle/misc/ |
D | ifcol.cocci | 1 /// Find confusingly indented code in or after an if. An if branch should 3 /// Sometimes, code after an if that is indented is actually intended to be 39 cocci.print_secs("after",p2)
|
D | cstptr.cocci | 40 msg = "ERROR: PTR_ERR applied after initialization to constant on line %s" % (p1[0].line)
|
/linux-4.1.27/net/netfilter/ |
D | nf_conntrack_seqadj.c | 85 if (after(ntohl(sack->start_seq) - seq->offset_before, in nf_ct_sack_block_adjust() 93 if (after(ntohl(sack->end_seq) - seq->offset_before, in nf_ct_sack_block_adjust() 182 if (after(ntohl(tcph->seq), this_way->correction_pos)) in nf_ct_seq_adjust() 187 if (after(ntohl(tcph->ack_seq) - other_way->offset_before, in nf_ct_seq_adjust() 224 return after(seq, this_way->correction_pos) ? in nf_ct_seq_offset()
|
D | nf_conntrack_proto_tcp.c | 489 if (after(tmp, *sack)) in tcp_sack() 594 && after(end, sender->td_end)) { in tcp_in_window() 641 after(end, sender->td_end - receiver->td_maxwin - 1); in tcp_in_window() 647 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1)); in tcp_in_window() 652 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1)) { in tcp_in_window() 665 if (after(end, sender->td_end)) { in tcp_in_window() 673 } else if (after(ack, sender->td_maxack)) in tcp_in_window() 680 if (receiver->td_maxwin != 0 && after(end, sender->td_maxend)) in tcp_in_window() 682 if (after(sack + win, receiver->td_maxend - 1)) { in tcp_in_window() 721 after(sack, receiver->td_end - MAXACKWINDOW(sender) - 1) ? "BUG" in tcp_in_window()
|
/linux-4.1.27/Documentation/m68k/ |
D | README.buddha | 140 value 0 (Default after reset) 142 497ns Select (7 clock cycles) , IOR/IOW after 172ns (2 clock cycles) 148 639ns Select (9 clock cycles), IOR/IOW after 243ns (3 clock cycles) 152 781ns Select (11 clock cycles), IOR/IOW after 314ns (4 clock cycles) 156 355ns Select (5 clock cycles), IOR/IOW after 101ns (1 clock cycle) 160 355ns Select (5 clock cycles), IOR/IOW after 172ns (2 clock cycles) 164 355ns Select (5 clock cycles), IOR/IOW after 243ns (3 clock cycles) 168 1065ns Select (15 clock cycles), IOR/IOW after 314ns (4 clock cycles) 172 355ns Select, (5 clock cycles), IOR/IOW after 101ns (1 clock cycle) 178 781ns select, IOR/IOW after 4 clock cycles (=314ns) aktive.
|
/linux-4.1.27/Documentation/power/ |
D | suspend-and-interrupts.txt | 11 suspend after the "late" phase of suspending devices (that is, after all of the 15 The rationale for doing so is that after the "late" phase of device suspend 20 not prepared for interrupts triggering after their devices had been suspended. 50 for it will be executed as usual after suspend_device_irqs(), even if the 88 already suspended. However, after suspend_device_irqs() interrupt handlers are 99 interrupts right after the "noirq" phase of suspending devices. 120 interrupts (interrupt handlers are invoked after suspend_device_irqs()) are 122 handlers are not invoked after suspend_device_irqs()).
|
D | s2ram.txt | 54 until after the hash is checked. You can check the hash against the current 55 devices again after more modules are loaded using sysfs: 76 Consequence is that after a resume (even if it is successful) your system 83 quickly after the resume failure. The trace option does not use the seconds
|
D | pci.txt | 403 a notification for the PCI subsystem after the source device has been 411 example, it is called right after the device has just been resumed), in which 425 after tasks have been frozen. 462 The pci_pm_suspend_noirq() routine is executed after suspend_device_irqs() has 548 The freezing of devices is carried out after enough memory has been freed (at 703 (when a hibernation image is about to be created), during power-off after 720 The suspend() callback is only executed during system suspend, after prepare() 746 The suspend_noirq() callback is only executed during system suspend, after 748 after device interrupts have been disabled by the PM core. 758 during hibernation, after prepare() callbacks have been executed for all devices [all …]
|
D | userland-swsusp.txt | 41 the value of which will indicate whether the call returned after 42 creating the snapshot (1) or after restoring the system memory state 43 from it (0) (after resume the system finds itself finishing the 44 SNAPSHOT_CREATE_IMAGE ioctl() again); after the snapshot 92 to use the SNAPSHOT_UNFREEZE call after the system wakes up. This call 153 system MUST be powered off or rebooted after the snapshot
|
D | freezing-of-tasks.txt | 56 If a freezable kernel thread fails to call try_to_freeze() after the freezer has 99 1. The principal reason is to prevent filesystems from being damaged after 105 on-disk data and metadata after the system memory state has been restored from 108 cause the on-disk filesystems' data and metadata to be modified after the 116 after the memory for the image has been freed, we don't want tasks to allocate 149 thawed after the driver's .resume() callback has run, so it won't be accessing 155 and should continue running without any problems after the restore (or resume 223 only after the entire suspend/hibernation sequence is complete.
|
D | notifiers.txt | 5 before hibernation/suspend or after restore/resume, but they require the system 8 For example, device drivers may want to upload firmware to their devices after
|
D | swsusp.txt | 8 * If you do resume from initrd after your filesystems are mounted... 22 * they won't be accessible after resume and you may lose data, as though 228 after resume. swapoff -a; swapon -a may also be useful. 278 protect from leaking sensitive data after resume from suspend. 285 that after resume your sensitive data are accessible to all 287 for suspend. If you don't need swap after resume these data can remain 305 suspend image to prevent sensitive data from being stolen after 406 before suspending; then remount them after resuming. 423 after resume).
|
D | video.txt | 32 systems. Unfortunately, vbetool only runs after userland is resumed, 39 There are a few types of systems where video works after S3 resume: 142 IBM TP T41p s3_bios (2), switch to X after resume 148 IBM TP X32 none (1), but backlight is on and video is trashed after long suspend. s3_bios,s3_mode…
|
D | basic-pm-debugging.txt | 81 /sys/power/pm_test , then after suspending devices the kernel will additionally 103 dmesg obtained after the failing test). Failure at this level usually means 109 after the test, so please take that into consideration). To find this driver, 121 It is also possible that the "devices" test will still fail after you have 186 Namely, after writing "freezer", "devices", "platform", "processors", or "core"
|
D | suspend-and-cpuhotplug.txt | 104 after the entire cycle is complete (i.e., suspend + resume). 189 image for each CPU (after appropriate CPU type/model discovery using 212 discovery is performed and the right microcode is applied to the CPU after 225 This is the usual scenario encountered during a resume after a suspend.
|
/linux-4.1.27/Documentation/devicetree/bindings/mtd/ |
D | fsl-upm-nand.txt | 10 - fsl,upm-wait-flags : add chip-dependent short delays after running the 11 UPM pattern (0x1), after writing a data byte (0x2) or after
|
D | gpio-control-nand.txt | 24 the GPIO's and the NAND flash data bus. If present, then after changing 25 GPIO state and before and after command byte writes, this register will be
|
D | fsmc-nand.txt | 20 kept in Hi-Z (tristate) after the start of a write access. 24 when writing) after the command deassertation. Zero means
|
/linux-4.1.27/arch/ia64/ |
D | Kconfig.debug | 28 Faults, that is, for Read-after-Write (RAW), Write-after-Write (WAW), 29 or Write-after-Read (WAR) violations. This option is ignored if you
|
/linux-4.1.27/Documentation/ |
D | dcdbas.txt | 6 power off after OS shutdown) on certain Dell systems. 48 to perform a power cycle or power off of the system after the OS has finished 50 a driver perform a SMI after the OS has finished shutting down. 54 action after the system has finished shutting down:
|
D | lzo.txt | 115 state = S (copy S literals after this block) 125 state = S (copy S literals after this block) 134 state = S (copy S literals after this block) 142 state = S (copy S literals after this block) 146 state = S (copy S literals after this block) 153 state = S (copy S literals after this block)
|
D | cachetlb.txt | 9 after the interface is invoked. 45 'mm' will be visible to the cpu. That is, after running, 59 'start' to 'end-1' will be visible to the cpu. That is, after 85 is, after running, there will be no entries in the TLB for 149 the caches. That is, after running, there will be no cache 158 the caches. That is, after running, there will be no cache 225 The first of these two routines is invoked after map_vm_area() 359 with kmap, it calls this function after all modifications are 388 I/O and invalidating it after the I/O returns.
|
D | lockup-watchdogs.txt | 29 to cause the system to reboot automatically after a specified amount 52 will dump useful debug information to the system log, after which it
|
D | kref.txt | 20 You must initialize the kref after you allocate it. To do this, call 113 /* BAD BAD BAD - get is after the handoff */ 188 /* All work is done after the return from kref_put(). */ 297 rcu grace period after release_entry_rcu was called. That can be accomplished
|
D | debugging-modules.txt | 1 Debugging Modules after 2.6.3
|
D | robust-futexes.txt | 42 then the kernel has no information to clean up after the held lock! 43 Userspace has no chance to clean up after the lock either - userspace is 105 list is done after the futex is acquired by glibc, there is a few 109 kernel to clean up if the thread dies after acquiring the lock, but just 112 it after the list-add (or list-remove) has finished.
|
D | assoc_array.txt | 97 This is also used to keep track of dead blocks and dead objects after the 99 after an RCU grace period has passed - thus allowing access functions to 178 period after assoc_array_apply_edit() was called, so synchronize_rcu() may 528 matching leaf pointer with the pointer to the new leaf after a barrier. 530 until after the RCU grace period. 534 after the RCU grace period. 570 the parent slot number is read after the back pointer. 572 Obsolete blocks and leaves are freed up after an RCU grace period has passed,
|
D | memory-barriers.txt | 346 operations specified after the barrier with respect to the other 354 occur in the sequence _before_ all the stores after the write barrier. 379 touched by the load will be perceptible to any loads issued after the data 400 all the LOAD operations specified after the barrier with respect to the 417 the LOAD and STORE operations specified after the barrier with respect to 431 operations after the ACQUIRE operation will appear to happen after the 437 happen after it completes. 451 Memory operations that occur after a RELEASE operation may appear to 457 pair is -not- guaranteed to act as a full memory barrier. However, after 672 assembly code even after all compiler optimizations have been applied. [all …]
|
D | ramoops.txt | 13 survive after a restart. 39 on restart (i.e. new dumps after the restart will overwrite old ones).
|
D | iostats.txt | 42 In 2.4, the statistics fields are those after the device name. In 137 reads/writes before merges for partitions and after for disks. Since a 145 the partition which contains the first sector of the request after the
|
D | io_ordering.txt | 8 subsequent writes to I/O space arrived only after all prior writes (much like a
|
/linux-4.1.27/drivers/staging/gs_fpgaboot/ |
D | README | 50 b. For the FPGA that runs without config after the download, which 55 after the download. 57 c. For the FPGA that requires config after the download, which talk to
|
/linux-4.1.27/Documentation/vm/ |
D | soft-dirty.txt | 21 when the soft-dirty bit is cleared. So, after this, when the task tries to 25 Note, that although all the task's address space is marked as r/o after the 26 soft-dirty bits clear, the #PF-s that occur after that are processed fast.
|
D | slub.txt | 217 corruption by a write after free. 221 writes after the object. All bytes should always have the same 222 value. If there is any deviation then it is due to a write after 277 If the corruption occurs by writing after the end of the object then it
|
/linux-4.1.27/Documentation/devicetree/bindings/c6x/ |
D | clocks.txt | 26 - ti,c64x+pll-reset-delay: CPU cycles to delay after PLL reset 28 - ti,c64x+pll-lock-delay: CPU cycles to delay after PLL frequency change
|
D | emifa.txt | 21 Number of memory transfers after which the EMIF will elevate the priority
|
/linux-4.1.27/Documentation/devicetree/bindings/gpio/ |
D | gpio-restart.txt | 40 - active-delay: Delay (default 100) to wait after driving gpio active [ms] 41 - inactive-delay: Delay (default 100) to wait after driving gpio inactive [ms] 42 - wait-delay: Delay (default 3000) to wait after completing restart
|
D | gpio-poweroff.txt | 16 the CPU still running after a 3000ms delay, a WARN_ON(1) is emitted.
|
/linux-4.1.27/Documentation/devicetree/bindings/usb/ |
D | usb-ehci.txt | 7 (debug-port or other) can be also specified here, but only after 15 - needs-reset-on-resume : boolean, set this to force EHCI reset after resume
|
D | brcm,bcm3384-usb.txt | 9 - Restoring state after systemwide power save modes
|
/linux-4.1.27/ |
D | .gitignore | 7 # command after changing this file, to see if there are 8 # any tracked files which get ignored after the change.
|
/linux-4.1.27/Documentation/pcmcia/ |
D | devicetable.txt | 27 The hex value after "pa" is the hash of product ID string 1, after "pb" for
|
D | driver.txt | 30 after loading the driver.
|
/linux-4.1.27/Documentation/fmc/ |
D | fmc-write-eeprom.txt | 60 after two seconds. Please note, however, that if fmc-write-eeprom is 62 will be reprogrammed and thus will be unloaded after two seconds. The 63 following example removes the module after it reflashed fakedev the 92 only with its golden gateware: after a mezzanine driver reprogrammed
|
/linux-4.1.27/Documentation/hwmon/ |
D | amc6821 | 66 4 degree C. Read it out after writing to get 72 pwm1_auto_point2_pwm. Read it out after 88 and pwm1_auto_point2_pwm. Read it out after
|
D | submitting-patches | 75 and messages printed after a successful detection are acceptable, but it 85 only do it after you have already gathered enough data to be certain that the
|
/linux-4.1.27/arch/powerpc/boot/dts/ |
D | ps3.dts | 33 * We'll get the size of the bootmem block from lv1 after startup, 46 * we'll put a null entries here. These will be initialized after
|
/linux-4.1.27/lib/ |
D | Kconfig.kasan | 12 designed to find out-of-bounds accesses and use-after-free bugs. 55 out of bounds accesses, use after free. It is useful for testing
|
/linux-4.1.27/Documentation/usb/ |
D | functionfs.txt | 4 unique behaviour. It may be added to an USB configuration only after 61 The gadget is registered only after all the declared function 65 Conversely, the gadget is unregistered after the first USB function
|
D | callbacks.txt | 37 * @post_reset: Called after the device has been reset 81 You are not allowed any IO to a device after returning from this 87 time after the physical disconnection. Thus your driver must be prepared
|
D | URB.txt | 22 usb_submit_urb(urb) call returns immediately after it has successfully 27 - Each URB has a completion handler, which is called after the action 54 // (OUT) status after each completion 165 until after the URB has been returned and the completion handler
|
/linux-4.1.27/Documentation/ia64/ |
D | serial.txt | 7 starting after the ACPI devices. 23 after /dev/ttyS0 as they were discovered. 74 all the serial devices, which can happen a minute or more after the 85 No kernel output after elilo prints "Uncompressing Linux... done": 151 box after changing console configuration.
|
/linux-4.1.27/arch/cris/arch-v32/kernel/ |
D | cache.c | 15 (unsigned)(descr->after - descr->buf)); in flush_dma_descr()
|
/linux-4.1.27/fs/jffs2/ |
D | TODO | 12 - make the scan code populate real inodes so read_inode just after 15 decide which inodes should be in-core immediately after mount.
|
D | README.Locking | 109 if we need to deal with wrapping after 4 milliard inode numbers are used. 148 Lock wbuf_sem last, after the alloc_sem or and f->sem. 165 after release read-semaphore, if it's necessary to load name/value pair 169 Lock xattr_sem last, after the alloc_sem.
|
/linux-4.1.27/Documentation/acpi/ |
D | debug.txt | 31 command line argument, and you can change it after boot by writing values 79 command line argument, and you can change it after boot by writing values 142 Enable all ACPI_DB_INFO messages after boot:
|
D | scan_handlers.txt | 23 appropriate data, but some of them require additional handling after they have 45 executed, respectively, after registration of new device nodes and before
|
/linux-4.1.27/Documentation/serial/ |
D | serial-rs485.txt | 108 /* Set logical level for RTS pin equal to 1 after sending: */ 110 /* or, set logical level for RTS pin equal to 0 after sending: */ 116 /* Set rts delay after send, if needed: */
|
/linux-4.1.27/drivers/staging/clocking-wizard/ |
D | TODO | 7 - overflow after multiplication?
|
/linux-4.1.27/Documentation/ABI/testing/ |
D | sysfs-bus-coresight-devices-tmc | 6 formatter after a defined number of words have been stored
|
D | dev-kmsg | 54 seek after the last entry in the buffer 56 seek after the last record available at the time 68 The human readable text string starts directly after the ';'
|
D | debugfs-olpc | 14 To read the response (if any), read from the generic node after executing
|
D | sysfs-power | 117 this case cat /sys/power/pm_trace_dev_match (see below) after 121 clock to be set to a random invalid time after a resume. 132 the device hash in the RTC at boot, with a newline after each 137 devices created after boot by loadable kernel modules. 171 to a sleep state if any wakeup events are reported after the 223 deactivated after it has expired. The timeout, if present, is
|
D | sysfs-class-led-flash | 27 is stopped after this period of time has passed from the start 55 Flash faults are re-read after strobing the flash. Possible
|
D | debugfs-ec | 20 not get switched on again after you did a wrong write.
|
D | sysfs-bus-coresight-devices-etb10 | 21 formatter after a defined number of words have been stored
|
D | sysfs-bus-iio | 81 unique to allow association with event codes. Units after 92 is required is a consistent labeling. Units after application 104 unique to allow association with event codes. Units after 111 Raw capacitance measurement from channel Y. Units after 122 is required is a consistent labeling. Units after application 139 less measurements. Units after application of scale and offset 157 after application of scale and offset are m/s^2. 167 Units after application of scale and offset are radians per 212 Raw pressure measurement from channel Y. Units after 226 Raw humidity measurement of air. Units after application of [all …]
|
D | sysfs-driver-hid-picolcd | 14 disconnected and reconnects after above delay (see attribute
|
D | pstore | 34 soon after boot to free up space ready for the next
|
/linux-4.1.27/Documentation/blockdev/drbd/ |
D | conn-states-8.dot | 4 WFConnection -> WFReportParams [ label = "in connect() after accept" ]
|
/linux-4.1.27/Documentation/devicetree/bindings/memory-controllers/ |
D | mvebu-devbus.txt | 38 drive the AD bus after the completion of a device read. 39 This prevents contentions on the Device Bus after a read 76 DEV_OEn is always de-asserted the next cycle after 100 data after DEV_WEn rise.
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ab8500/ |
D | charger.txt | 18 Boolean value depicting the presence of 'automatic poweron after powerloss'
|
/linux-4.1.27/Documentation/block/ |
D | cfq-iosched.txt | 72 queue level. This was introduced after a bottleneck was observed 226 on same queue after completion of a request. In this process CFQ will not 231 sequential reads (next read will come on only after completion of previous 270 roughly after 1 second. If after completion of REQ_NOIDLE request we 271 do not idle, and after a couple of milli seconds a another REQ_NOIDLE 272 request comes in, again it will be scheduled after 1second. Repeat it 278 data comes in only after fsync has finished its IO (atleast for ext4
|
D | writeback_cache_control.txt | 38 signaled after the data has been committed to non-volatile storage. 86 layer turns it into an empty REQ_FLUSH request after the actual write.
|
/linux-4.1.27/Documentation/leds/ |
D | ledtrig-oneshot.txt | 27 LED_FULL brightness after it has been armed. 31 LED_OFF brightness after it has been armed.
|
/linux-4.1.27/Documentation/dvb/ |
D | opera-firmware.txt | 13 and after that you have 2 files:
|
/linux-4.1.27/drivers/infiniband/hw/mthca/ |
D | Kconfig | 16 debug_level module parameter (which can also be set after
|
/linux-4.1.27/Documentation/devicetree/bindings/power_supply/ |
D | sbs_sbs-battery.txt | 11 after an external change notification.
|
/linux-4.1.27/Documentation/devicetree/bindings/timer/ |
D | lsi,zevio-timer.txt | 13 (always after timer base address)
|
/linux-4.1.27/arch/m68k/hp300/ |
D | README.hp300 | 12 The LANCE driver works after a fashion but only if you reset the chip before
|
/linux-4.1.27/Documentation/sound/alsa/soc/ |
D | machine.txt | 23 * after the codec and DAIs do any PM work. */ 46 of any machine audio tasks that have to be done before or after the codec, DAIs
|
D | DAI.txt | 33 o I2S - MSB is transmitted on the falling edge of the first BCLK after LRC 54 o Mode A - MSB is transmitted on falling edge of first BCLK after FRAME/SYNC.
|
D | dapm.txt | 75 o Post - Special POST widget (exec after all others) 236 Finally, snd_soc_dapm_new_widgets(codec) must be called after all widgets and 301 #define SND_SOC_DAPM_POST_PMU 0x2 /* after widget power up */ 303 #define SND_SOC_DAPM_POST_PMD 0x8 /* after widget power down */ 305 #define SND_SOC_DAPM_POST_REG 0x20 /* after audio path setup */
|
D | overview.txt | 15 Headphone/Mic insertion, Headphone/Mic detection after an insertion 17 machine specific code to re-route audio, enable amps, etc., after such an
|
/linux-4.1.27/arch/arm/boot/compressed/ |
D | ll_char_wr.S | 70 sub r1, r1, #1 @ avoid using r7 directly after 75 tst r1, #7 @ avoid using r7 directly after
|
/linux-4.1.27/drivers/hwmon/ |
D | ina2xx.c | 263 unsigned long after; in ina2xx_update_device() local 268 after = data->last_updated + data->update_interval; in ina2xx_update_device() 269 if (time_after(jiffies, after) || !data->valid) { in ina2xx_update_device()
|
/linux-4.1.27/arch/m32r/ |
D | Kconfig.debug | 9 Unmap pages from the kernel linear mapping after free_pages().
|
/linux-4.1.27/tools/perf/util/ |
D | map.c | 674 struct map *after = map__clone(pos); in map_groups__fixup_overlappings() local 676 if (after == NULL) { in map_groups__fixup_overlappings() 681 after->start = map->end; in map_groups__fixup_overlappings() 682 map_groups__insert(mg, after); in map_groups__fixup_overlappings() 684 map__fprintf(after, fp); in map_groups__fixup_overlappings()
|
/linux-4.1.27/drivers/zorro/ |
D | Kconfig | 11 15KB, but it gets freed after the system boots up, so it doesn't
|
/linux-4.1.27/Documentation/misc-devices/ |
D | c2port.txt | 63 after that you should read the device ID and revision ID of the 88 after writing you have to reset the device to execute the new code:
|
/linux-4.1.27/drivers/watchdog/ |
D | Kconfig | 14 on-line as fast as possible after a lock-up. There's both a watchdog 552 it does, it reboots your computer after a certain amount of time. 608 the machine after its expiration. The expiration time can be 621 it doesn't freeze, and if it does, it reboots your computer after 634 freeze, and if it does, it reboots your computer after a certain 677 it does, it reboots your computer after a certain amount of time. 764 that will reboot the machine after its second expiration. The 808 freeze, and if it does, it reboots your computer after a certain 872 freeze, and if it does, it reboots your computer after a certain 886 watchdog timer that will reboot the machine after its second [all …]
|
/linux-4.1.27/drivers/of/ |
D | unittest.c | 1203 int before, int after, enum overlay_type ovtype) in of_unittest_apply_overlay_check() argument 1223 if (of_unittest_device_exists(unittest_nr, ovtype) != after) { in of_unittest_apply_overlay_check() 1227 !after ? "enabled" : "disabled"); in of_unittest_apply_overlay_check() 1236 int unittest_nr, int before, int after, in of_unittest_apply_revert_overlay_check() argument 1258 if (of_unittest_device_exists(unittest_nr, ovtype) != after) { in of_unittest_apply_revert_overlay_check() 1262 !after ? "enabled" : "disabled"); in of_unittest_apply_revert_overlay_check() 1370 int before = 0, after = 1; in of_unittest_overlay_6() local 1408 != after) { in of_unittest_overlay_6() 1413 !after ? "enabled" : "disabled"); in of_unittest_overlay_6()
|
/linux-4.1.27/arch/m68k/kernel/ |
D | vmlinux-sun3.lds | 34 /* will be freed after init */
|
D | vmlinux-std.lds | 38 /* will be freed after init */
|
/linux-4.1.27/drivers/block/paride/ |
D | Transition-notes | 94 after resetting ps_tq_active to 0. 97 the area are either after resetting ->claimed_cont to NULL while holding 98 pi_spinlock, or after not tocuhing ->claimed_cont since acquiring pi_spinlock 100 in the area, under pi_spinlock and we do not release it until after leaving
|
/linux-4.1.27/drivers/scsi/ |
D | 53c700.scr | 300 ; We return here after a reselection 351 ; we return here after a reselection 364 ; we return here after a reselection 391 ; we return here after a reselection
|
/linux-4.1.27/net/ax25/ |
D | TODO | 6 A device might be deleted after lookup in the SIOCADDRT ioctl but before it's
|
/linux-4.1.27/Documentation/devicetree/bindings/input/ |
D | ads7846.txt | 41 ti,penirq-recheck-delay-usecs If set to non-zero, after samples are 62 required after the first two (u16).
|
D | gpio-matrix-keypad.txt | 25 before we can scan keypad after activating column gpio
|
/linux-4.1.27/Documentation/devicetree/bindings/i2c/ |
D | i2c-arb-gpio-challenge.txt | 52 - wait-retry-us: we'll attempt another claim after this many microseconds. 54 - wait-free-us: we'll give up after this many microseconds. Default is 50000 us.
|
/linux-4.1.27/Documentation/devicetree/bindings/mmc/ |
D | mmc-pwrseq-simple.txt | 13 They will be de-asserted right after the power has been provided to the
|
D | mmc-pwrseq-emmc.txt | 5 performed just after MMC core enabled power to the given mmc host (to
|
/linux-4.1.27/arch/mn10300/kernel/ |
D | smp-low.S | 96 # Jump here after RTI to suppress the icache lookahead
|
/linux-4.1.27/Documentation/devicetree/bindings/spi/ |
D | spi-cadence.txt | 17 chip selects after the decoder.
|
D | spi-rockchip.txt | 27 - rx-sample-delay-ns: nanoseconds to delay after the SCLK edge before sampling
|
D | fsl-spi.txt | 47 - fsl,csaft: chip select negation time in bits after frame ends
|
/linux-4.1.27/arch/arm/vfp/ |
D | entry.S | 21 @ r2 = PC value to resume execution after successful emulation
|
/linux-4.1.27/Documentation/devicetree/bindings/input/touchscreen/ |
D | tsc2005.txt | 14 - ti,esd-recovery-timeout-ms : integer, if the touchscreen does not respond after
|
D | chipone_icn8318.txt | 24 Swapping is done after inverting the axis
|
D | touchscreen.txt | 20 Swapping is done after inverting the axis
|
D | brcm,iproc-touchscreen.txt | 15 the tsc waits to allow the voltage to settle after
|
/linux-4.1.27/fs/ext4/ |
D | page-io.c | 191 struct list_head *cur, *before, *after; in dump_completed_IO() local 202 after = cur->next; in dump_completed_IO() 203 io1 = container_of(after, ext4_io_end_t, list); in dump_completed_IO()
|
/linux-4.1.27/net/netfilter/ipvs/ |
D | ip_vs_app.c | 303 if(after(seq, vseq->init_seq)) { in vs_fix_seq() 332 if(after(ack_seq, vseq->init_seq+vseq->delta)) { in vs_fix_ack_seq() 356 if (!(cp->flags & flag) || after(seq, vseq->init_seq)) { in vs_seq_update()
|
/linux-4.1.27/Documentation/cpuidle/ |
D | governor.txt | 17 * reflect() called after returning from the idle state, which can be used
|
/linux-4.1.27/Documentation/fb/ |
D | deferred_io.txt | 15 - schedule a workqueue task to be run after a delay 25 writes to occur at minimum cost. Then after some time when hopefully things
|
D | cirrusfb.txt | 58 modelled after that in atyfb and matroxfb.
|
/linux-4.1.27/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-impedance-analyzer-ad5933 | 29 after each frequency increment, and before the ADC is triggered
|
/linux-4.1.27/drivers/net/ethernet/microchip/ |
D | Kconfig | 35 Enable the verify after the buffer write useful for debugging purpose.
|
/linux-4.1.27/firmware/advansys/ |
D | mcode.bin.ihex | 147 /* Microcode buffer is kept after initialization for error recovery. */
|
/linux-4.1.27/Documentation/devicetree/bindings/watchdog/ |
D | samsung-wdt.txt | 4 after a preset amount of time during which the WDT reset event has not
|
/linux-4.1.27/tools/scripts/ |
D | Makefile.include | 23 EXTRA_WARNINGS += -Wdeclaration-after-statement
|
/linux-4.1.27/arch/arm/mach-omap2/ |
D | sleep24xx.S | 88 nop @ start auto refresh only after clk ok
|
/linux-4.1.27/drivers/video/fbdev/omap2/dss/ |
D | Kconfig | 125 bool "Sleep 20ms after VENC reset" 128 There is a 20ms sleep after VENC reset which seemed to fix the
|
/linux-4.1.27/Documentation/filesystems/ |
D | omfs.txt | 53 __be32 h_body_size; /* size of useful data after header */ 89 __be64 e_blocks; /* number of blocks after e_cluster */
|
/linux-4.1.27/arch/cris/boot/rescue/ |
D | head_v10.S | 70 ;; The partitiontable is looked for at the first sector after the boot 79 ;; of itself (after having setup the DRAM etc). 138 ;; code after this and altering the jumptarget in an upgrade.
|
/linux-4.1.27/Documentation/arm/ |
D | kernel_mode_neon.txt | 33 another core). Lazy restore is implemented by disabling the NEON/VFP unit after 43 Likewise, the NEON/VFP unit should be disabled again after use to make sure user 121 * Include <arm_neon.h> last, or at least after <linux/types.h>
|
/linux-4.1.27/Documentation/target/ |
D | tcmu-design.txt | 156 iovec entries immediately after that in iov[] cover the Data-In 176 This is shared-memory space after the command ring. The organization 223 the LIO device, so that after determining the device is supported 231 - TCMU will post commands, and then abort them after a timeout period 237 devices. Command ring is preserved. However, after the timeout period, 242 - The kernel will abort pending tasks after a timeout period.
|
/linux-4.1.27/Documentation/devicetree/bindings/serial/ |
D | rs485.txt | 13 it corresponds to the delay after sending data and actual release of the line.
|
/linux-4.1.27/Documentation/arm/VFP/ |
D | release-notes.txt | 37 after rounding, we do not signal an underflow exception.
|
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx4/ |
D | Kconfig | 45 debug_level module parameter (which can also be set after
|
/linux-4.1.27/Documentation/devicetree/bindings/mfd/ |
D | twl4030-audio.txt | 14 - ti,digimic_delay: Delay need after enabling the digimic to reduce artifacts
|
D | twl4030-power.txt | 5 binding only supports the complete shutdown of the system after poweroff.
|
/linux-4.1.27/fs/nilfs2/ |
D | Kconfig | 9 consistency like conventional LFS, it achieves quick recovery after
|
/linux-4.1.27/Documentation/devicetree/bindings/mailbox/ |
D | arm-mhu.txt | 9 STAT register and the remote clears it after having read the data.
|
/linux-4.1.27/arch/cris/include/arch-v32/arch/hwregs/ |
D | dma.h | 69 char *after; member
|
/linux-4.1.27/fs/ext3/ |
D | Kconfig | 10 to run e2fsck (file system checker) on your file systems after a 39 unwritten data to appear in files after an system crash or
|
/linux-4.1.27/Documentation/scsi/ |
D | qlogicfas.txt | 44 after a crash, since they may be busy trying to complete the last 66 realbig.doc realbig.doc". Then do it after the computer gets warm.
|
D | ChangeLog.megaraid_sas | 211 will re-issue those pending cmds again to FW after the OCR 230 will not need to do the device update after application add/del the device 233 failed state. Driver will kill adapter if can't bring back FW after the 250 keep the logic drive list internal after driver load. 252 3. driver fixed the device update issue after get the AEN 283 1. Add the fix of pending in FW after deleted the logic drives. 284 2. Add the fix of deallocating memory after get pdlist. 577 Interrupt is enabled after required initialization is over.
|
D | ChangeLog.lpfc | 29 if we timed out waiting for command to complete after abort was 145 sli layer now frees the response iocbs after processing it. 159 * Added code to prevent waking up worker thread after the exit of 190 hostdata readjust code so that they are no use after free's 191 (don't use after scsi_host_put) - make lpfc_alloc_sysfs_attr 251 lpfc_els_abort to reset txq and txcmplq iterator after a 253 * Fixed a use after free issue in lpfc_init.c. 355 freed (after nodev tmo). This bug was causing i/o received in 367 properly after ADISC handling completes. 399 * Janitorial cleanup after removal of sliinit and ringinit[] ring [all …]
|
D | ChangeLog.ncr53c8xx | 273 after abitration while the SCSI core is performing SCSI selection). 281 was read from the SFBR i/o register after the previous message had 327 verbose level after boot-up. Setting this level to zero, for 368 - Add a check of the MSG_OUT phase after Selection with ATN. 410 - Call scsi_done() for all completed commands after interrupt 424 - Since the SCRIPTS processor continues SCRIPTS execution after 487 This option enables checking of SCSI BUS data lines after SCSI
|
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/ |
D | Suspend.txt | 109 This option prints messages to the serial console before and after 116 Allows the entire memory to be checksummed before and after the
|
/linux-4.1.27/drivers/base/ |
D | Kconfig | 48 bool "Automount devtmpfs at /dev, after the kernel mounted the rootfs" 52 devtmpfs filesystem at /dev, directly after the kernel has 57 after the rootfs is mounted. 95 use these is to run "make firmware_install", which, after 160 (e.g. udev) for loading firmware files as a fallback after the
|
/linux-4.1.27/Documentation/sound/oss/ |
D | oss-parameters.txt | 9 module. Loadable modules, after being loaded into the running kernel, also
|
/linux-4.1.27/Documentation/devicetree/bindings/reset/ |
D | st,sti-picophyreset.txt | 10 registers and after an assert/deassert sequence the hardware's previous state
|
D | st,sti-softreset.txt | 11 registers and after an assert/deassert sequence the hardware's previous state
|
D | st,sti-powerdown.txt | 12 registers and after an assert/deassert sequence the hardware's previous state
|
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/ |
D | ccf.txt | 21 chips. It should be specified after either
|
/linux-4.1.27/Documentation/networking/ |
D | netconsole.txt | 16 netconsole initializes immediately after NIC cards and will bring up 55 Built-in netconsole starts immediately after the TCP stack is 100 "1" to the "enabled" attribute (usually after setting parameters accordingly)
|
D | netdev-FAQ.txt | 42 features get mainlined after this -- only fixes to the rc1 content 46 things are in a state of churn), and a week after the last vX.Y-rcN 62 Shortly after the two weeks have passed (and vX.Y-rc1 is released), the 153 to request a commit be added the day after it appears should be avoided.
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/ |
D | al,alpine.txt | 58 The CPU resume register are used to define required resume address after
|
/linux-4.1.27/Documentation/ABI/obsolete/ |
D | sysfs-bus-usb | 29 This file is deprecated and will be removed after 2010.
|
/linux-4.1.27/Documentation/video4linux/bttv/ |
D | README.quirks | 30 after the video request but before the PCI external arbiter has granted 44 (2) Do not reassert REQ to request another bus transaction until after
|
/linux-4.1.27/drivers/gpu/drm/msm/ |
D | NOTES | 22 pageflip after rendering completes (ie. have the kms/crtc code build 23 up gpu cmdstream to update scanout and write FLUSH register after).
|
/linux-4.1.27/Documentation/locking/ |
D | ww-mutex-design.txt | 60 after having dropped all already acquired locks. These functions have the 65 contending lock (after having dropped all other already acquired locks) will 325 - Attempting to lock more mutexes after ww_acquire_done. 326 - Attempting to lock the wrong mutex after -EDEADLK and 328 - Attempting to lock the right mutex after -EDEADLK,
|
/linux-4.1.27/kernel/power/ |
D | Kconfig | 37 after placing resume=/dev/swappartition on the kernel command line 137 (low power) states, for example after a specified period of inactivity 224 set to an invalid time after a resume. 233 reset after a RESUME operation, the /proc/apm device will provide
|
/linux-4.1.27/tools/power/cpupower/ |
D | Makefile | 121 WARNINGS += $(call cc-supports,-Wdeclaration-after-statement)
|
/linux-4.1.27/Documentation/devicetree/bindings/regulator/ |
D | tps65217.txt | 7 after their hardware counterparts: dcdc[1-3] and ldo[1-4]
|
/linux-4.1.27/Documentation/devicetree/bindings/video/ |
D | exynos_hdmi.txt | 25 after configuration, parent is set to sclk_hdmiphy else
|
/linux-4.1.27/arch/cris/arch-v32/lib/ |
D | checksum.S | 47 ;; to prepare for what is needed after mloop.
|
D | checksumcopy.S | 50 ;; r12 <= acr is needed after mloop and in the exception handlers.
|
/linux-4.1.27/drivers/misc/ |
D | kgdbts.c | 835 char after[BREAK_INSTR_SIZE]; in run_plant_and_detach_test() local 845 probe_kernel_read(after, (char *)kgdbts_break_test, in run_plant_and_detach_test() 847 if (memcmp(before, after, BREAK_INSTR_SIZE)) { in run_plant_and_detach_test()
|
/linux-4.1.27/Documentation/driver-model/ |
D | devres.txt | 229 and 400 bytes on 32bit machine after naive conversion (we can 316 pcim_enable_device() : after success, all PCI ops become managed 317 pcim_pin_device() : keep PCI device enabled after release
|
/linux-4.1.27/Documentation/input/ |
D | multi-touch-protocol.txt | 99 The sequence after moving one of the contacts looks exactly the same; the 103 Here is the sequence after lifting the first contact: 110 And here is the sequence after lifting the second contact: 137 Here is the sequence after moving contact 45 in the x direction: 143 Here is the sequence after lifting the contact in slot 0: 152 Finally, here is the sequence after lifting the second contact:
|
D | notifier.txt | 19 - KBD_POST_KEYSYM events are sent after the treatment of non-unicode keysyms.
|
/linux-4.1.27/arch/cris/arch-v32/drivers/ |
D | cryptocop.c | 344 cdesc->dma_descr->after = NULL; in alloc_cdesc() 426 cdesc->dma_descr->after = cdesc->dma_descr->buf + plen; in create_pad_descriptor() 459 key_desc->dma_descr->after = key_desc->dma_descr->buf + tc->tctx->init.keylen/8; in setup_key_dl_desc() 462 key_desc->dma_descr->after = key_desc->dma_descr->buf + tc->tctx->init.keylen/8; in setup_key_dl_desc() 510 iv_desc->dma_descr->after = iv_desc->dma_descr->buf + tc->blocklength; in setup_cipher_iv_desc() 579 outdesc->dma_descr->after = outdesc->dma_descr->buf + dlength; in create_input_descriptors() 629 cdesc->dma_descr->after = cdesc->dma_descr->buf + dlength; in create_output_descriptors() 682 (*current_in_cdesc)->dma_descr->after = (*current_in_cdesc)->dma_descr->buf + desclen; in append_input_descriptors() 963 indata_ix += (unsigned int)(key_desc->dma_descr->after - key_desc->dma_descr->buf); in cryptocop_setup_dma_list() 978 indata_ix += (unsigned int)(iv_desc->dma_descr->after - iv_desc->dma_descr->buf); in cryptocop_setup_dma_list() [all …]
|
/linux-4.1.27/Documentation/devicetree/bindings/ata/ |
D | sata_highbank.txt | 29 cycles to transmit after sending an SGPIO pattern
|
/linux-4.1.27/Documentation/devicetree/ |
D | changesets.txt | 5 previous state. A changeset can also be removed after it has been
|
/linux-4.1.27/scripts/coccinelle/free/ |
D | kfree.cocci | 1 /// Find a use after free.
|
/linux-4.1.27/scripts/coccinelle/locks/ |
D | mini_lock.cocci | 3 /// before the if and an unlock after the if. False positives are due to
|
/linux-4.1.27/drivers/staging/ozwpan/ |
D | README | 12 as a parameter - e.g. 'insmod ozwpan g_net_dev=go0') or can be bound after
|
/linux-4.1.27/arch/cris/arch-v10/ |
D | Kconfig | 27 <file:arch/cris/include/asm/io.h>, and those macros are defined after 37 <file:arch/cris/include/asm/io.h>, and those macros are defined after 47 <file:arch/cris/include/asm/io.h>, and those macros are defined after 379 powerbutton and then do a power off after unmounting disks.
|
/linux-4.1.27/Documentation/RCU/ |
D | whatisRCU.txt | 67 callback that is invoked after they finish. Only readers that are active 69 after the removal phase will be unable to gain a reference to the removed 177 any that begin after synchronize_rcu() is invoked. 180 -immediately- after the last pre-existing RCU read-side critical 194 after all ongoing RCU read-side critical sections have completed. 283 at any time, including immediately after the rcu_dereference(). 371 * frees up the old structure after a grace period. 431 o Use synchronize_rcu() -after- removing a data element from an 454 This function invokes func(head) after a grace period has elapsed. 472 * frees up the old structure after a grace period. [all …]
|
/linux-4.1.27/Documentation/isdn/ |
D | README.pcbit | 20 allow you to load the firmware after a hard reset.
|
/linux-4.1.27/drivers/eisa/ |
D | Kconfig | 48 image by about 40KB, but it gets freed after the system
|
/linux-4.1.27/drivers/infiniband/ulp/ipoib/ |
D | Kconfig | 34 can also be set after the driver is loaded through sysfs).
|
/linux-4.1.27/drivers/char/mwave/ |
D | README | 5 are not saved by the BIOS and so do not persist after unload and reload.
|
/linux-4.1.27/Documentation/device-mapper/ |
D | dm-raid.txt | 58 resyncing after a failure is likely to take longer. 181 or is resynchronizing after an unclean shutdown 196 This value is valid only after a "check" of the array
|
/linux-4.1.27/Documentation/devicetree/bindings/arm/exynos/ |
D | power_domain.txt | 17 and restored back after powering on a domain. This is required for
|
/linux-4.1.27/scripts/coccinelle/iterators/ |
D | fen.cocci | 122 msg = "ERROR: of_node_put not needed after iterator on line %s" % (p1[0].line)
|
/linux-4.1.27/tools/power/acpi/ |
D | Makefile | 70 WARNINGS += $(call cc-supports,-Wdeclaration-after-statement)
|
/linux-4.1.27/Documentation/video4linux/ |
D | pxa_camera.txt | 21 smoothly captured one frame after the other. 168 Note: if DMA stops just after pxa_camera_check_link_miss() reads DDADR()
|
/linux-4.1.27/Documentation/scheduler/ |
D | sched-domains.txt | 21 CPUs as they contain read only data after they have been set up. 29 through scheduler_tick(). It raises a softirq after the next regularly scheduled
|
/linux-4.1.27/Documentation/trace/ |
D | ring-buffer-design.txt | 108 The page after the inserted page (old reader_page) will become the 245 If a write happens after the first reserve: 290 The tail page is always equal to or after the commit page. It may 311 There is a special case that the head page is after either the commit page 479 The reader sets the reader page next pointer as HEADER to the page after 825 Another writer preempts and sees the page after the tail page is a head page. 928 writers means that it only needs to check this after setting the HEAD page.
|
/linux-4.1.27/Documentation/watchdog/ |
D | watchdog-kernel-api.txt | 73 * bootstatus: status of the device after booting (reported with watchdog 172 is active or not. When the watchdog is active after booting, then you should 184 after calling watchdog_unregister_device, and then checked before calling 186 unref) will get called after unregister, even if userspace still holds a
|