Home
last modified time | relevance | path

Searched refs:machines (Results 1 – 200 of 248) sorted by relevance

12

/linux-4.1.27/tools/perf/util/
Dmachine.h93 struct machines { struct
99 void machines__init(struct machines *machines); argument
100 void machines__exit(struct machines *machines);
102 void machines__process_guests(struct machines *machines,
105 struct machine *machines__add(struct machines *machines, pid_t pid,
107 struct machine *machines__find_host(struct machines *machines);
108 struct machine *machines__find(struct machines *machines, pid_t pid);
109 struct machine *machines__findnew(struct machines *machines, pid_t pid);
111 void machines__set_id_hdr_size(struct machines *machines, u16 id_hdr_size);
114 void machines__set_symbol_filter(struct machines *machines,
[all …]
Dmachine.c120 void machines__init(struct machines *machines) in machines__init() argument
122 machine__init(&machines->host, "", HOST_KERNEL_ID); in machines__init()
123 machines->guests = RB_ROOT; in machines__init()
124 machines->symbol_filter = NULL; in machines__init()
127 void machines__exit(struct machines *machines) in machines__exit() argument
129 machine__exit(&machines->host); in machines__exit()
133 struct machine *machines__add(struct machines *machines, pid_t pid, in machines__add() argument
136 struct rb_node **p = &machines->guests.rb_node; in machines__add()
148 machine->symbol_filter = machines->symbol_filter; in machines__add()
160 rb_insert_color(&machine->rb_node, &machines->guests); in machines__add()
[all …]
Dsession.h20 struct machines machines; member
76 return machines__find(&session->machines, pid); in perf_session__find_machine()
82 return machines__findnew(&session->machines, pid); in perf_session__findnew_machine()
Dsession.c19 static int machines__deliver_event(struct machines *machines,
59 machines__set_id_hdr_size(&session->machines, id_hdr_size); in perf_session__set_id_hdr_size()
64 int ret = machine__create_kernel_maps(&session->machines.host); in perf_session__create_kernel_maps()
67 ret = machines__create_guest_kernel_maps(&session->machines); in perf_session__create_kernel_maps()
73 machines__destroy_kernel_maps(&session->machines); in perf_session__destroy_kernel_maps()
92 machines__set_comm_exec(&session->machines, comm_exec); in perf_session__set_comm_exec()
108 return machines__deliver_event(&session->machines, session->evlist, event->event, in ordered_events__deliver_event()
122 machines__init(&session->machines); in perf_session__new()
167 machine__delete_threads(&session->machines.host); in perf_session__delete_threads()
191 machines__exit(&session->machines); in perf_session__delete()
[all …]
Dbuild-id.c221 int err = machine__write_buildid_table(&session->machines.host, fd); in perf_session__write_buildid_table()
226 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) { in perf_session__write_buildid_table()
261 err = machine__hit_all_dsos(&session->machines.host); in dsos__hit_all()
265 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) { in dsos__hit_all()
509 ret = machine__cache_build_ids(&session->machines.host); in perf_session__cache_build_ids()
511 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) { in perf_session__cache_build_ids()
530 bool ret = machine__read_build_ids(&session->machines.host, with_hits); in perf_session__read_build_ids()
532 for (nd = rb_first(&session->machines.guests); nd; nd = rb_next(nd)) { in perf_session__read_build_ids()
/linux-4.1.27/tools/perf/tests/
Dthread-mg-share.c9 struct machines machines; in test__thread_mg_share() local
30 machines__init(&machines); in test__thread_mg_share()
31 machine = &machines.host; in test__thread_mg_share()
89 machines__exit(&machines); in test__thread_mg_share()
Ddwarf-unwind.c143 struct machines machines; in test__dwarf_unwind() local
148 machines__init(&machines); in test__dwarf_unwind()
150 machine = machines__find(&machines, HOST_KERNEL_ID); in test__dwarf_unwind()
177 machines__exit(&machines); in test__dwarf_unwind()
Dhists_common.h5 struct machines;
70 struct machine *setup_fake_machine(struct machines *machines);
Dmmap-thread-lookup.c152 struct machines machines; in mmap_events() local
165 machines__init(&machines); in mmap_events()
166 machine = &machines.host; in mmap_events()
204 machines__exit(&machines); in mmap_events()
Dhists_filter.c104 struct machines machines; in test__hists_filter() local
122 machines__init(&machines); in test__hists_filter()
125 machine = setup_fake_machine(&machines); in test__hists_filter()
287 machines__exit(&machines); in test__hists_filter()
Dhists_link.c277 struct machines machines; in test__hists_link() local
296 machines__init(&machines); in test__hists_link()
299 machine = setup_fake_machine(&machines); in test__hists_link()
343 machines__exit(&machines); in test__hists_link()
Dcode-reading.c387 struct machines machines; in do_test_code_reading() local
413 machines__init(&machines); in do_test_code_reading()
414 machine = &machines.host; in do_test_code_reading()
545 machines__destroy_kernel_maps(&machines); in do_test_code_reading()
547 machines__exit(&machines); in do_test_code_reading()
Dhists_cumulate.c684 struct machines machines; in test__hists_cumulate() local
702 machines__init(&machines); in test__hists_cumulate()
705 machine = setup_fake_machine(&machines); in test__hists_cumulate()
723 machines__exit(&machines); in test__hists_cumulate()
Dhists_common.c80 struct machine *setup_fake_machine(struct machines *machines) in setup_fake_machine() argument
82 struct machine *machine = machines__find(machines, HOST_KERNEL_ID); in setup_fake_machine()
Dhists_output.c578 struct machines machines; in test__hists_output() local
597 machines__init(&machines); in test__hists_output()
600 machine = setup_fake_machine(&machines); in test__hists_output()
618 machines__exit(&machines); in test__hists_output()
/linux-4.1.27/Documentation/devicetree/bindings/pinctrl/
Dpinctrl_spear.txt53 For All SPEAr3xx machines:
59 For SPEAr300 machines:
65 For SPEAr310 machines:
69 For SPEAr320 machines:
94 For SPEAr1310 machines:
112 For SPEAr1340 machines:
126 For All SPEAr3xx machines:
130 For SPEAr300 machines:
133 For SPEAr310 machines:
137 For SPEAr320 machines:
[all …]
/linux-4.1.27/sound/soc/intel/common/
Dsst-acpi.c42 struct sst_acpi_mach *machines; member
99 struct sst_acpi_mach *machines) in sst_acpi_find_machine() argument
104 for (mach = machines; mach->id[0]; mach++) in sst_acpi_find_machine()
133 mach = sst_acpi_find_machine(desc->machines); in sst_acpi_probe()
220 .machines = haswell_machines,
238 .machines = broadwell_machines,
257 .machines = baytrail_machines,
/linux-4.1.27/arch/s390/kvm/
DKconfig11 operating systems inside virtual machines (guests).
33 Support hosting paravirtualized guest machines using the SIE
46 bool "Userspace controlled virtual machines"
49 Allow CAP_SYS_ADMIN users to create KVM virtual machines that are
/linux-4.1.27/arch/mips/kernel/
Dvmlinux.lds.S113 .mips.machines.init : AT(ADDR(.mips.machines.init) - LOAD_OFFSET) {
115 *(.mips.machines.init)
/linux-4.1.27/arch/powerpc/kvm/
DKconfig11 other operating systems inside virtual machines (guests).
54 in virtual machines on book3s_32 host processors.
69 in virtual machines on book3s_64 host processors.
84 virtual machines on POWER7 and PPC970 processors that have
102 Support running guest kernels in virtual machines on processors
108 machines where hypervisor mode is not available or not usable,
148 Support running unmodified E500 guest kernels in virtual machines on
165 virtual machines on E500MC/E5500/E6500 host processors.
/linux-4.1.27/arch/mips/loongson/
DKconfig34 bool "Lemote Loongson 2F family machines"
57 Lemote Loongson 2F family machines utilize the 2F revision of
60 These family machines include fuloong2f mini PC, yeeloong2f notebook,
64 bool "Generic Loongson 3 family machines"
91 Generic Loongson 3 family machines utilize the 3A/3B revision
/linux-4.1.27/drivers/parisc/
DKconfig25 generation of PA-RISC cache-coherent machines. Programs the
69 All recent HP machines have PCI slots, and you should say Y here
82 machines from the B132 to the C360, the J2240 and the A180. Some
86 machines. If in doubt, say Y.
93 present on B, C, J, L and N-class machines with 4-digit model
125 J5xxx+ machines. This enables IDE, Floppy, Parallel Port, and
126 Serial port on those machines.
134 Disk/Network activities LEDs on some PA-RISC machines,
/linux-4.1.27/arch/tile/kvm/
DKconfig11 other operating systems inside virtual machines (guests).
26 Support hosting paravirtualized guest machines.
/linux-4.1.27/drivers/net/plip/
DKconfig11 local machines. A PLIP link from a Linux box is a popular means to
14 first). The kernels on both machines need to have this PLIP option
24 15m long. Mode 0 works also if one of the machines runs DOS/Windows
/linux-4.1.27/arch/arm64/kvm/
DKconfig11 other operating systems inside virtual machines (guests).
34 Support hosting virtualized guest machines.
/linux-4.1.27/Documentation/
Ddebugging-via-ohci1394.txt14 Once properly configured, remote machines can send these requests to
26 of physical address space. This can be a problem on IA64 machines where
63 Bernhard Kaindl enhanced firescope to support accessing 64-bit machines
116 If an driver is running on both machines you should see a line like
120 on both machines in the kernel log when the cable is plugged in
121 and connects the two machines.
171 reliably if only connected two machines are connected using FireWire.
Dnumastat.txt26 well right now on machines with a small number of CPUs.
Dgcov.txt9 6. Separated build and test machines
135 6. Separated build and test machines
Dgdb-kernel-debugging.txt9 them. It focuses on QEMU/KVM virtual machines as target, but the examples can
Dsvga.txt10 kernel decompression starts) and works only on 80X86 machines.
228 and then removed due to instability on some machines.
Deisa.txt203 - Catrin Jones for coping with far too many machines at home.
Dcpu-hotplug.txt223 It's said poweroff/reboot may depend on CPU0 on some machines although I haven't
225 machines.
Diostats.txt116 for partitions on 2.6 machines. This is reflected in the examples above.
D00-INDEX25 - DMA API, pci_ API & extensions for non-consistent memory machines.
479 - directory with info on Linux support for AMD x86-64 (Hammer) machines.
Dvfio.txt12 Why do we want that? Virtual machines often make use of direct device
48 things like secure direct assignment of devices into virtual machines.
Drtc.txt38 All PCs (even Alpha machines) have a Real Time Clock built into them.
/linux-4.1.27/block/partitions/
DKconfig29 were partitioned using the Cumana interface on Acorn machines.
42 were partitioned using the ICS interface on Acorn machines.
51 systems and the Acorn Archimedes range of machines. If you say
59 Support reading partition tables created on Acorn machines using
68 of machines called RISCiX. If you say 'Y' here, Linux will be able
75 partition table format used by IBM or Motorola PowerPC machines
215 partition table format used by SGI machines.
222 partition table format used by DEC (now Compaq) Ultrix machines.
260 partition table format used by Motorola Delta machines (using
/linux-4.1.27/arch/arm/kvm/
DKconfig11 other operating systems inside virtual machines (guests).
36 Support hosting virtualized guest machines.
/linux-4.1.27/Documentation/arm/
DREADME82 machines, there should be a corresponding arch/arm/mach-$(MACHINE)/include/mach
92 Therefore, is modularisation on these machines really worth it?
94 However, ARM6 and up machines allow modules to take multiples of 4k, and
154 A change was made in 2003 to the macro names for new machines.
163 <http://www.arm.linux.org.uk/developer/machines/>
171 Due to the large number of machines which the ARM port of Linux provides
198 <http://www.arm.linux.org.uk/developer/machines/>
DSetup67 based machines. May be used differently by different architectures.
71 Default sound setting on Acorn machines. May be used differently by
/linux-4.1.27/drivers/parport/
DKconfig22 machines) etc., then you need to say Y here; please read
98 SGI O2 machines. This code is also available as a module (say M),
107 Amiga machines. This code is also available as a module (say M),
125 Atari machines. This code is also available as a module (say M),
139 found on many Sun machines. Note that many of the newer Ultras
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DOverview.txt30 for all the machines, and the commonly used features on them.
32 Certain machines may have their own default configurations as well,
45 machines that carry the device. For example S3C2410 is contained
71 The currently supported machines are as follows:
125 Two machines by Nex Vision
131 The architecture has been designed to support as many machines as can
146 machines or other modifications.
DSMDK2440.txt18 `make s3c2410_config` to include support for all s3c2410/s3c2440 machines
DSuspend.txt57 and will end up initialising all compiled machines' pm init!
/linux-4.1.27/drivers/tty/hvc/
DKconfig20 pSeries machines when partitioned support a hypervisor virtual
36 PowerNV machines running under OPAL need that driver to get a console
111 Partitionable IBM Power5 ppc64 machines allow hosting of
/linux-4.1.27/arch/powerpc/platforms/chrp/
DKconfig2 bool "Common Hardware Reference Platform (CHRP) based machines"
/linux-4.1.27/Documentation/sound/oss/
DPSS18 "ISA/Legacy" in the BIOS on modern machines.
22 machines and will cause a crash on them.
DREADME.modules80 DMA buffers for ISA cards on machines with more than 16MB RAM. This is
DPAS1690 cards on machines with more than 16MB of RAM. This is because ISA
DREADME.OSS356 works with older machines but causes a hard reset of all cards on recent
357 (Pentium) machines.
366 Some machines have a BIOS utility for setting PnP resources. This is a good
527 on 486 or 386 machines.
544 required. SoftOSS should never be used on machines with less than 16 MB
/linux-4.1.27/lib/fonts/
DKconfig94 This is the high resolution console font for Sun machines. Say Y.
100 This is the high resolution console font for Sun machines with very
108 This is a high resolution console font for machines with very
/linux-4.1.27/sound/aoa/soundbus/
DKconfig6 support on Apple machines.
/linux-4.1.27/Documentation/networking/
Dskfp.txt95 Some COMPAQ machines have a problem with PCI under
186 - Synchronization on SMP machines was buggy
190 - Interrupt routing on SMP machines could be incorrect
216 - does not work on some COMPAQ machines. See the PCI howto
DPLIP.txt71 However, on some machines it is hard, if not impossible, to configure an IRQ
73 On these machines, the PLIP driver can be used in IRQ-less mode, where
117 The second data transfer method relies on both machines having
157 The second data transfer method relies on both machines having
Diphase.txt119 For the PVC setup, the test machines can either be connected back-to-back or
134 This option must be set on both the machines.
D3c509.txt154 3c509B card is not detected on machines with an ISA PnP BIOS.
159 3c509 card is not detected on overclocked machines
/linux-4.1.27/arch/mips/include/asm/
Dmips_machine.h31 __used __section(.mips.machines.init) = \
/linux-4.1.27/arch/s390/
DKconfig217 on older machines.
225 on older machines.
233 on older machines.
241 not work on older machines.
249 older machines.
257 machines.
288 somewhat slower on other machines.
291 all other machines.
353 machines, but will use only one CPU of a multiprocessor machine. If
355 uniprocessor machines. On a uniprocessor machine, the kernel
[all …]
/linux-4.1.27/arch/powerpc/platforms/amigaone/
DKconfig13 Select AmigaOne for the following machines:
/linux-4.1.27/drivers/net/ethernet/i825xx/
DKconfig42 found in Hewlett-Packard PA-RISC machines with 10Mbit ethernet.
58 built into SNI RM machines.
/linux-4.1.27/arch/mips/vr41xx/
DPlatform2 # NEC VR4100 series based machines
/linux-4.1.27/arch/m68k/hp300/
DREADME.hp3006 Currently only 9000/340 machines have been tested. Any amount of RAM should
/linux-4.1.27/arch/x86/kvm/
DKconfig13 operating systems inside virtual machines (guests).
46 Support hosting fully virtualized guest machines using hardware
/linux-4.1.27/arch/powerpc/platforms/powermac/
DKconfig2 bool "Apple PowerMac based machines"
/linux-4.1.27/sound/aoa/codecs/
DKconfig7 codec chip found in the latest Apple machines
/linux-4.1.27/Documentation/ia64/
Daliasing.txt43 address space because some machines omit some or all of the MMIO
99 machines, this should use an uncacheable mapping as a fallback.
106 physical address space, but it may be different on machines with
189 supported, as is the case with HP sx[12]000 machines with VGA
193 machines with VGA enabled), we must fail the mmap because there's no
Dserial.txt11 - Firmware on some machines (mostly from HP) provides an HCDP
/linux-4.1.27/arch/um/
DKconfig.net13 machines on the outside world.
106 the host and/or other IP machines, say Y to the Ethertap or Slip
138 UMLs (even ones running on different host machines!) to talk to
142 other IP machines.
153 with other IP machines, make sure you select one of the other
/linux-4.1.27/arch/metag/kernel/
DMakefile15 obj-y += machines.o
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dopencores,or1k-pic.txt7 edge triggered interrupt lines or "opencores,or1200-pic" for machines
Dsamsung,s3c24xx-irq.txt9 for machines before s3c2416 and "samsung,s3c2416-irq" for s3c2416 and later.
/linux-4.1.27/Documentation/devicetree/bindings/arm/cpu-enable-method/
Dmarvell,berlin-smp10 Compatible machines: "marvell,berlin2" and "marvell,berlin2q"
Dal,alpine-smp11 Compatible machines: "al,alpine"
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-firmware-sgi_uv15 machines, which each partition running a unique copy
Dsysfs-firmware-dmi5 Many machines' firmware (x86 and ia64) export DMI /
Dsysfs-class-mic.txt92 self-bootable machines. When read, this entry provides
Dsysfs-devices-system-cpu173 node, or per internal node on MCM machines. Writing a valid
/linux-4.1.27/arch/powerpc/platforms/
DKconfig.cputype156 but somewhat slower on other machines. This option only changes
159 machines.
374 support SMP machines with 603/603e/603ev or PPC750 ("G3") processors
379 machines, but will use only one CPU of a multiprocessor machine. If
380 you say Y here, the kernel will run on single-processor machines.
/linux-4.1.27/drivers/net/wireless/orinoco/
DKconfig63 Macintosh machines. This is essentially a Lucent Orinoco card with
77 802.11b PCMCIA cards can be used in desktop machines. The Netgear
88 802.11b PCMCIA cards can be used in desktop machines.
/linux-4.1.27/arch/sh/
DKconfig.debug18 does not work with machines with an existing operating system in
19 mask ROM and no flash (WindowsCE machines fall in this category).
DKconfig.cpu7 Some SuperH machines can be configured for either little or big
DKconfig676 machines, but will use only one CPU of a multiprocessor machine. If
678 uniprocessor machines. On a uniprocessor machine, the kernel
681 People using multiprocessor machines who say Y here should also say
732 store-conditional (LLSC). On machines which do not have hardware
/linux-4.1.27/arch/score/
DKconfig27 bool "SPCT6600 series based machines"
/linux-4.1.27/drivers/net/ethernet/seeq/
DKconfig33 used in many Silicon Graphics machines.
/linux-4.1.27/arch/mips/kvm/
DKconfig10 other operating systems inside virtual machines (guests).
/linux-4.1.27/arch/mips/
DKconfig69 bool "Alchemy processor based machines"
268 bool "Jazz family of machines"
286 This a family of machines based on the MIPS R4030 chipset which was
292 bool "Ingenic JZ4740 based machines"
346 bool "Loongson family of machines"
349 This enables the support of Loongson family of machines.
357 bool "Loongson 1 family of machines"
360 This enables support for the Loongson 1 based machines.
482 bool "NEC VR4100 series based machines"
527 bool "Ralink based machines"
[all …]
DKconfig.debug19 it is not recommended because it looks ugly on some machines and
/linux-4.1.27/fs/adfs/
DKconfig7 systems and the Acorn Archimedes range of machines. If you say Y
/linux-4.1.27/Documentation/ioctl/
Dhdio.txt601 The end result is that, on any endian machines, it has no
651 travel on DD8-DD15 on little endian machines
652 and on DD0-DD7 on big endian machines.
654 travel on DD0-DD7 on little endian machines
655 and on DD8-DD15 on big endian machines.
678 DD8-DD15 on little endian machines and
679 DD0-DD7 on big endian machines.
681 DD0-DD7 on little endian machines and
682 DD8-DD15 on big endian machines.
/linux-4.1.27/sound/soc/intel/atom/sst/
Dsst_acpi.c234 struct sst_machines *machines) in sst_acpi_find_machine() argument
239 for (mach = machines; mach->codec_id; mach++) in sst_acpi_find_machine()
/linux-4.1.27/Documentation/power/
Ds2ram.txt7 "known ok" machines, along with tricks to use on each one.
18 I've been working at making the machines I have able to STR, and almost
Dvideo.txt45 that point, but it happens to work on some machines. Use
124 eMachines athlon64 machines vbetool needed (6) (someone please get me model #s)
Dpower_supply_class.txt39 manner. Results for different power supplies and machines are also directly
/linux-4.1.27/Documentation/sound/alsa/soc/
Doverview.txt33 and machines.
49 * Machine specific controls: Allow machines to add controls to the sound card
Dmachine.txt86 of speaker/HP amplifiers, etc. Codec pins can be connected to the machines jack
Ddapm.txt81 build a list of widgets of the codecs and machines DAPM widgets.
/linux-4.1.27/drivers/usb/usbip/
DKconfig6 machines direct access to USB devices. It provides the
/linux-4.1.27/arch/arm/mach-iop32x/
DKconfig14 NAS appliance or machines from IO-Data's HDL-Gxxx, HDL-GWxxx
/linux-4.1.27/arch/alpha/
DKconfig.debug17 Recent consoles on Titan and Marvel machines also require the
DKconfig270 AlphaServer 1200, AlphaServer 4000 and AlphaServer 4100 machines.
312 # Most of these machines have ISA slots; not exactly sure which don't,
555 machines, but will use only one CPU of a multiprocessor machine. If
557 uniprocessor machines. On a uniprocessor machine, the kernel
596 server machines. If in doubt, say N.
714 SRM is something like a BIOS for Alpha machines. There are some
/linux-4.1.27/fs/gfs2/
DKconfig16 machine show up immediately on all other machines in the cluster.
/linux-4.1.27/tools/testing/ktest/examples/
DREADME27 to reuse configs for various machines or set ups. The files here
/linux-4.1.27/arch/parisc/
DKconfig131 which is required on some machines.
242 machines, but will use only one CPU of a multiprocessor machine. If
244 uniprocessor machines. On a uniprocessor machine, the kernel
/linux-4.1.27/drivers/cpufreq/
DKconfig.powerpc39 and some of the more recent desktop G5 machines as well.
/linux-4.1.27/arch/powerpc/boot/dts/
Do2d.dtsi94 /* common layout for all machines */
/linux-4.1.27/Documentation/arm/SPEAr/
Doverview.txt52 Common file for machines of spear3xx family is mach-spear3xx/spear3xx.c, for
/linux-4.1.27/arch/m32r/
DKconfig284 machines, but will use only one CPU of a multiprocessor machine. If
286 uniprocessor machines. On a uniprocessor machine, the kernel
289 People using multiprocessor machines who say Y here should also say
/linux-4.1.27/Documentation/watchdog/
Dwdt.txt13 reboot will depend on the state of the machines and interrupts. The hardware
/linux-4.1.27/Documentation/filesystems/
Dgfs2.txt12 on one machine show up immediately on all other machines in the cluster.
Dspufs.txt10 The SPU file system is used on PowerPC machines that implement the Cell
294 The spu_run system call is used on PowerPC machines that implement the
418 The spu_create system call is used on PowerPC machines that implement
/linux-4.1.27/fs/sysv/
DKconfig6 machines, and Version 7 was used on the DEC PDP-11. Saying Y
/linux-4.1.27/Documentation/x86/
Dusb-legacy-support.txt14 1) On some machines, the emulated PS/2 mouse takes over even when no USB
/linux-4.1.27/kernel/irq/
DKconfig96 low kernel memory footprint on smaller machines.
/linux-4.1.27/Documentation/accounting/
Dtaskstats-struct.txt27 5) Time accounting for SMT machines
171 5) Time accounting for SMT machines
/linux-4.1.27/drivers/char/agp/
DKconfig130 AGP bus adapter on HP PA-RISC machines (Ok, just on the C8000
142 This option gives you AGP support for Apple machines with a
/linux-4.1.27/tools/perf/
Dbuiltin-top.c829 machine = &session->machines.host; in perf_top__mmap_read_idx()
835 machine = &session->machines.host; in perf_top__mmap_read_idx()
940 machines__set_symbol_filter(&top->session->machines, symbol_filter); in __cmd_top()
952 machine__synthesize_threads(&top->session->machines.host, &opts->target, in __cmd_top()
Dbuiltin-report.c349 struct map *kernel_map = rep->session->machines.host.vmlinux_maps[MAP__FUNCTION]; in report__warn_kptr_restrict()
832 machines__set_symbol_filter(&session->machines, in cmd_report()
Dbuiltin-annotate.c196 machines__set_symbol_filter(&session->machines, symbol__annotate_init); in __cmd_annotate()
Dbuiltin-record.c395 machine = &session->machines.host; in __cmd_record()
439 machines__process_guests(&session->machines, in __cmd_record()
Dbuiltin-kmem.c521 struct machine *machine = &session->machines.host; in __print_slab_result()
/linux-4.1.27/drivers/net/ethernet/apple/
DKconfig37 Some Apple machines (notably the Apple Network Server) which use the
/linux-4.1.27/arch/sparc/
DKconfig167 machines, but will use only one CPU of a multiprocessor machine. If
169 uniprocessor machines. On a uniprocessor machine, the kernel
172 People using multiprocessor machines who say Y here should also say
277 # Global things across all Sun machines.
/linux-4.1.27/drivers/sbus/char/
DKconfig54 machines.
/linux-4.1.27/arch/m68k/
DKconfig.bus11 HP300 machines. If you are using such a system you almost certainly
DKconfig.cpu302 instructions to be emulated by the kernel on machines that lack a
325 kernel will only be usable on machines without a floating-point
353 to destabilize other machines. It is very likely that this will
DKconfig.machine91 of workstations. Support for these machines is still somewhat
/linux-4.1.27/Documentation/vm/
Dcleancache.txt121 virtual machines. This is really hard to do with RAM and efforts to
128 virtual machines, but the pages can be compressed and deduplicated to
206 has little value, but in newer multicore machines, especially
207 consolidated/virtualized machines, it has great value.
Dksm.txt14 Kernel Shared Memory), to fit more virtual machines into physical memory,
Dbalance30 been running production machines of varying memory sizes, and seems to be
Dfrontswap.txt103 virtual machines. This is really hard to do with RAM and efforts to do
108 virtual machines, but the pages can be compressed and deduplicated to
/linux-4.1.27/arch/powerpc/platforms/cell/
DKconfig57 Units on machines implementing the Broadband Processor
/linux-4.1.27/fs/squashfs/
DKconfig78 machines due to waiting on decompressor availability.
92 machines due to waiting on decompressor availability.
/linux-4.1.27/Documentation/s390/
Dzfcpdump.txt3 System z machines (z900 or higher) provide hardware support for creating system
DDebugging390.txt64 4 64 bit registers (fp0,fp2,fp4 & fp6) HFP only on older machines.
66 Linux (currently) always uses IEEE & emulates G5 IEEE format on older machines,
227 Himem=0xFFFFFFFF-0xC0000000=1GB & this is all the RAM these machines
548 parameter passing as older machines such as G3 only have only 4
551 older machines you are free to use the other 12.
1364 upcoming 64 bit machines.
1414 The 390 IO systems come in 2 flavours the current 390 machines support both
1454 between 2 machines.
2081 ifconfig. Do you see any replies from machines other than the local machine
/linux-4.1.27/net/ipx/
DKconfig9 used for local networks of Windows machines. You need it if you
/linux-4.1.27/drivers/pcmcia/
DKconfig184 Xscale(R) embedded machines.
197 StrongARM(R)/Xscale(R) embedded machines.
/linux-4.1.27/Documentation/isdn/
DsyncPPP.FAQ11 Q08: I wanna talk to several machines, which need different configs
126 Q08: I wanna talk to remote machines, which need
DREADME.diversion115 conjunction with inetd and a small remote client on other machines inside
/linux-4.1.27/arch/x86/
DKconfig311 machines, but will use only one CPU of a multiprocessor machine. If
313 uniprocessor machines. On a uniprocessor machine, the kernel
321 People using multiprocessor machines who say Y here should also say
435 supposed to run on these EM64T-based machines. Only choose this option
436 if you have one of these machines.
612 standard PC machines.
618 The Iris machines from EuroBraille do not have APM or ACPI support
623 This is only for Iris machines from EuroBraille.
1088 Currently, the only fixup is for the Geode machines using
1521 intend to use this kernel on different machines.
[all …]
DKconfig.debug245 delay for certain operations. Should work on most new machines.
/linux-4.1.27/Documentation/crypto/
Ddescore-readme.txt35 register-starved machines. My discussions with Richard Outerbridge,
148 idiotic `tweaks' for particular machines which failed to deliver significant
174 for different machines. see the kerberos code for an example
309 on some machines. and yes, each byte controls
/linux-4.1.27/drivers/platform/x86/
DKconfig66 zones on Alienware machines that don't contain a dedicated AlienFX
126 All-In-One machines.
580 drivers needed on many machines, including Acer and HP laptops.
625 On these machines, all system configuration is handled through the
696 machines.
822 is required for switchable nvidia graphics machines
/linux-4.1.27/Documentation/video4linux/cx2341x/
Dfw-dma.txt11 on virtual memory machines.
/linux-4.1.27/drivers/video/console/
DKconfig140 machines. Say Y here to build support for it into your kernel.
/linux-4.1.27/Documentation/acpi/
Dvideo_extension.txt99 This works for machines covered by case ii) in Section 2. Once the driver
/linux-4.1.27/Documentation/tpm/
Dxen-tpmfront.txt18 the chain of trust rooted in the hardware TPM to virtual machines in Xen. Each
/linux-4.1.27/arch/powerpc/platforms/pseries/
DKconfig40 SPLPAR machines can log hypervisor preempt & dispatch events to a
/linux-4.1.27/drivers/macintosh/
DKconfig85 the keyboard and mouse on some machines, as well as the non-volatile
248 which are the recent dual and quad G5 machines using the
/linux-4.1.27/arch/mn10300/
DKconfig189 machines, but will use only one CPU of a multiprocessor machine. If
191 uniprocessor machines. On a uniprocessor machine, the kernel
/linux-4.1.27/arch/powerpc/
DKconfig.debug116 machines, say N here.
168 Select this to enable early debugging for Apple G5 machines.
/linux-4.1.27/Documentation/input/
Djoystick-parport.txt102 connectors for their machines, the cloners couldn't and used standard D-Cannon
138 In the era of 8-bit machines, there was something like de-facto standard
142 Amstrad CPC, Sinclair ZX Spectrum and many other machines. That's why these
/linux-4.1.27/drivers/scsi/
DKconfig956 (found in 386 vintage machines) will not work properly.
978 NCR and commonly used in 345x/35xx/4100 class machines. It always
1052 Most machines with less than 4GB of memory should use a setting
1088 answer Y here, but some machines may have problems. If you have
1125 C110, J200, J210 and some D, K & R-class machines. It's also
1127 Say Y here if you have one of these machines or cards.
1135 NCR and commonly used in 345x/35xx/4100 class machines. It always
1303 tristate "Simple 53c710 SCSI support (Compaq, NCR machines)"
1497 operation at up to 10 MB/s. On machines where the SCSI bus
1514 machines which only have one SCSI bus, such as the 7200, also use
[all …]
/linux-4.1.27/fs/ncpfs/
DKconfig19 General information about how to connect Linux, Windows machines and
/linux-4.1.27/drivers/net/appletalk/
DKconfig19 General information about how to connect Linux, Windows machines and
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt111 13.9 You can network to the host but not to other machines on the net
539 Most Linux machines are configured so that the kernel occupies the
591 o hook two virtual machines together by having one attach to a pty
714 machines without requiring that the UML be networked. This could be
813 You can attach two virtual machines together with what amounts to a
846 provide a UML instance with network access to the host, other machines
878 to other physical or virtual machines.
888 network to other virtual machines. This network is completely
890 machines on it is acting as a gateway.
990 other machines, physical or virtual, on the net.
[all …]
/linux-4.1.27/drivers/char/hw_random/
DKconfig290 Generator hardware found on POWER7+ machines and above
303 in POWER7+ and above machines for PowerNV platform.
/linux-4.1.27/Documentation/x86/x86_64/
Dboot-options.txt215 Intel machines). This can be used to prevent the usage
251 pSeries and xSeries machines:
/linux-4.1.27/Documentation/i2c/busses/
Di2c-piix4103 Some of these machines have an RFID EEPROM (24RF08) connected to the SMBus,
Di2c-i801112 boards after that. Some vendor machines are affected as well.
/linux-4.1.27/arch/arm/mach-s3c24xx/
DKconfig172 Internal node for machines with an BAST style IDE
396 Machine support for Samsung S3C2416 machines with device tree enabled.
/linux-4.1.27/sound/soc/pxa/
DKconfig120 CompuLab EM-x270, eXeda and CM-X300 machines.
/linux-4.1.27/Documentation/RCU/
Dchecklist.txt36 memory barriers on weakly ordered machines (pretty much all of
41 big multiprocessor machines (for example, if the task is updating
145 to prevent weakly ordered machines from misordering
Drcu_dereference.txt89 using branches. While weak-memory machines such as ARM or PowerPC
108 weak-memory machines such as ARM or PowerPC do order stores
/linux-4.1.27/arch/arm/tools/
Dmach-types7 # http://www.arm.linux.org.uk/developer/machines/download.php
13 # http://www.arm.linux.org.uk/developer/machines/?action=new
15 # This is a cut-down version of the file; it contains only machines that
/linux-4.1.27/arch/arm/mach-s3c64xx/
DKconfig309 Machine support for Samsung S3C6400/S3C6410 machines with Device Tree
/linux-4.1.27/Documentation/usb/
Ddma.txt82 to fix this issue (for x86_32 machines with over 1 GByte of memory),
/linux-4.1.27/arch/sh/mm/
DKconfig15 turning this off will boot the kernel on these machines with the
/linux-4.1.27/fs/cramfs/
DREADME116 code simplicity and little CPU overhead even on big-endian machines.
/linux-4.1.27/Documentation/laptops/
Dasus-laptop.txt165 Note: on some machines (e.g. L3C), after the module has been loaded, only 0x6n
/linux-4.1.27/Documentation/scheduler/
Dsched-stats.txt10 be pertinent and available on machines utilizing CONFIG_SMP.
/linux-4.1.27/Documentation/trace/
Dmmiotrace.txt117 machines. During the single stepping other CPUs may run freely on that page
/linux-4.1.27/Documentation/driver-model/
Ddevres.txt221 bytes on 32bit machines and 24 bytes on 64bit (three pointers rounded
/linux-4.1.27/Documentation/kdump/
Dkdump.txt29 On x86 machines, the first 640 KB of physical memory is needed to boot,
33 Similarly on PPC64 machines first 32KB of physical memory is needed for
/linux-4.1.27/drivers/ide/
DKconfig173 machines ACPI support is required to properly handle ACPI S3 states.
530 (used mainly on SPARC64 and PA-RISC machines).
664 based machines (Windtunnel PowerMac, Aluminium PowerBooks, ...)
/linux-4.1.27/drivers/tty/serial/
DKconfig246 providing /dev/ttySAC0, 1 and 2 (note, some machines may not
297 providing /dev/ttySiRF0, 1 and 2 (note, some machines may not
319 providing /dev/ttyTHS0, 1, 2, 3 and 4 (note, some machines may not
683 used as the system console. This is useful for machines in
832 (Power)Mac machines.
/linux-4.1.27/drivers/watchdog/
DKconfig185 This driver does not work on all machines. In particular, early CATS
196 NetWinder machines. Alternatively say M to compile the driver as
691 timer built-in into some eServer xSeries machines.
1373 IBM s/390 and zSeries machines running under z/VM 5.1 or later
1426 machines. The watchdog timeout period is normally one minute but
/linux-4.1.27/drivers/input/serio/
DKconfig122 This driver provides support for the PS/2 ports on PA-RISC machines
/linux-4.1.27/Documentation/scsi/
DFlashPoint.txt28 machines. It supports a wide range of software, including the X Window
/linux-4.1.27/drivers/xen/
DKconfig101 to other virtual machines.
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfs-rdma.txt207 We recommend that you use two machines, one to act as the client and
/linux-4.1.27/arch/arm64/
DKconfig494 multiprocessor machines, but will use only one CPU of a
496 on many, but not all, single processor machines. On a single
/linux-4.1.27/sound/oss/
DKconfig264 cards on machines with more than 16MB of RAM. This is because ISA
519 machines.
/linux-4.1.27/Documentation/dvb/
DREADME.dvb-usb206 root-shells on their machines to implement support for new devices.
/linux-4.1.27/Documentation/prctl/
Dseccomp_filter.txt186 leading to surprises when you run programs on different machines that
/linux-4.1.27/drivers/media/usb/pwc/
Dphilips.txt59 the cam is a bit slow or momentarily busy. However, on slow machines it
/linux-4.1.27/drivers/video/fbdev/
DKconfig313 hardware found in Acorn RISC PCs and other ARM-based machines. If
370 VGA chips used in the Rebel.com Netwinder and other machines.
391 on the Netwinder machines for the SAA7111 video capture.
681 BIOS routines contained in a ROM chip in HP PA-RISC based machines.
882 supported on Sparcbook 3 machines.
2142 found on some IBM System P (pSeries) machines. This driver
/linux-4.1.27/drivers/edac/
DKconfig89 Not all machines support hardware-driven error report. Some of those
/linux-4.1.27/Documentation/sysctl/
Dfs.txt116 enough for most machines. Actual limit depends on RLIMIT_NOFILE
Dvm.txt286 For some specialised workloads on highmem machines it is dangerous for
291 And on large highmem machines this lack of reclaimable lowmem memory
/linux-4.1.27/drivers/pwm/
DKconfig161 machines.
/linux-4.1.27/net/ipv4/
DKconfig113 You need to say Y only for diskless machines requiring network
115 on NFS" as well), because all other machines configure the network
/linux-4.1.27/Documentation/PCI/
DMSI-HOWTO.txt67 driver has to set up the device to use MSI or MSI-X. Not all machines
68 support MSIs correctly, and for those machines, the APIs described below
/linux-4.1.27/Documentation/fb/
Dfbcon.txt122 NOTE: For x86 machines, the standard console is the VGA console which
/linux-4.1.27/net/
DKconfig127 the gateway to the Internet for a local network of machines without
/linux-4.1.27/drivers/power/
DKconfig117 Say Y here to expose battery information on Apple machines
/linux-4.1.27/arch/xtensa/
DKconfig25 Xtensa processors are 32-bit RISC machines designed by Tensilica
/linux-4.1.27/drivers/video/backlight/
DKconfig205 machines.
/linux-4.1.27/Documentation/timers/
Dhighres.txt155 The high resolution timer code does not support SMP machines which have only
/linux-4.1.27/drivers/net/
DKconfig16 two machines with parallel ports using PLIP needs this, as well as
/linux-4.1.27/Documentation/virtual/kvm/
Dapi.txt12 virtual machines
120 In order to create user controlled virtual machines on S390, check
229 machines, the resulting vcpu fd can be memory mapped at page offset
1730 is supported; 2 if the processor requires all virtual machines to have
1810 (for user controlled virtual machines) or the virtual machine's address
1811 space (for regular virtual machines). This only works for minor faults,
1814 controlled virtual machines to fault in the virtual cpu's lowcore pages

12