Home
last modified time | relevance | path

Searched refs:works (Results 1 – 200 of 435) sorted by relevance

123

/linux-4.4.14/arch/x86/pci/
Ddirect.c227 int works = 0; in pci_check_type1() local
235 works = 1; in pci_check_type1()
240 return works; in pci_check_type1()
246 int works = 0; in pci_check_type2() local
255 works = 1; in pci_check_type2()
260 return works; in pci_check_type2()
/linux-4.4.14/Documentation/power/
Dvideo.txt31 Currently, VBE_SAVE method (6 below) works on most
39 There are a few types of systems where video works after S3 resume:
49 the BIOS works well enough to be able to set video mode. Use
67 POSTing bios works. Ole Rohne has patch to do just that at
82 You may have a system where none of above works. At that point you
83 either invent another ugly hack that works, or write proper driver for
105 Asus L2400D s3_mode (3)(***) (S1 also works OK)
107 Asus L3800C (Radeon M7) s3_bios (2) (S1 also works OK)
111 Compaq Armada E500 - P3-700 none (1) (S1 also works OK)
131 HP Omnibook 5150 none (1), (S1 also works OK)
[all …]
Dbasic-pm-debugging.txt6 To check if hibernation works, you can try to hibernate in the "reboot" mode:
36 If neither "platform" nor "shutdown" hibernation mode works, you will need to
136 see if that works.
182 To verify that the STR works, it is generally more convenient to use the s2ram
Dswsusp-dmcrypt.txt8 You know how dm-crypt works. If not, visit the following web page:
11 You did read Documentation/initrd.txt and know how an initrd works.
Ds2ram.txt63 resume it instead works fine.
/linux-4.4.14/kernel/
Dstop_machine.c42 struct list_head works; /* list of pending works */ member
79 list_add_tail(&work->list, &stopper->works); in __cpu_stop_queue_work()
426 run = !list_empty(&stopper->works); in cpu_stop_should_run()
440 if (!list_empty(&stopper->works)) { in cpu_stopper_thread()
441 work = list_first_entry(&stopper->works, in cpu_stopper_thread()
495 WARN_ON(!list_empty(&stopper->works)); in cpu_stop_park()
524 INIT_LIST_HEAD(&stopper->works); in cpu_stop_init()
Dworkqueue.c2970 struct work_struct __percpu *works; in schedule_on_each_cpu() local
2972 works = alloc_percpu(struct work_struct); in schedule_on_each_cpu()
2973 if (!works) in schedule_on_each_cpu()
2979 struct work_struct *work = per_cpu_ptr(works, cpu); in schedule_on_each_cpu()
2986 flush_work(per_cpu_ptr(works, cpu)); in schedule_on_each_cpu()
2989 free_percpu(works); in schedule_on_each_cpu()
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/rtl8188ee/
Dsw.c193 init_timer(&rtlpriv->works.fw_clockoff_timer); in rtl88e_init_sw_vars()
194 setup_timer(&rtlpriv->works.fw_clockoff_timer, in rtl88e_init_sw_vars()
199 init_timer(&rtlpriv->works.fast_antenna_training_timer); in rtl88e_init_sw_vars()
200 setup_timer(&rtlpriv->works.fast_antenna_training_timer, in rtl88e_init_sw_vars()
216 del_timer_sync(&rtlpriv->works.fw_clockoff_timer); in rtl88e_deinit_sw_vars()
218 del_timer_sync(&rtlpriv->works.fast_antenna_training_timer); in rtl88e_deinit_sw_vars()
/linux-4.4.14/Documentation/devicetree/bindings/serial/
Dfsl-imx-uart.txt11 - fsl,dte-mode : Indicate the uart works in DTE mode. The uart works
/linux-4.4.14/Documentation/video4linux/bttv/
DREADME.freeze15 If some version works and another doesn't it is likely to be a driver
34 I've seen reports that bttv 0.7.x crashes whereas 0.8.x works rock solid
36 0.7.x. I have no idea where exactly, it works stable for me and a lot of
67 IRQ sharing is known to cause problems in some cases. It works just
DREADME16 Just try "modprobe bttv" and see if that works.
45 Subsystem: Hauppauge computer works Inc. WinTV/GO
/linux-4.4.14/drivers/net/wireless/realtek/rtlwifi/
Dbase.c462 setup_timer(&rtlpriv->works.watchdog_timer, in _rtl_init_deferred_work()
464 setup_timer(&rtlpriv->works.dualmac_easyconcurrent_retrytimer, in _rtl_init_deferred_work()
467 rtlpriv->works.hw = hw; in _rtl_init_deferred_work()
468 rtlpriv->works.rtl_wq = alloc_workqueue("%s", 0, 0, rtlpriv->cfg->name); in _rtl_init_deferred_work()
469 INIT_DELAYED_WORK(&rtlpriv->works.watchdog_wq, in _rtl_init_deferred_work()
471 INIT_DELAYED_WORK(&rtlpriv->works.ips_nic_off_wq, in _rtl_init_deferred_work()
473 INIT_DELAYED_WORK(&rtlpriv->works.ps_work, in _rtl_init_deferred_work()
475 INIT_DELAYED_WORK(&rtlpriv->works.ps_rfon_wq, in _rtl_init_deferred_work()
477 INIT_DELAYED_WORK(&rtlpriv->works.fwevt_wq, in _rtl_init_deferred_work()
486 del_timer_sync(&rtlpriv->works.watchdog_timer); in rtl_deinit_deferred_work()
[all …]
Dps.c70 tasklet_kill(&rtlpriv->works.irq_tasklet); in rtl_ps_disable_nic()
282 queue_delayed_work(rtlpriv->works.rtl_wq, in rtl_ips_nic_off()
283 &rtlpriv->works.ips_nic_off_wq, MSECS(100)); in rtl_ips_nic_off()
295 cancel_delayed_work(&rtlpriv->works.ips_nic_off_wq); in rtl_ips_nic_on()
566 queue_delayed_work(rtlpriv->works.rtl_wq, in rtl_swlps_beacon()
567 &rtlpriv->works.ps_work, MSECS(5)); in rtl_swlps_beacon()
672 queue_delayed_work(rtlpriv->works.rtl_wq, &rtlpriv->works.ps_rfon_wq, in rtl_swlps_rf_sleep()
Dpci.c670 schedule_work(&rtlpriv->works.lps_change_work); in _rtl_pci_tx_isr()
924 schedule_work(&rtlpriv->works.lps_change_work); in _rtl_pci_rx_interrupt()
991 tasklet_schedule(&rtlpriv->works.irq_prepare_bcn_tasklet); in _rtl_pci_interrupt()
1074 queue_delayed_work(rtlpriv->works.rtl_wq, in _rtl_pci_interrupt()
1075 &rtlpriv->works.fwevt_wq, 0); in _rtl_pci_interrupt()
1095 tasklet_schedule(&rtlpriv->works.irq_tasklet); in _rtl_pci_interrupt()
1229 tasklet_init(&rtlpriv->works.irq_tasklet, in _rtl_pci_init_struct()
1232 tasklet_init(&rtlpriv->works.irq_prepare_bcn_tasklet, in _rtl_pci_init_struct()
1235 INIT_WORK(&rtlpriv->works.lps_change_work, in _rtl_pci_init_struct()
1800 tasklet_kill(&rtlpriv->works.irq_tasklet); in rtl_pci_deinit()
[all …]
Dusb.c713 cancel_work_sync(&rtlpriv->works.lps_change_work); in _rtl_usb_cleanup_rx()
715 flush_workqueue(rtlpriv->works.rtl_wq); in _rtl_usb_cleanup_rx()
716 destroy_workqueue(rtlpriv->works.rtl_wq); in _rtl_usb_cleanup_rx()
840 cancel_work_sync(&rtlpriv->works.fill_h2c_cmd); in rtl_usb_stop()
1083 INIT_WORK(&rtlpriv->works.fill_h2c_cmd, in rtl_usb_probe()
1085 INIT_WORK(&rtlpriv->works.lps_change_work, in rtl_usb_probe()
Dcore.c628 cancel_delayed_work(&rtlpriv->works.ps_work); in rtl_op_config()
629 cancel_delayed_work(&rtlpriv->works.ps_rfon_wq); in rtl_op_config()
640 queue_delayed_work(rtlpriv->works.rtl_wq, in rtl_op_config()
641 &rtlpriv->works.ps_work, in rtl_op_config()
1158 schedule_work(&rtlpriv->works.lps_change_work); in rtl_op_bss_info_changed()
1436 schedule_work(&rtlpriv->works.lps_change_work); in rtl_op_sw_scan_start()
/linux-4.4.14/Documentation/devicetree/
Ddynamic-resolution-notes.txt8 How the resolver works
15 In sequence the resolver works by the following steps:
/linux-4.4.14/drivers/thermal/ti-soc-thermal/
DTODO10 - make sure this code works on OMAP4430, OMAP4460 and OMAP5430
/linux-4.4.14/Documentation/scsi/
Dqlogicfas.txt3 only works with the ISA, VLB, and PCMCIA versions of the Qlogic
21 This currently only works if the card is enabled first from DOS. This
51 Make sure it works properly under DOS. You should also do an initial FDISK
Ddtc3x80.txt34 scsi disconnect/reconnect, and this (mostly) works. However..... I
36 SCSI-2), and one CDROM drive. Interrupts works great for all but one
Dsym53c500_cs.txt21 for Tom Corner, and it works for me. Your mileage will probably vary.
DLICENSE.qla4xxx127 and can be reasonably considered independent and separate works in
129 sections when you distribute them as separate works. But when you
138 collective works based on the Program.
193 distribute the Program or its derivative works. These actions are
198 the Program or works based on it.
DLICENSE.qla2xxx128 and can be reasonably considered independent and separate works in
130 sections when you distribute them as separate works. But when you
139 collective works based on the Program.
194 distribute the Program or its derivative works. These actions are
199 the Program or works based on it.
Dg_NCR5380.txt43 This driver works as a module.
Dscsi-changer.txt67 Grundig. I got some reports telling it works ok with tape autoloaders
69 works fine with small (11 slots) and a huge (4 MOs, 88 slots)
Din2000.txt14 Once again, the same code works for both 2.0.xx and
20 It appears that the driver works fine with serial
DNinjaSCSI.txt110 It works good when I using this driver right way. But I'm not guarantee
DChangeLog.sym53c8xx_2144 as Paul Mackerras stated that MMIO works fine now on this arch.
Dtmscsim.txt35 added. The non-DC390 support works by assuming some values for the data
107 MHz PCI bus works for me, though, but I don't recommend using higher clocks
277 As the support for non-DC390 adapters works by simulating the values of the
/linux-4.4.14/Documentation/input/
Dcs461x.txt12 Raw mode works fine with analog joystick front-end driver and cs461x
30 The driver works with ALSA drivers simultaneously. For example, the xracer
Dinput.txt164 keyboard.c module. This works well enough on all architectures that
247 4. Verifying if it works
250 a USB keyboard works and is correctly connected to the kernel keyboard
Dxpad.txt73 I've tested this with Stepmania, and it works quite well.
169 It works? Voila, you're done ;)
Dgameport-programming.txt103 and also lightning.c and analog.c on how that works. If your driver supports
/linux-4.4.14/Documentation/video4linux/
DREADME.cx8811 - Basically works.
23 cards it works, so there is mono sound available as fallback.
Dcafe_ccic5 Current status: the core driver works. It can generate data in YUV422,
16 The "xawtv" utility also works; gqcam does not, for unknown reasons.
DREADME.ir26 how it works
Dzr364xx.txt8 The driver works with several other cameras in webcam mode (see the list below).
/linux-4.4.14/Documentation/
DBUG-HUNTING57 It's a brute force approach but it works pretty well.
67 . Rebuild a revision that you believe works, install, and verify that.
71 that, like 1.3.50. Build & test; if it works, pick the mid point
78 - Copy kernel that works into "test". Let's say that 3.62 works,
Dnumastat.txt25 (http://oss.sgi.com/projects/libnuma/). Note that it only works
Dio-mapping.txt51 This works like io_mapping_map_atomic_wc except it allows
56 This works like io_mapping_unmap_atomic, except it is used
Dparport.txt223 * IRQ autoprobing works only for a few port types at the moment.
252 with 'irq=none'. See if printing works then. It really should,
255 If that works fine, try with 'io=0x378 irq=7' (adjust for your
258 If _that_ works fine, then one of the hardware modes isn't working
Dramoops.txt11 crashes. It works by logging oopses and panics in a circular buffer. Ramoops
26 pgprot_noncached, which only works on some platforms. This is because pstore
Dirqflags-tracing.txt37 fix and repeat. Once the system has booted up and works without a
Dhighuid.txt69 - make sure that the UID mapping feature of AX25 networking works properly
Dkasan.txt30 Currently KASAN works only with the SLUB memory allocator.
126 Reading this part requires some understanding of how KASAN works.
DSAK.txt19 SAK works correctly when the keyboard is in raw mode. This means that
Dbus-virt-phys-mapping.txt141 so on x86 it actually works to just deference a pointer, but it's not
179 happy that your driver works ;)
DHOWTO23 explain some of the reasons why the community works like it does.
205 imperative to understand how the code in question works. For this
286 how the release process works.
410 to comment on individual lines of your patch, which works only that way.
414 mail program fixed or change it until it works.
462 The kernel community works differently than most traditional corporate
Dsvga.txt10 kernel decompression starts) and works only on 80X86 machines.
235 CLGD autodetect works better. Doesn't depend on 80x25 being
246 these changes. Unfortunately, screen contents retaining works
DSubmitChecklist92 that it still works with all of the other queued patches and various
Dkmemcheck.txt29 difference between memcheck and kmemcheck is that memcheck works for userspace
30 programs only, and kmemcheck works for the kernel only. The implementations
52 kmemcheck only works for the x86 (both 32- and 64-bit) platform. A number of
166 This option (when enabled) works around certain GCC optimizations that
716 kmemcheck works by marking memory pages non-present. This means that whenever
Demail-clients.txt12 then review the changelog with `git log`. When that works then send
177 (a)ttach works fine without "set paste".
Ddell_rbu.txt11 This driver works with Dell OpenManage or Dell Update Packages for updating
Dunshare.txt91 works on an active task (as opposed to clone/fork working on a newly
278 other works as expected.
Dflexible-arrays.txt105 This function works by scanning the array for pages containing nothing but
/linux-4.4.14/drivers/mtd/ubi/
Dwl.c216 if (list_empty(&ubi->works)) { in do_work()
222 wrk = list_entry(ubi->works.next, struct ubi_work, list); in do_work()
545 list_add_tail(&wrk->list, &ubi->works); in __schedule_ubi_work()
1346 list_for_each_entry_safe(wrk, tmp, &ubi->works, list) {
1434 if (list_empty(&ubi->works) || ubi->ro_mode ||
1477 while (!list_empty(&ubi->works)) {
1480 wrk = list_entry(ubi->works.next, struct ubi_work, list);
1509 INIT_LIST_HEAD(&ubi->works);
1820 ubi_assert(list_empty(&ubi->works));
Dubi.h592 struct list_head works; member
/linux-4.4.14/Documentation/cpu-freq/
Dcpufreq-nforce2.txt4 This works better than on other platforms, because the FSB of the CPU
/linux-4.4.14/arch/m68k/hp300/
DREADME.hp30012 The LANCE driver works after a fashion but only if you reset the chip before
/linux-4.4.14/Documentation/hwmon/
Dthmc5049 The ADM1022 works the same as THMC50 but it is faster (5 Hz instead of
72 The driver was tested on Compaq AP550 with two ADM1022 chips (one works
Dds62024 The thermostat function works as follows: When configured via platform_data
Dshtc134 is used. Make sure clock-stretching works properly on your device if you
Dk8temp17 family CPUs (Athlon64/FX, Opteron). Official documentation says that it works
Dw8379388 SmartFanII works differently, you have to define up to 7 PWM, temperature
/linux-4.4.14/Documentation/arm/stm32/
Doverview.txt25 Flattened Device Tree, which means, it works with any compatible board with
/linux-4.4.14/Documentation/ABI/removed/
Draw139414 libraw1394 (works with firewire-cdev too, transparent to library ABI
Dvideo139415 libdc1394 (works with firewire-cdev too, transparent to library ABI
/linux-4.4.14/Documentation/laptops/
Dasus-laptop.txt95 Switching works for the following models:
157 c) actually works
182 LED display works for the following models:
234 how it works):
/linux-4.4.14/drivers/media/common/siano/
DKconfig29 statistics response packets via debugfs. Currently, works
/linux-4.4.14/arch/m68k/kernel/
Dvmlinux-sun3.lds30 /* End of data goes *here* so that freeing init code works properly. */
/linux-4.4.14/drivers/media/pci/cx25821/
DKconfig21 It only works with boards with function 01 enabled.
/linux-4.4.14/Documentation/arm/sti/
Doverview.txt26 Flattened Device Tree, which means, It works with any compatible board with
/linux-4.4.14/net/dcb/
DKconfig19 works at the granularity of the 802.1p priority instead of the
/linux-4.4.14/Documentation/fmc/
D00-INDEX26 - how identification and matching works
/linux-4.4.14/Documentation/sound/oss/
DSoundPro21 more advanced than the original AD1848 one. If your system works with
36 recording. I don't know if this works, b/c I haven't tested it. Anyway, if
37 you try it, be very careful: the SB16 mixer *mostly* works, but certain
DESS16 little testprogram that shows that is works, haven't seen a real program that
Dbtaudio52 Hauppauge board works this way.
DREADME.OSS175 Check that your kernel version works with this
309 model works with Linux but the PnP one doesn't.
356 works with older machines but causes a hard reset of all cards on recent
457 The driver works both with the full (intelligent mode) MPU-401
521 SoftOSS is a software based wave table emulation which works with
827 "nonstandard" feature and works only with very few cards (if any).
1024 GUS ACE works too but any attempt to record or to use the MIDI port
1213 The Jazz16 driver is just a hack made to the SB Pro driver. However it works
1289 probably works with OSS/Free after initialization using isapnptools.
1384 card which works with Linux, please inform me (or is anybody else
[all …]
DREADME.modules88 wasteful of RAM, but it guarantees that sound always works.
/linux-4.4.14/drivers/net/ethernet/dec/tulip/
DKconfig19 cards and also works with cards based on the DECchip
47 cards and also works with cards based on the DECchip
127 This driver is for the Winbond W89c840 chip. It also works with
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dwm8960.txt16 When wm8960 works on synchronize mode and DACLRC pin is used to supply
Dfsl,asrc.txt5 output clock. The driver currently works as a Front End of DPCM with other Back
/linux-4.4.14/arch/mips/sgi-ip27/
Dip27-klnuma.c37 #error Kernel replication works with mapped kernel support. No calias support. in setup_replication_mask()
/linux-4.4.14/Documentation/filesystems/
Dubifs.txt35 UBIFS works on top of UBI. UBI is a separate software layer which may be
47 * JFFS2 works on top of MTD devices, UBIFS depends on UBI and works on
Dhpfs.txt98 moved ... sometimes it works. But the link is partly stored in directory
224 Mount option 'eas' now works
232 1.93 Modified, so that it works with kernels >= 2.1.131, I don't know if it
233 works with previous versions
281 Now it works with Japanese version of OS/2
290 2.07 More fixes for Warp Server. Now it really works
Dfiles.txt5 and file descriptor table (struct files) works.
Ddlmfs.txt24 - Right now it only works with the OCFS2 DLM, though support for other
Dntfs.txt244 Linear volume sets, i.e. linear raid, has been tested and works fine. Even
419 different available algorithms until you find one that works. Make sure you
421 otherwise. If you find which algorithm works please let us know (email the
/linux-4.4.14/Documentation/ia64/
DREADME43 o IA32 support. Currently experimental. It mostly works.
Dserial.txt59 (This works only in 2.6.6 or later; prior to that you had
77 2.6.10 and later kernels have an "early uart" driver that works
117 Kernel and init script output works fine, but no "login:" prompt:
/linux-4.4.14/Documentation/ABI/stable/
Dfirewire-cdev88 Isochronous reception works in packet-per-buffer fashion except
89 for multichannel reception which works in buffer-fill mode.
/linux-4.4.14/Documentation/devicetree/bindings/misc/
Datmel-ssc.txt22 - When SSC works in slave mode, according to the hardware design, the
/linux-4.4.14/tools/perf/Documentation/
Dperf-kmem.txt62 instead. (This option works with --page option only)
Dperf-list.txt49 The precise modifier works with event types 0x76 (cpu-cycles, CPU
/linux-4.4.14/drivers/net/ethernet/cavium/
DKconfig24 works closely with TNS, BGX and SerDes to implement the
/linux-4.4.14/drivers/memstick/core/
DKconfig35 This driver works with old (bulky) MemoryStick and MemoryStick Duo
/linux-4.4.14/tools/power/cpupower/bench/
DREADME-BENCH10 - (Stress) Testing whether a cpufreq low level driver or governor works
32 How it works
/linux-4.4.14/Documentation/i2c/busses/
Di2c-sis63018 above to check if it works for you chipset, but DANGEROUS!
Di2c-i801119 i2c_ec driver works for you, just forget about the i2c-i801 driver and
152 If it works, proves useful (i.e. there are usable chips on the SMBus)
/linux-4.4.14/Documentation/block/
Dswitching-sched.txt6 tunables control how the io scheduler works. You can find these entries
Ddeadline-iosched.txt4 This little file attempts to document how the deadline io scheduler works.
Dpr.txt99 This ioctl command works like IOC_PR_PREEMPT except that it also aborts
/linux-4.4.14/fs/jffs2/
DLICENCE22 files and link them with other works to produce a work based on these
DKconfig137 minilzo-based compression. Generally works better than Zlib.
/linux-4.4.14/Documentation/fb/
Dvt8623fb.txt38 Suspend/resume works on systems that initialize video card during resume and
Darkfb.txt41 Suspend/resume works on systems that initialize video card during resume and
Daty128fb.txt42 this document, 8 and 32bpp works fine. There have been palette issues
Ds3fb.txt50 Suspend/resume works on systems that initialize video card during resume and
Dtgafb.txt57 mmap(). Running the standard XF86_TGA server from XFree86 3.3.x works fine for
Dframebuffer.txt78 the hardware can be queried and set. The color map handling works via ioctls,
99 easier and more portable. E.g. the X server works completely on /dev/fb* and
104 etc.), because it works on the frame buffer image data directly.
Dsh7760fb.txt23 * Rotation works only 90degress clockwise, and only if horizontal
Ddeferred_io.txt7 works:
Dmatroxfb.txt84 works fine.
86 Running another (accelerated) X-Server like XF86_SVGA works too. But (at least)
201 grayscale - enable grayscale summing. It works in PSEUDOCOLOR modes (text,
309 (and it works with 8bpp on about 320 MHz dotclocks (and changed mclk)).
/linux-4.4.14/fs/ubifs/
DKconfig12 UBIFS is a file system for flash devices which works on top of UBI.
/linux-4.4.14/Documentation/networking/
Dtcp.txt10 - How the new TCP output machine [nyi] works
68 How the new TCP output machine [nyi] works.
Dskfp.txt127 LED works as a ring operational indicator. An active yellow LED
129 works as a link indicator where an active GREEN LED indicates that
DLICENSE.qlcnic126 and can be reasonably considered independent and separate works in
128 sections when you distribute them as separate works. But when you
137 collective works based on the Program.
192 distribute the Program or its derivative works. These actions are
197 the Program or works based on it.
DLICENSE.qlge126 and can be reasonably considered independent and separate works in
128 sections when you distribute them as separate works. But when you
137 collective works based on the Program.
192 distribute the Program or its derivative works. These actions are
197 the Program or works based on it.
Darcnet.txt197 and works as a module, so most of this is now unnecessary.)
266 Windows: See DOS :) Trumpet Winsock works fine with either the Novell or
289 OS/2: I've been told it works under Warp Connect with an ARCnet driver from
328 fit. arc0e also works slightly more slowly than arc0, for
360 WfWg, that only works with arc0e).
374 arc0s works much the same way as arc0e.
461 runs the Novell ODI protocol stack, which only works with RFC1201 ARCnet.
488 It works: what now?
Dtuntap.txt215 TUN works with IP frames. TAP works with Ethernet frames.
Deql.txt355 mind: first, to ensure it actually works as described and
469 I've installed your patch and it works great. I have trialed
Dltpc.txt114 as a module. (though it usually works at boot time, at least)
Dray_cs.txt11 This driver also works with WebGear's Aviator 2.4 and Aviator Pro
Dpacket_mmap.txt548 structures, thus this also works on 64 bit kernel with 32 bit
584 processes. This also works in combination with mmap(2) on packet sockets.
742 works on a per block basis instead of per ring as in TPACKET_V2 and predecessor.
1036 Getting timestamps for the TX_RING works as follows: i) fill the ring frames,
/linux-4.4.14/drivers/fmc/
DKconfig31 This is a fake mezzanine driver, to show how FMC works and test it.
/linux-4.4.14/Documentation/usb/
Dacm.txt31 The drivers/usb/class/cdc-acm.c drivers works with USB modems and USB ISDN terminal
65 2. Verifying that it works
Dusb-serial.txt50 This driver works with all HandSpring USB, Palm USB, and Sony Clié USB
148 This driver also works for the Xircom/Entrega single port serial adapter.
272 This driver works under SMP with the usb-uhci driver. It does not
290 The Peracom single port serial adapter also works with this driver, as
350 converter uses Product ID 0x230 and Vendor ID 0x711 and works with this
351 driver. Also, D-Link's DU-H3SP USB BAY also works with this driver.
Dfunctionfs.txt1 *How FunctionFS works*
Dgadget_configfs.txt294 Below the idea of how configfs works is presented.
382 So, provided that modprobe works, modules for particular functions
Dehci.txt47 It's believed to do all the right PCI magic so that I/O works even on
74 drivers; a OHCI or UHCI driver that works already doesn't need to change
/linux-4.4.14/arch/arc/include/asm/
Dentry-arcv2.h22 ; Auto stack switch works
/linux-4.4.14/drivers/acpi/apei/
DKconfig28 works in so called "Firmware First" mode, that is, hardware
/linux-4.4.14/drivers/net/plip/
DKconfig24 15m long. Mode 0 works also if one of the machines runs DOS/Windows
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-driver-toshiba_acpi84 Note that this feature only works when connected to power, if
123 Note that this feature only works when connected to power, if
Ddebugfs-driver-genwqe65 error handling code works well.
/linux-4.4.14/drivers/net/wireless/orinoco/
DKconfig28 configure your card and that /etc/pcmcia/wireless.opts works :
121 configure your card and that /etc/pcmcia/wireless.opts works:
/linux-4.4.14/fs/btrfs/
Dordered-data.c665 struct list_head splice, works; in btrfs_wait_ordered_extents() local
670 INIT_LIST_HEAD(&works); in btrfs_wait_ordered_extents()
686 list_add_tail(&ordered->work_list, &works); in btrfs_wait_ordered_extents()
699 list_for_each_entry_safe(ordered, next, &works, work_list) { in btrfs_wait_ordered_extents()
/linux-4.4.14/drivers/staging/vt6655/
Ddevice_main.c706 int works = 0; in device_rx_srv() local
711 if (works++ > 15) in device_rx_srv()
729 return works; in device_rx_srv()
835 int works = 0; in device_tx_srv() local
842 if (works++ > 15) in device_tx_srv()
879 return works; in device_tx_srv()
/linux-4.4.14/drivers/bcma/
DKconfig37 the memory. This only works with the Broadcom SoCs from the
/linux-4.4.14/Documentation/blockdev/
Dmflash.txt16 driver and currently works well under standard IDE subsystem. Actually it's
/linux-4.4.14/fs/quota/
DKconfig11 usage (also called disk quotas). Currently, it works for the
/linux-4.4.14/drivers/media/pci/cx88/
DKconfig24 It only works with boards with function 01 enabled.
/linux-4.4.14/Documentation/vm/
Dhwpoison.txt40 The main target right now is KVM guests, but it works for all kinds
118 This only works for Linux injected failures, not for real
Dbalance49 the balancing algorithm works the same way on the various architectures,
Didle_page_tracking.txt94 it only works with pages that are on an LRU list, other pages are silently
/linux-4.4.14/Documentation/dvb/
Dfaq.txt16 DVB API works.
46 the DVB button in the xine GUI. Channel switching works using the
Dcards.txt10 Note 1: There is no guarantee that every frontend driver works
Davermedia.txt155 Australia, so I will attempt to explain how it works here in
291 dvbstream and VideoLAN Client on windows works a treat with
/linux-4.4.14/sound/oss/
DCHANGELOG167 - Minor fixes to the SB support. Hopefully the driver works with
215 - mmap() support (works with some cards). Requires much more testing.
231 Full duplex mode is not implemented yet.) Select works also with
248 - Recording with GUS MAX fixed. It works when the driver is configured
/linux-4.4.14/Documentation/arm/
Dmem_alignment19 floating point emulation that works about the same way). Fix your code
DPorting40 you are using the bootpImage stuff (which only works on the old
/linux-4.4.14/lib/
DKconfig.kmemcheck80 This option works around certain GCC optimizations that produce
/linux-4.4.14/Documentation/sound/alsa/
DBt87x.txt39 <alsa-devel@alsa-project.org>, regardless of whether audio capture works
/linux-4.4.14/drivers/staging/rtl8192u/
Dcopying116 and can be reasonably considered independent and separate works in
118 sections when you distribute them as separate works. But when you
127 collective works based on the Program.
182 distribute the Program or its derivative works. These actions are
187 the Program or works based on it.
/linux-4.4.14/tools/usb/usbip/
DCOPYING116 and can be reasonably considered independent and separate works in
118 sections when you distribute them as separate works. But when you
127 collective works based on the Program.
182 distribute the Program or its derivative works. These actions are
187 the Program or works based on it.
/linux-4.4.14/drivers/staging/rtl8192e/
Dlicense119 reasonably considered independent and separate works in themselves, then
121 distribute them as separate works. But when you distribute the same
130 collective works based on the Program.
185 the Program or its derivative works. These actions are prohibited by law
189 conditions for copying, distributing or modifying the Program or works
/linux-4.4.14/
DCOPYING132 and can be reasonably considered independent and separate works in
134 sections when you distribute them as separate works. But when you
143 collective works based on the Program.
198 distribute the Program or its derivative works. These actions are
203 the Program or works based on it.
/linux-4.4.14/Documentation/isdn/
DREADME.gigaset37 If you have another device that works with our driver, please let us know.
50 The driver works with the Kernel CAPI subsystem as well as the old
187 In this mode the device works like a modem connected to a serial port
322 first one you turn on works.
/linux-4.4.14/Documentation/driver-model/
Ddevice.txt51 on how sysfs works.
Dbus.txt127 Bus drivers can export attributes using the BUS_ATTR macro that works
Dclass.txt120 Class drivers can export attributes using the DEVCLASS_ATTR macro that works
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Di2c-arb-gpio-challenge.txt11 Note that this scheme works well enough but has some downsides:
/linux-4.4.14/net/ipx/
DKconfig56 daemons. A RIP/SAP daemon that works well with the full internal net
/linux-4.4.14/Documentation/ide/
DChangeLog.ide-floppy.1996-200249 * no disk on insert and disk change now works
/linux-4.4.14/Documentation/networking/mac80211_hwsim/
DREADME33 mac80211_hwsim works by tracking the current channel of each virtual
/linux-4.4.14/drivers/net/ethernet/via/
Dvia-velocity.c1907 int works = 0; in velocity_tx_srv() local
1924 if ((works++ > 15)) in velocity_tx_srv()
1958 return works; in velocity_tx_srv()
2105 int works = 0; in velocity_rx_srv() local
2107 while (works < budget_left) { in velocity_rx_srv()
2138 works++; in velocity_rx_srv()
2143 if ((works > 0) && (velocity_rx_refill(vptr) > 0)) in velocity_rx_srv()
2147 return works; in velocity_rx_srv()
/linux-4.4.14/Documentation/wimax/
DREADME.wimax19 The stack works by embedding a struct wimax_dev in your device's
/linux-4.4.14/Documentation/devicetree/bindings/arm/
Dfw-cfg.txt28 that affect how the firmware works and what tables it installs for the guest
/linux-4.4.14/Documentation/virtual/kvm/
Dppc-pv.txt4 The basic execution principle by which KVM on PowerPC works is to run all kernel
138 also act on the shared page. So calling privileged instructions still works as
/linux-4.4.14/Documentation/thermal/
Dpower_allocator.txt7 The governor works optimally with the following two passive trip points:
240 The power allocator governor's PID controller works best if there is a
/linux-4.4.14/drivers/net/can/sja1000/
DKconfig101 SJA1000 IO base addresses are chosen heuristically (first that works).
/linux-4.4.14/Documentation/arm/Samsung-S3C24XX/
DSuspend.txt10 powered down. For more information on how this works, please look
/linux-4.4.14/drivers/bus/
DKconfig71 The WEIM(Wireless External Interface Module) works like a bus.
/linux-4.4.14/arch/sh/lib/
Dmovmem.S73 movmem_done: ! share slot insn, works out aligned.
/linux-4.4.14/Documentation/x86/
Dtlb.txt67 That works on an IvyBridge-era CPU (i5-3320M). Different CPUs
Dearlyprintk.txt116 3. Testing that it works fine:
/linux-4.4.14/Documentation/powerpc/
Ddscr.txt60 works, as it is emulated following an illegal instruction exception
/linux-4.4.14/fs/befs/
DChangeLog110 Now works for overflow nodes hanging off of nodes other than the root
283 native byteorder works 100%.
317 necessarily the size of the inode, although in practice it works out.
/linux-4.4.14/Documentation/cdrom/
Dpacket-writing.txt100 "pktcdvd" works similar to "pktsetup", e.g.:
/linux-4.4.14/Documentation/RCU/
DNMI-RCU.txt91 This works because synchronize_sched() blocks until all CPUs complete
/linux-4.4.14/Documentation/acpi/
Dvideo_extension.txt99 This works for machines covered by case ii) in Section 2. Once the driver
/linux-4.4.14/Documentation/extcon/
Dporting-android-switch-class42 With this changes, the ex-switch extcon class device works as it once
/linux-4.4.14/arch/m68k/
DKconfig.devices73 ROM port. The driver works by polling instead of interrupts, so it
/linux-4.4.14/Documentation/frv/
Datomic-ops.txt51 This works in a non-SMP environment because any interrupt or other exception that happens between
/linux-4.4.14/fs/fat/
DKconfig70 works if you said Y to the "DOS FAT fs support" above. Please read
/linux-4.4.14/Documentation/filesystems/pohmelfs/
Ddesign_notes.txt23 * Fast and scalable multithreaded userspace server. Being in userspace it works
/linux-4.4.14/Documentation/development-process/
D7.AdvancedTopics4 works. There is still more to learn, however! This section will cover a
35 understanding of how git works before trying to use it to make patches
/linux-4.4.14/drivers/net/arcnet/
DKconfig99 please mail <dwmw2@infradead.org>, especially if it works!
/linux-4.4.14/arch/frv/kernel/
Dentry-table.S42 # Due to the way single-stepping works on this CPU (single-step is not
/linux-4.4.14/Documentation/networking/dsa/
Dbcm_sf2.txt61 currently works very well because none of the of_* functions utilized by the
/linux-4.4.14/arch/powerpc/kvm/
DKconfig107 This is not as fast as using hypervisor mode, but works on
/linux-4.4.14/Documentation/mtd/
Dnand_ecc.txt65 Row parity actually works almost the same.
259 The code works, but is not terribly efficient. On my system it took
388 The code (of course) works, and hurray: we are a little bit faster than
444 different amounts of unrolling to see what works best.
/linux-4.4.14/Documentation/ABI/obsolete/
Dsysfs-driver-hid-roccat-konepure101 sampled underground. This works only in the course of a
/linux-4.4.14/Documentation/device-mapper/
Dlog-writes.txt21 This works by attaching all WRITE requests to a list once the write completes.
/linux-4.4.14/net/
DKconfig126 they are often combined with a packet filter, which only works if
136 firewall box itself. It works both ways: if the outside host
/linux-4.4.14/drivers/net/can/
DKconfig48 get started. This works fine for the most common CAN controllers
/linux-4.4.14/tools/perf/config/
Dutilities.mak114 # that works as a shell word, regardless of whether or
/linux-4.4.14/arch/m68k/q40/
DREADME65 Serial console works and can also be used for debugging, see loader_txt
/linux-4.4.14/Documentation/filesystems/cifs/
DCHANGES13 FindFirst fails but QPathInfo queries works). Fix oops with dfs in
169 Fix NTLMv2 signing. NFS server mounted over cifs works (if cifs mount is
243 (lock cancel now works, and unlock of merged range works even
857 now works to Samba servers. Fix oops caused when readahead
958 Various 2.5.38 fixes. Now works on 2.5.38
985 versions of 2.4 kernel (now builds and works again on kernels at least as early as 2.4.7).
/linux-4.4.14/arch/arm/plat-samsung/
DKconfig254 Note, this currently only works for S3C64XX based SMDK boards.

123