Home
last modified time | relevance | path

Searched refs:real (Results 1 – 200 of 381) sorted by relevance

12

/linux-4.4.14/Documentation/vm/
Dactive_mm.txt18 - we have "real address spaces" and "anonymous address spaces". The
26 this category, but even "real" threads can temporarily say that for
32 - "tsk->mm" points to the "real address space". For an anonymous process,
34 really doesn't _have_ a real address space at all.
40 The rule is that for a process with a real address space (ie tsk->mm is
41 non-NULL) the active_mm obviously always has to be the same as the real
50 "mm_users" counter that is how many "real address space users" there are,
52 users) plus one if there are any real users.
54 Usually there is at least one real user, but it could be that the real
58 gets scheduled away in favour of a real thread, the "zombie" mm gets
[all …]
Dfrontswap.txt184 executed to obtain the page of data from the real swap device.
192 just higher priority than any real swap device (e.g. like zswap,
211 Further, frontswap is entirely synchronous whereas a real swap
232 frontswap: Since any "store" might fail, there must always be a real
233 slot on a real swap device to swap the page. Thus frontswap must be
259 When the (non-frontswap) swap subsystem swaps out a page to a real
262 page may be taking up valuable real estate. The frontswap_shrink
Duserfaultfd.txt27 The real advantage of userfaults if compared to regular virtual memory
67 memory backend (anonymous memory vs tmpfs vs real filebacked
Dcleancache.txt172 more easily interface with real devices with DMA instead
181 are avoided. While the interface seems odd for a "real device"
182 or for real kernel-addressable RAM, it makes perfect sense for
/linux-4.4.14/drivers/char/agp/
Dati-agp.c45 unsigned long *real; member
59 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in ati_create_page_map()
60 if (page_map->real == NULL) in ati_create_page_map()
63 set_memory_uc((unsigned long)page_map->real, 1); in ati_create_page_map()
64 err = map_page_into_agp(virt_to_page(page_map->real)); in ati_create_page_map()
65 page_map->remapped = page_map->real; in ati_create_page_map()
78 unmap_page_from_agp(virt_to_page(page_map->real)); in ati_free_page_map()
79 set_memory_wb((unsigned long)page_map->real, 1); in ati_free_page_map()
80 free_page((unsigned long) page_map->real); in ati_free_page_map()
94 if (entry->real != NULL) in ati_free_gatt_pages()
[all …]
Dsworks-agp.c32 unsigned long *real; member
51 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in serverworks_create_page_map()
52 if (page_map->real == NULL) { in serverworks_create_page_map()
56 set_memory_uc((unsigned long)page_map->real, 1); in serverworks_create_page_map()
57 page_map->remapped = page_map->real; in serverworks_create_page_map()
68 set_memory_wb((unsigned long)page_map->real, 1); in serverworks_free_page_map()
69 free_page((unsigned long) page_map->real); in serverworks_free_page_map()
82 if (entry->real != NULL) { in serverworks_free_gatt_pages()
158 writel(virt_to_phys(serverworks_private.scratch_dir.real) | 1, page_dir.remapped+i); in serverworks_create_gatt_table()
168 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in serverworks_create_gatt_table()
[all …]
Damd-k7-agp.c26 unsigned long *real; member
40 page_map->real = (unsigned long *) __get_free_page(GFP_KERNEL); in amd_create_page_map()
41 if (page_map->real == NULL) in amd_create_page_map()
44 set_memory_uc((unsigned long)page_map->real, 1); in amd_create_page_map()
45 page_map->remapped = page_map->real; in amd_create_page_map()
57 set_memory_wb((unsigned long)page_map->real, 1); in amd_free_page_map()
58 free_page((unsigned long) page_map->real); in amd_free_page_map()
71 if (entry->real != NULL) in amd_free_gatt_pages()
142 agp_bridge->gatt_table_real = (u32 *)page_dir.real; in amd_create_gatt_table()
144 agp_bridge->gatt_bus_addr = virt_to_phys(page_dir.real); in amd_create_gatt_table()
[all …]
/linux-4.4.14/scripts/
DMakefile.build125 $(real-objs-m) : part-of-module := y
126 $(real-objs-m:.o=.i) : part-of-module := y
127 $(real-objs-m:.o=.s) : part-of-module := y
128 $(real-objs-m:.o=.lst): part-of-module := y
130 $(real-objs-m) : quiet_modtag := [M]
131 $(real-objs-m:.o=.i) : quiet_modtag := [M]
132 $(real-objs-m:.o=.s) : quiet_modtag := [M]
133 $(real-objs-m:.o=.lst): quiet_modtag := [M]
281 $(real-objs-m) : modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
282 $(real-objs-m:.o=.s): modkern_aflags := $(KBUILD_AFLAGS_MODULE) $(AFLAGS_MODULE)
[all …]
DMakefile.lib69 real-objs-y := $(foreach m, $(filter-out $(subdir-obj-y), $(obj-y)), $(if $(strip $($(m:.o=-objs)) …
70 real-objs-m := $(foreach m, $(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))),$($(m:.o=-objs))…
82 real-objs-y := $(addprefix $(obj)/,$(real-objs-y))
83 real-objs-m := $(addprefix $(obj)/,$(real-objs-m))
/linux-4.4.14/lib/
Dtest-hexdump.c49 char real[32 * 3 + 2 + 32 + 1]; in test_hexdump() local
56 hex_dump_to_buffer(data_b, l, rs, gs, real, sizeof(real), ascii); in test_hexdump()
99 if (strcmp(test, real)) { in test_hexdump()
101 pr_err("Result: '%s'\n", real); in test_hexdump()
DKconfig.kmemcheck82 thrown away afterwards. This may of course also hide some real
92 This may also hide some real bugs.
/linux-4.4.14/kernel/time/
Dposix-timers.c360 struct hrtimer *timer = &timr->it.real.timer; in schedule_next_timer()
362 if (timr->it.real.interval.tv64 == 0) in schedule_next_timer()
367 timr->it.real.interval); in schedule_next_timer()
449 timr = container_of(timer, struct k_itimer, it.real.timer); in posix_timer_fn()
452 if (timr->it.real.interval.tv64 != 0) in posix_timer_fn()
461 if (timr->it.real.interval.tv64 != 0) { in posix_timer_fn()
490 if (timr->it.real.interval.tv64 < kj.tv64) in posix_timer_fn()
496 timr->it.real.interval); in posix_timer_fn()
596 hrtimer_init(&new_timer->it.real.timer, new_timer->it_clock, 0); in common_timer_create()
739 struct hrtimer *timer = &timr->it.real.timer; in common_timer_get()
[all …]
DKconfig174 real-time workloads that at present do not tend to be run on
/linux-4.4.14/drivers/parport/
Ddaisy.c74 static struct parport *clone_parport(struct parport *real, int muxport) in clone_parport() argument
76 struct parport *extra = parport_register_port(real->base, in clone_parport()
77 real->irq, in clone_parport()
78 real->dma, in clone_parport()
79 real->ops); in clone_parport()
81 extra->portnum = real->portnum; in clone_parport()
82 extra->physport = real; in clone_parport()
84 real->slaves[muxport-1] = extra; in clone_parport()
/linux-4.4.14/drivers/md/persistent-data/
Ddm-transaction-manager.c90 struct dm_transaction_manager *real; member
171 tm->real = NULL; in dm_tm_create()
184 struct dm_transaction_manager *dm_tm_create_non_blocking_clone(struct dm_transaction_manager *real) in dm_tm_create_non_blocking_clone() argument
191 tm->real = real; in dm_tm_create_non_blocking_clone()
333 int r = dm_bm_read_try_lock(tm->real->bm, b, v, blk); in dm_tm_read_lock()
336 prefetch_add(&tm->real->prefetches, b); in dm_tm_read_lock()
Ddm-transaction-manager.h36 struct dm_transaction_manager *dm_tm_create_non_blocking_clone(struct dm_transaction_manager *real);
/linux-4.4.14/Documentation/parisc/
Ddebugging7 A lot of the assembly code currently runs in real mode, which means
16 When real-mode code tries to access non-existent memory, you'll get
20 the I/O range); the System Responder address is the address real-mode
25 get translated to a physical address before real-mode code tried to
D00-INDEX4 - some debugging hints for real-mode code
Dregisters61 C (code address translation) 1, 0 while executing real-mode code
70 D (Data address translation) 1, 0 while executing real-mode code
/linux-4.4.14/tools/testing/ktest/examples/
DREADME6 The configs are based off of real working configs but have been modified
17 used to perform real testing.
26 included into other configs. This is a real use example that shows how
/linux-4.4.14/fs/
Dcompat.c760 struct nfs4_mount_data *real = raw_data; in do_nfs4_super_data_conv() local
763 real->auth_flavours = compat_ptr(raw->auth_flavours); in do_nfs4_super_data_conv()
764 real->auth_flavourlen = raw->auth_flavourlen; in do_nfs4_super_data_conv()
765 real->proto = raw->proto; in do_nfs4_super_data_conv()
766 real->host_addr = compat_ptr(raw->host_addr); in do_nfs4_super_data_conv()
767 real->host_addrlen = raw->host_addrlen; in do_nfs4_super_data_conv()
768 compat_nfs_string(&real->hostname, &raw->hostname); in do_nfs4_super_data_conv()
769 compat_nfs_string(&real->mnt_path, &raw->mnt_path); in do_nfs4_super_data_conv()
770 compat_nfs_string(&real->client_addr, &raw->client_addr); in do_nfs4_super_data_conv()
771 real->acdirmax = raw->acdirmax; in do_nfs4_super_data_conv()
[all …]
/linux-4.4.14/Documentation/scheduler/
Dsched-deadline.txt64 with the "traditional" real-time task model (see Section 3) can effectively
102 said to be "throttled" (also known as "depleted" in real-time literature)
130 suited for periodic or sporadic real-time tasks that need guarantees on their
136 A typical real-time task is composed of a repetition of computation phases
144 A real-time task can be periodic with period P if r_{j+1} = r_j + P, or
147 Summing up, a real-time task can be described as
150 The utilization of a real-time task is defined as the ratio between its
158 WCET_i/P_i over all the real-time tasks in the system. When considering
159 multiple real-time tasks, the parameters of the i-th task are indicated
162 non- real-time tasks by real-time tasks.
[all …]
D00-INDEX14 - real-time group scheduling.
Dsched-design-CFS.txt14 an "ideal, precise multi-tasking CPU" on real hardware.
21 On real hardware, we can run only a single task at once, so we have to
210 CONFIG_RT_GROUP_SCHED permits to group real-time (i.e., SCHED_FIFO and
Dsched-rt-group.txt33 are real-time processes).
129 Enabling CONFIG_RT_GROUP_SCHED lets you explicitly allocate real
/linux-4.4.14/arch/x86/oprofile/
Dop_model_p4.c618 unsigned long ctr, low, high, stag, real; in p4_check_ctrs() local
645 real = VIRT_CTR(stag, i); in p4_check_ctrs()
647 rdmsr(p4_counters[real].cccr_address, low, high); in p4_check_ctrs()
648 rdmsr(p4_counters[real].counter_address, ctr, high); in p4_check_ctrs()
651 wrmsrl(p4_counters[real].counter_address, in p4_check_ctrs()
654 wrmsr(p4_counters[real].cccr_address, low, high); in p4_check_ctrs()
655 wrmsrl(p4_counters[real].counter_address, in p4_check_ctrs()
/linux-4.4.14/arch/powerpc/boot/dts/
Diss4xx-mpic.dts36 model = "PowerPC,4xx"; // real CPU changed in sim
50 model = "PowerPC,4xx"; // real CPU changed in sim
66 model = "PowerPC,4xx"; // real CPU changed in sim
82 model = "PowerPC,4xx"; // real CPU changed in sim
Dcurrituck.dts153 * The real slot is on idsel 0, so the swizzling is 1:1
190 * The real slot is on idsel 0, so the swizzling is 1:1
227 * The real slot is on idsel 0, so the swizzling is 1:1
Dakebono.dts281 * The real slot is on idsel 0, so the swizzling is 1:1
321 * The real slot is on idsel 0, so the swizzling is 1:1
361 * The real slot is on idsel 0, so the swizzling is 1:1
401 * The real slot is on idsel 0, so the swizzling is 1:1
Dredwood.dts269 * The real slot is on idsel 0, so the swizzling is 1:1
310 * The real slot is on idsel 0, so the swizzling is 1:1
351 * The real slot is on idsel 0, so the swizzling is 1:1
Diss4xx.dts34 model = "PowerPC,4xx"; // real CPU changed in sim
Dkatmai.dts353 * The real slot is on idsel 0, so the swizzling is 1:1
394 * The real slot is on idsel 0, so the swizzling is 1:1
435 * The real slot is on idsel 0, so the swizzling is 1:1
Dmakalu.dts302 * The real slot is on idsel 0, so the swizzling is 1:1
343 * The real slot is on idsel 0, so the swizzling is 1:1
Dicon.dts349 * The real slot is on idsel 0, so the swizzling is 1:1
390 * The real slot is on idsel 0, so the swizzling is 1:1
Dkilauea.dts356 * The real slot is on idsel 0, so the swizzling is 1:1
397 * The real slot is on idsel 0, so the swizzling is 1:1
Dcanyonlands.dts487 * The real slot is on idsel 0, so the swizzling is 1:1
529 * The real slot is on idsel 0, so the swizzling is 1:1
Dglacier.dts524 * The real slot is on idsel 0, so the swizzling is 1:1
566 * The real slot is on idsel 0, so the swizzling is 1:1
Dhaleakala.dts271 * The real slot is on idsel 0, so the swizzling is 1:1
/linux-4.4.14/drivers/gpu/host1x/
Dsyncpt.h75 static inline bool host1x_syncpt_check_max(struct host1x_syncpt *sp, u32 real) in host1x_syncpt_check_max() argument
81 return (s32)(max - real) >= 0; in host1x_syncpt_check_max()
/linux-4.4.14/fs/overlayfs/
Dsuper.c281 struct dentry *real; in ovl_d_real() local
289 real = ovl_dentry_upper(dentry); in ovl_d_real()
290 if (real && (!inode || inode == d_inode(real))) in ovl_d_real()
291 return real; in ovl_d_real()
293 real = ovl_dentry_lower(dentry); in ovl_d_real()
294 if (!real) in ovl_d_real()
297 if (!inode || inode == d_inode(real)) in ovl_d_real()
298 return real; in ovl_d_real()
301 if (real->d_flags & DCACHE_OP_REAL) in ovl_d_real()
302 return real->d_op->d_real(real, inode); in ovl_d_real()
/linux-4.4.14/Documentation/x86/
Dboot.txt9 real-mode DOS as a mainstream operating system.
74 | Stack/heap | For use by the kernel real-mode code.
76 | Kernel setup | The kernel real-mode code.
93 0x100000 ("high memory"), and the kernel real-mode block (boot sector,
126 | Stack/heap | For use by the kernel real-mode code.
128 | Kernel setup | The kernel real-mode code.
151 real-mode code (boot sector and setup code) and then examine the
152 following header at offset 0x01f1. The real-mode code can total up to
202 real value is 4.
244 0, the real value is 4. The real-mode code consists of the boot
[all …]
Dusb-legacy-support.txt15 mouse is present and a real PS/2 mouse is present. In that case the extra
16 features (wheel, extra buttons, touchpad mode) of the real PS/2 mouse may
Dkernel-stacks115 mark, knowing that it's part of the real backtrace.
127 This way we will always print out the real call chain (plus a few more
136 we still print out the real call chain as well - just with more question
Dzero-page.txt3 real-mode setup code of the kernel. References/settings to it mainly
/linux-4.4.14/drivers/md/
Ddm-cache-policy.c150 if (t->real) in dm_cache_policy_get_name()
151 return t->real->name; in dm_cache_policy_get_name()
Ddm-cache-policy.h245 struct dm_cache_policy_type *real; member
/linux-4.4.14/Documentation/devicetree/bindings/usb/
Dgeneric.txt17 property is used if any real OTG features(HNP/SRP/ADP)
21 is the basic function of real OTG except you want it
/linux-4.4.14/arch/blackfin/include/asm/
Dirqflags.h161 static inline notrace unsigned long arch_mangle_irq_bits(int virt, unsigned long real) in arch_mangle_irq_bits() argument
167 return (real & ~(1 << 31)) | ((virt != 0) << 31); in arch_mangle_irq_bits()
/linux-4.4.14/Documentation/hwmon/
Dltc426039 real voltage by multiplying the reported value with (R1+R2)/R2, where R1 is the
45 is installed. If a different sense resistor is installed, calculate the real
Dltc426139 real voltage by multiplying the reported value with (R1+R2)/R2, where R1 is the
45 is installed. If a different sense resistor is installed, calculate the real
Dltc294539 real voltage by multiplying the reported value with (R1+R2)/R2, where R1 is the
45 is installed. If a different sense resistor is installed, calculate the real
Dlm7034 As a real (in-tree) example of this "SPI protocol driver" interfacing
Dadm102195 2003) microarchitecture had real MAX1617, ADM1021, or compatible chips
Dsubmitting-patches20 warning helps hiding a real problem. If you don't like the kernel coding
/linux-4.4.14/drivers/staging/media/omap4iss/
DTODO2 * Replace dummy resizer code with a real implementation
/linux-4.4.14/Documentation/device-mapper/
Dsnapshot.txt91 volumeGroup-base-real: 0 2097152 linear 8:19 384
97 brw------- 1 root root 254, 11 29 ago 18:15 /dev/mapper/volumeGroup-base-real
107 "snapshot-merge". The "-real" device is not changed and the "-cow"
121 volumeGroup-base-real: 0 2097152 linear 8:19 384
126 brw------- 1 root root 254, 11 29 ago 18:15 /dev/mapper/volumeGroup-base-real
Dzero.txt27 the COW device. The size of the COW device will determine the amount of real
/linux-4.4.14/Documentation/devicetree/bindings/rtc/
Drtc-opal.txt1 IBM OPAL real-time clock
Dmoxa,moxart-rtc.txt1 MOXA ART real-time clock
Dnxp,lpc1788-rtc.txt1 NXP LPC1788 real-time clock
Dnvidia,tegra20-rtc.txt1 NVIDIA Tegra20 real-time clock
/linux-4.4.14/arch/x86/boot/
Dcode16gcc.h8 # gcc 4.9+ has a real -m16 option so we can drop this hack long term.
/linux-4.4.14/drivers/gpu/drm/cirrus/
DKconfig12 It is *NOT* intended for real cirrus devices. This requires
/linux-4.4.14/Documentation/
Dinitrd.txt38 6) init mounts the "real" root file system
198 and proceeds with starting the Linux system on the "real" root device.
266 2) /sbin/init determines what is needed to (1) mount the "real" root FS
316 It works by mounting the "real" root device (i.e. the one set with rdev
324 the real root file system, not the initrd environment.)
326 If /proc is mounted, the "real" root device can be changed from within
328 file /proc/sys/kernel/real-root-dev, e.g.
330 # echo 0x301 >/proc/sys/kernel/real-root-dev
349 echo 0x0100 >/proc/sys/kernel/real-root-dev
355 the cmdline) before the final execution of the real /sbin/init.
Dbus-virt-phys-mapping.txt18 Essentially, the three ways of addressing memory are (this is "real memory",
43 0-2 GB "real memory"
128 only talks about "real memory", that is, CPU memory (RAM).
139 conceptually in the same memory space as "real memory" at all, so you cannot
195 And the above sounds worse than it really is. Most real drivers really
Dbasic_profiling.txt2 go read the real docs ;-) Please don't add more stuff, but feel free to
Dmen-chameleon-bus.txt64 A carrier device is just an abstraction for the real world physical bus the
67 device). To provide abstraction from the real hardware bus, an MCB carrier
Dirqflags-tracing.txt32 closely guards whether the 'real' irq-flags matches the 'virtual'
Dsysfs-rules.txt51 - all elements of a devpath must be real directories. Symlinks
52 pointing to /sys/devices must always be resolved to their real
150 real child device directories in the /sys/devices tree is a bug in
Dstable_kernel_rules.txt9 - It must fix a real bug that bothers people (not a, "This could be a
12 marked CONFIG_BROKEN), an oops, a hang, data corruption, a real
Dkmemleak.txt161 The false negatives are real memory leaks (orphan objects) but not
190 number of false negatives. However, it is likely that a real memory leak
Dserial-console.txt56 1. Create /dev/console (real console) and /dev/tty0 (master virtual
Dkmemcheck.txt32 as memcheck, but it turns out to be good enough in practice to discover real
171 some real errors, but disabling it would probably produce a lot of
178 may also hide some real bugs.
651 ability to find (real) errors in other parts of the same struct.
700 to figure out if it's a real error or not, or simply ignore it. Most
Dvfio.txt306 faster, the map/unmap handling has been implemented in real mode which provides
308 locked pages accounting in real time.
325 the DMA window is and adjust rlimit before doing any real job.
/linux-4.4.14/firmware/dsp56k/
Dbootstrap.asm52 move #real,r0
62 real label
/linux-4.4.14/arch/m68k/fpsp040/
Dx_operr.S285 | to d0 for write out. If not, it is a real operr, and set d0.
295 movel #1,%d0 |signal real operr
298 clrl %d0 |signal no real operr
324 | real inex handler.
Dx_fline.S10 | must be a real F-line exception.
Dfpsp.h58 | label to a routine that will process a real exception of the
341 .set FLINE_VEC,0x002C | real F-line
Dx_unfl.S83 | real inex handler.
/linux-4.4.14/Documentation/networking/
Dipvs-sysctl.txt32 connection will be delivered to the same real server that was
44 real servers to a very busy cluster.
116 before forwarding them to real servers. If the rate is 1, then
168 ipvs routing loops when ipvs is also acting as a real server).
175 for VS/NAT when the load balancer receives packets from real
Dalias.txt33 Aliases are not real devices, but programs should be able to configure and
Dieee802154.txt107 In addition there is a driver available which simulates a real device with
109 provides possibility to test and debug stack without usage of real hardware.
Dipsec.txt3 deploy various IPsec configuration in real world production environment.
Dtuntap.txt69 Note that the character pointer becomes overwritten with the real device name
212 the kernel handles the packet like it came from real physical device.
Dx25-iface.txt15 All messages are held in sk_buff's just like real data to be transmitted
Doperstates.txt92 real hardware, it is possible to set this bit from userspace. One
/linux-4.4.14/drivers/rtc/
DKconfig181 families of ultra-low-power battery- and capacitor-backed real-time
219 DS1374 real-time clock chips. If an interrupt is associated
231 real-time clock chips.
246 DS3232 real-time clock chips. If an interrupt is associated
643 and DS1306 real time clock chips. These support a trickle
654 Dallas/Maxim DS1343 and DS1344 real time clock chips.
758 Say "yes" here to get direct support for the real time clock
777 Direct support for the real-time clock found on every Alpha
786 Say "yes" here to get direct support for the real time clock
788 derives its clock source from a real RTC in the PMIC. The MC146818
[all …]
/linux-4.4.14/drivers/pci/pcie/aer/
DKconfig.debug14 to trigger various real hardware errors. Software based
/linux-4.4.14/drivers/media/pci/cobalt/
DKconfig16 very useful as an example of a real driver that uses all the
/linux-4.4.14/fs/qnx4/
DKconfig5 This is the file system used by the real-time operating systems
/linux-4.4.14/drivers/staging/iio/trigger/
DKconfig12 Provides support for using periodic capable real time
/linux-4.4.14/Documentation/usb/
Diuu_phoenix.txt14 I never had any problem with it, but I'm not a real
54 the real clock will be now : 6979050 Hz ( 6Mhz979 ) and will increase
Ddwc3.txt15 interrupt chip can be replaced with "real" interrupts.
Dfunctionfs.txt25 a single endpoint. Again, FunctionFS takes care of the real
Dauthorization.txt87 Of course, this is lame, you'd want to do a real certificate
/linux-4.4.14/drivers/media/rc/keymaps/
DMakefile76 rc-powercolor-real-angel.o \
82 rc-real-audio-220-32-keys.o \
/linux-4.4.14/Documentation/video4linux/
Dsh_mobile_ceu_camera.txt39 In the above chart minuses and slashes represent "real" data amounts, points and
80 4. Calculate sensor output window by applying combined scales to real input
/linux-4.4.14/arch/arm/mach-s3c24xx/
Dsleep-s3c2410.S59 teq r0, r0 @ now do it for real
/linux-4.4.14/Documentation/networking/mac80211_hwsim/
DREADME15 the normal case of using real WLAN hardware. From the mac80211 view
22 of real hardware, so it is easy to generate an arbitrary test setup
/linux-4.4.14/fs/qnx6/
DKconfig5 This is the file system used by the real-time operating systems
/linux-4.4.14/drivers/media/platform/vivid/
DKconfig19 to reproduce in real hardware.
/linux-4.4.14/Documentation/misc-devices/
Dics932s40118 multiplied to get the real CPU clock), a system clock, a PCI clock, a USB
/linux-4.4.14/include/asm-generic/
Dpage.h9 #error need to prove a real asm/page.h
/linux-4.4.14/Documentation/ABI/testing/
Dsysfs-devices-real_power_state10 If present, it contains a string representing the real ACPI
Dsysfs-driver-hid-logitech-lg4ff49 Description: Displays the real model of the wheel regardless of any
Dsysfs-driver-hid-roccat-kone8 processed to receive the real dpi value.
33 further usage in other programs. To receive the real version
/linux-4.4.14/Documentation/security/
DSELinux.txt16 SELinux enabled and a real policy. If
Dcredentials.txt92 from the real UID and GID that normally form the objective context of the
163 EUID/EGID/GROUPS will be used as the subjective context, and real UID/GID
346 uid_t current_uid(void) Current's real UID
347 gid_t current_gid(void) Current's real GID
426 uid_t task_uid(task) Task's real UID
/linux-4.4.14/Documentation/input/
Dntrig.txt78 of events the more likely those events are from a real contact, and that the
79 larger the size of each contact the more likely it is real. Balancing the
80 goals of preventing ghosts and accepting real events quickly (to minimize
Djoystick-api.txt56 If you choose not to differentiate between synthetic or real events
140 necessarily a "real" error (check errno(3)); it can just mean there
/linux-4.4.14/arch/metag/
DKconfig.debug20 bool "Output Meta real-time trace data for function entry/exit"
/linux-4.4.14/Documentation/accounting/
Ddelay-accounting.txt94 CPU count real total virtual total delay total
110 CPU count real total virtual total delay total
/linux-4.4.14/Documentation/PCI/
Dpci-iov-howto.txt24 real existing PCI device.
49 should be able to work in the same way as real PCI devices. The VF
/linux-4.4.14/arch/frv/mm/
Dtlb-miss.S303 # - punt the entry here (if valid) to the real TLB and then replace with the new PTE
430 # - punt the entry here (if valid) to the real TLB and then replace with the new PTE
550 # - punt the entry here (if valid) to the real TLB and then replace with the new PTE
/linux-4.4.14/net/netfilter/ipvs/
DKconfig10 virtual server based on cluster of two or more real servers. This
13 single IP address and scheduling them to real servers.
117 connections to different real servers in a round-robin manner.
126 connections to different real servers based on server weights
279 the IP address and port number of real servers cannot be sent to
/linux-4.4.14/Documentation/timers/
DNO_HZ.txt8 applications and for real-time applications.
56 In addition, if you are running either a real-time workload or an HPC
86 Therefore, systems with aggressive real-time response constraints often
110 for applications with aggressive real-time response constraints because
174 This might in turn perturb load-balancing of real-time tasks.
179 useful for many types of real-time and compute-intensive applications.
259 aggressive real-time workloads, which have the option of disabling
Dhrtimers.txt122 1:1 mapping between them on the algorithmical level, and thus no real
145 the clock_getres() interface. This will return whatever real resolution
Dtimekeeping.txt35 shall be as stable and correct as possible as compared to a real-world wall
69 For real simple clock sources accessed from a single I/O memory location
/linux-4.4.14/net/decnet/
DTODO15 o Lots of testing with real applications
/linux-4.4.14/arch/arm/boot/dts/
Dvf-colibri-eval-v3.dtsi88 /* M41T0M6 real time clock on carrier board */
Dtegra30-colibri-eval-v3.dts56 /* M41T0M6 real time clock on carrier board */
Ddm816x.dtsi55 * The real dm816x interconnect network is quite complex. Since
56 * it will not bring real advantage to represent that in DT
Dbcm5301x.dtsi99 /* As long as we do not have a real clock driver us this
Dtegra30-apalis-eval.dts84 /* M41T0M6 real time clock on carrier board */
Ddove-cm-a510.dtsi91 * bootloader set the real size.
Dexynos4210-origen.dts251 * HACK: The real name is VDD_ARM_1.2V,
Domap3.dtsi76 * The real OMAP interconnect network is quite complex.
77 * Since it will not bring real advantage to represent that in DT for
/linux-4.4.14/include/linux/
Dposix-timers.h83 } real; member
/linux-4.4.14/Documentation/devicetree/bindings/mfd/
Dmax8998.txt4 regulators, real time clock, battery charging controller and several
13 In addition, it includes a real time clock and battery charging controller
/linux-4.4.14/Documentation/sound/oss/
DESS16 little testprogram that shows that is works, haven't seen a real program that
/linux-4.4.14/Documentation/ABI/stable/
Dvdso4 to real syscalls.
/linux-4.4.14/Documentation/devicetree/bindings/bus/
Dsimple-pm-bus.txt4 A Simple Power-Managed Bus is a transparent bus that doesn't need a real
/linux-4.4.14/arch/unicore32/
DKconfig.debug30 # These options are only for real kernel hackers who want to get their hands dirty.
/linux-4.4.14/Documentation/devicetree/bindings/
Dchosen.txt4 The chosen node does not represent a real device, but serves as a place
/linux-4.4.14/scripts/coccinelle/iterators/
Ditnull.cocci2 /// to a real list element, never NULL.
/linux-4.4.14/Documentation/thermal/
Dexynos_thermal_emulation24 changing temperature. However, this node only uses same delay of real sensing time, 938us.)
/linux-4.4.14/Documentation/devicetree/bindings/input/
Dti,drv260x.txt13 sequence during init. And the device is configured for real
/linux-4.4.14/drivers/gpu/drm/i915/
Di915_gem_userptr.c374 __i915_mm_struct_find(struct drm_i915_private *dev_priv, struct mm_struct *real) in __i915_mm_struct_find() argument
379 hash_for_each_possible(dev_priv->mm_structs, mm, node, (unsigned long)real) in __i915_mm_struct_find()
380 if (mm->mm == real) in __i915_mm_struct_find()
/linux-4.4.14/drivers/fmc/
DKconfig32 The driver also handles interrupts (we used it with a real carrier
/linux-4.4.14/Documentation/i2c/
Dold-module-parameters42 other drivers from binding to it later on. If there is a real device at the
Dfunctionality50 emulated by a real I2C adapter (using
/linux-4.4.14/arch/powerpc/kvm/
DKconfig114 bool "Detailed timing for hypervisor real-mode code"
117 Calculate time taken for each vcpu in the real-mode guest entry,
/linux-4.4.14/arch/x86/math-emu/
DREADME35 with measurements on real 80486's. Unfortunately, it is simply not
38 in the detailed behaviour of the emulator and a real 80486.
121 If all of these apply, the emulator will set the Underflow flag but a real
147 acceptable (and work) in real mode. A small test program developed to
148 check the addressing, and which runs successfully in real mode,
426 a real 80486.
/linux-4.4.14/drivers/net/wireless/ath/ath6kl/
DKconfig7 bus drivers for USB and SDIO to be able to use real devices.
/linux-4.4.14/fs/jffs2/
DTODO12 - make the scan code populate real inodes so read_inode just after
/linux-4.4.14/Documentation/auxdisplay/
Dcfag12864b105 for a real working userspace complete program with usage examples.
/linux-4.4.14/Documentation/virtual/kvm/
Dtimekeeping.txt182 The second device which was available in the original PC was the MC146818 real
466 at any time. This causes problems as the passage of real time, the injection
468 synchronized with real time.
489 'wall clock' or 'real time' may not need any adjustment of their interrupts to
574 distributed, but in contrived as well as real scenarios (guest device access,
586 misinterpretation of the passage of real time. Usually, these warnings are
596 adequately virtualized without a full real-time operating system, which would
611 real time any longer. This may be useful in certain security or QA contexts,
612 but in general isn't recommended for real-world deployment scenarios.
/linux-4.4.14/Documentation/power/
Dstates.txt46 This state, if supported, offers moderate, though real, power savings, while
108 system. However, entering a real low-power state allows the user to
Dinterface.txt74 CAUTION: Using it will cause your machine's real-time (CMOS) clock to be
/linux-4.4.14/drivers/media/dvb-frontends/
Dstb0899_drv.c946 res = tab[min].real; in stb0899_table_lookup()
948 res = tab[max].real; in stb0899_table_lookup()
958 (tab[max].real - tab[min].real) / in stb0899_table_lookup()
960 tab[min].real; in stb0899_table_lookup()
Dstv090x_priv.h229 s32 real; member
Dstb0899_priv.h143 s32 real; member
Dstv090x.c3632 (tab[max].real - tab[min].real) / in stv090x_table_lookup()
3634 tab[min].real; in stv090x_table_lookup()
3638 res = tab[min].real; in stv090x_table_lookup()
3640 res = tab[max].real; in stv090x_table_lookup()
3643 res = tab[min].real; in stv090x_table_lookup()
3645 res = tab[max].real; in stv090x_table_lookup()
/linux-4.4.14/Documentation/dvb/
Dudev.txt32 like you know them. All real distributions out there scan the /etc/udev/rules.d
/linux-4.4.14/drivers/staging/gs_fpgaboot/
DREADME48 This is a real gain :)
/linux-4.4.14/init/
DKconfig484 thousands of CPUs, but for which real-time response
495 designed for UP systems from which real-time response
651 Say Y here if you are working with real-time apps or heavy loads
665 real-time application that has one or more CPU-bound threads
666 running at a real-time priority level, you should set
668 real-time CPU-bound application thread. The default RCU_KTHREAD_PRIO
669 value of 1 is appropriate in the common case, which is real-time
672 Some real-time applications might not have a single real-time
674 multiple real-time threads that, taken together, fully utilize
677 conspiring to prevent the CPU from running any non-real-time
[all …]
/linux-4.4.14/Documentation/laptops/
Dsony-laptop.txt34 to get real brightness value
100 (3) SN06 and SN07 are used to call into the real methods based on
/linux-4.4.14/Documentation/devicetree/bindings/i2c/
Dtrivial-devices.txt92 sii,s35390a 2-wire CMOS real-time clock
96 stm,m41t62 Serial real-time clock (RTC) with alarm
/linux-4.4.14/Documentation/RCU/
Dstallwarn.txt91 This is rare, but does happen from time to time in real life. It is also
220 o A CPU-bound real-time task in a CONFIG_PREEMPT kernel, which might
229 o A CPU-bound real-time task in a CONFIG_PREEMPT_RT kernel that
246 at least once in real life. A CPU failed in a running system,
Dchecklist.txt23 Yet another exception is where the low real-time latency of RCU's
182 and unfriendly to real-time workloads. Use of the expedited
184 operations that would not normally be undertaken while a real-time
193 of the system, especially to real-time workloads running on
324 in real-time kernel builds.
Dlockdep-splat.txt12 being the real world and all that.
/linux-4.4.14/arch/arm/kernel/
Dentry-ftrace.S235 mov lr, r0 @ r0 has real ret addr
Dentry-common.S234 mov why, #0 @ no longer a real syscall
/linux-4.4.14/drivers/staging/wilc1000/
DKconfig25 bool "Dynamically allocate memory in real time"
/linux-4.4.14/Documentation/devicetree/bindings/power/
Drenesas,sysc-rmobile.txt34 The nodes should be named by the real power area names, and thus their names
/linux-4.4.14/include/uapi/sound/
Dcompress_params.h321 struct snd_enc_real real; member
/linux-4.4.14/Documentation/ABI/obsolete/
Dsysfs-driver-hid-roccat-pyra8 processed to receive the real dpi value.
33 further usage in other programs. To receive the real version
Dsysfs-driver-hid-roccat-kovaplus47 further usage in other programs. To receive the real version
/linux-4.4.14/tools/testing/selftests/rcutorture/doc/
Dinitrd.txt37 # Note that this only becomes /dev on the real filesystem if udev's scripts
/linux-4.4.14/Documentation/arm/
Dmem_alignment23 real bad - it changes the behaviour of all unaligned instructions in user
/linux-4.4.14/Documentation/kbuild/
DKconfig.recursion-issue-0241 # For an example real world scenario issue refer to the attempt to remove
/linux-4.4.14/Documentation/fb/
Dudlfb.txt44 * Fbdev's mmap interface assumes a real hardware framebuffer is mapped.
75 xf86-video-fbdev X server. These servers have no real DisplayLink specific
Ddeferred_io.txt20 the real work talking to the device.
/linux-4.4.14/Documentation/development-process/
D3.Early-stage15 example. In others, though, it is tempting to confuse the real problem
152 who have no real interest in the code you are modifying.
196 considering whether the secrecy is really necessary; there is often no real
/linux-4.4.14/Documentation/s390/
Dzfcpdump.txt26 hardware interface. The second part is just copied from the non overwritten real
DDASD64 real partition table.
/linux-4.4.14/Documentation/filesystems/
Ddnotify.txt33 Preferably the application will choose one of the real time signals
Dxfs.txt154 Use an external log (metadata journal) and/or real-time device.
156 section, and a real-time section. The real-time section is
Dinotify.txt77 interfaces. The only real difference was whether we wanted to use open(2)
/linux-4.4.14/drivers/char/
DKconfig255 memory in the real time clock (RTC), which is contained in every PC
287 will get access to the real time clock (or hardware clock) built
313 will get access to the real time clock (or hardware clock) built
335 will get access to the real time clock (or hardware clock) built
364 will get access to the real time clock (or hardware clock) built
/linux-4.4.14/Documentation/spi/
Dbutterfly21 easily with a "real SPI controller", instead of this bitbanger.
/linux-4.4.14/Documentation/watchdog/
Dwatchdog-api.txt90 representing the timeout in seconds. The driver returns the real
172 real world applications include external monitoring pins that will trigger
/linux-4.4.14/Documentation/isdn/
DREADME.x25123 However, x25dte or x25dce is currently not supported by any real HL
169 There are currently no real X.25 applications available. However, for
DREADME112 The real packet-size may be limited by the
363 real MSN e.g.: Phone-Number)
431 If the real number for the dialout e.g. is "09311234567" the number
548 want. InterfaceName must be a real interface, NOT a slave. Slave interfaces
570 real MSN's (more digits) also, in which case the mapping will be ignored.
/linux-4.4.14/drivers/s390/net/
DKconfig21 This device driver supports real CTC coupling using ESCON.
/linux-4.4.14/Documentation/devicetree/bindings/display/
Dsimple-framebuffer.txt14 real hardware. The bindings for the hw nodes must specify which node is
/linux-4.4.14/Documentation/gpio/
Ddriver.txt228 in mind and does the proper testing to assure they are real time-enabled.
230 The following is a checklist to follow when preparing a driver for real
245 - Test your driver with the appropriate in-kernel real time test cases for both
Dboard.txt7 gpio-legacy.txt (actually, there is no real mapping possible with the old
/linux-4.4.14/drivers/bus/
DKconfig115 Driver for transparent busses that don't need a real driver, but
/linux-4.4.14/Documentation/block/
Dwriteback_cache_control.txt56 to be implemented for bios with the REQ_FLUSH bit set. For real device
/linux-4.4.14/Documentation/fmc/
Dfmc-write-eeprom.txt43 This is a real example: that writes 5 bytes at position 0x110:
/linux-4.4.14/Documentation/sound/alsa/
Dserial-u16550.txt81 but no units to experiment with. The MS-124W support is tested with a real unit.
/linux-4.4.14/Documentation/x86/i386/
DIO-APIC.txt71 These INTA-D PCI IRQs are always 'local to the card', their real meaning
/linux-4.4.14/arch/powerpc/
DKconfig.debug192 bool "Maple real mode"
198 bool "PA Semi real mode"
/linux-4.4.14/Documentation/sh/
Dnew-machine.txt129 * If our hardware actually existed, we would do real
131 * if there's no real init work that has to be done for
/linux-4.4.14/security/
DKconfig91 Intel TXT also helps solve real end user concerns about having
/linux-4.4.14/Documentation/filesystems/nfs/
Dnfsroot.txt48 real device but just a synonym to tell the kernel to use NFS instead of
49 a real device.
/linux-4.4.14/arch/unicore32/kernel/
Dentry.S378 @ if we are to treat this as a real extended instruction
634 2: mov why, #0 @ no longer a real syscall
/linux-4.4.14/Documentation/ioctl/
Dbotching-up-ioctls.txt52 fumbles. Neglecting these will make backward and forward compatibility a real
192 as unique identifiers - it's how real files are told apart, too.
/linux-4.4.14/Documentation/devicetree/bindings/iommu/
Diommu.txt62 Note that these are merely examples and real-world use-cases may use different

12