mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-02-05 22:45:10 +07:00
![]() Pull perf updates from Ingo Molnar: "Kernel side changes: - Intel Knights Landing support. (Harish Chegondi) - Intel Broadwell-EP uncore PMU support. (Kan Liang) - Core code improvements. (Peter Zijlstra.) - Event filter, LBR and PEBS fixes. (Stephane Eranian) - Enable cycles:pp on Intel Atom. (Stephane Eranian) - Add cycles:ppp support for Skylake. (Andi Kleen) - Various x86 NMI overhead optimizations. (Andi Kleen) - Intel PT enhancements. (Takao Indoh) - AMD cache events fix. (Vince Weaver) Tons of tooling changes: - Show random perf tool tips in the 'perf report' bottom line (Namhyung Kim) - perf report now defaults to --group if the perf.data file has grouped events, try it with: # perf record -e '{cycles,instructions}' -a sleep 1 [ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 1.093 MB perf.data (1247 samples) ] # perf report # Samples: 1K of event 'anon group { cycles, instructions }' # Event count (approx.): 1955219195 # # Overhead Command Shared Object Symbol 2.86% 0.22% swapper [kernel.kallsyms] [k] intel_idle 1.05% 0.33% firefox libxul.so [.] js::SetObjectElement 1.05% 0.00% kworker/0:3 [kernel.kallsyms] [k] gen6_ring_get_seqno 0.88% 0.17% chrome chrome [.] 0x0000000000ee27ab 0.65% 0.86% firefox libxul.so [.] js::ValueToId<(js::AllowGC)1> 0.64% 0.23% JS Helper libxul.so [.] js::SplayTree<js::jit::LiveRange*, js::jit::LiveRange>::splay 0.62% 1.27% firefox libxul.so [.] js::GetIterator 0.61% 1.74% firefox libxul.so [.] js::NativeSetProperty 0.61% 0.31% firefox libxul.so [.] js::SetPropertyByDefining - Introduce the 'perf stat record/report' workflow: Generate perf.data files from 'perf stat', to tap into the scripting capabilities perf has instead of defining a 'perf stat' specific scripting support to calculate event ratios, etc. Simple example: $ perf stat record -e cycles usleep 1 Performance counter stats for 'usleep 1': 1,134,996 cycles 0.000670644 seconds time elapsed $ perf stat report Performance counter stats for '/home/acme/bin/perf stat record -e cycles usleep 1': 1,134,996 cycles 0.000670644 seconds time elapsed $ It generates PERF_RECORD_ userspace records to store the details: $ perf report -D | grep PERF_RECORD 0xf0 [0x28]: PERF_RECORD_THREAD_MAP nr: 1 thread: 27637 0x118 [0x12]: PERF_RECORD_CPU_MAP nr: 1 cpu: 65535 0x12a [0x40]: PERF_RECORD_STAT_CONFIG 0x16a [0x30]: PERF_RECORD_STAT -1 -1 0x19a [0x40]: PERF_RECORD_MMAP -1/0: [0xffffffff81000000(0x1f000000) @ 0xffffffff81000000]: x [kernel.kallsyms]_text 0x1da [0x18]: PERF_RECORD_STAT_ROUND [acme@ssdandy linux]$ An effort was made to make perf.data files generated like this to not generate cryptic messages when processed by older tools. The 'perf script' bits need rebasing, will go up later. - Make command line options always available, even when they depend on some feature being enabled, warning the user about use of such options (Wang Nan) - Support hw breakpoint events (mem:0xAddress) in the default output mode in 'perf script' (Wang Nan) - Fixes and improvements for supporting annotating ARM binaries, support ARM call and jump instructions, more work needed to have arch specific stuff separated into tools/perf/arch/*/annotate/ (Russell King) - Add initial 'perf config' command, for now just with a --list command to the contents of the configuration file in use and a basic man page describing its format, commands for doing edits and detailed documentation are being reviewed and proof-read. (Taeung Song) - Allows BPF scriptlets specify arguments to be fetched using DWARF info, using a prologue generated at compile/build time (He Kuang, Wang Nan) - Allow attaching BPF scriptlets to module symbols (Wang Nan) - Allow attaching BPF scriptlets to userspace code using uprobe (Wang Nan) - BPF programs now can specify 'perf probe' tunables via its section name, separating key=val values using semicolons (Wang Nan) Testing some of these new BPF features: Use case: get callchains when receiving SSL packets, filter then in the kernel, at arbitrary place. # cat ssl.bpf.c #define SEC(NAME) __attribute__((section(NAME), used)) struct pt_regs; SEC("func=__inet_lookup_established hnum") int func(struct pt_regs *ctx, int err, unsigned short port) { return err == 0 && port == 443; } char _license[] SEC("license") = "GPL"; int _version SEC("version") = LINUX_VERSION_CODE; # # perf record -a -g -e ssl.bpf.c ^C[ perf record: Woken up 1 times to write data ] [ perf record: Captured and wrote 0.787 MB perf.data (3 samples) ] # perf script | head -30 swapper 0 [000] 58783.268118: perf_bpf_probe:func: (ffffffff816a0f60) hnum=0x1bb 8a0f61 __inet_lookup_established (/lib/modules/4.3.0+/build/vmlinux) 896def ip_rcv_finish (/lib/modules/4.3.0+/build/vmlinux) 8976c2 ip_rcv (/lib/modules/4.3.0+/build/vmlinux) 855eba __netif_receive_skb_core (/lib/modules/4.3.0+/build/vmlinux) 8565d8 __netif_receive_skb (/lib/modules/4.3.0+/build/vmlinux) 8572a8 process_backlog (/lib/modules/4.3.0+/build/vmlinux) 856b11 net_rx_action (/lib/modules/4.3.0+/build/vmlinux) 2a284b __do_softirq (/lib/modules/4.3.0+/build/vmlinux) 2a2ba3 irq_exit (/lib/modules/4.3.0+/build/vmlinux) 96b7a4 do_IRQ (/lib/modules/4.3.0+/build/vmlinux) 969807 ret_from_intr (/lib/modules/4.3.0+/build/vmlinux) 2dede5 cpu_startup_entry (/lib/modules/4.3.0+/build/vmlinux) 95d5bc rest_init (/lib/modules/4.3.0+/build/vmlinux) 1163ffa start_kernel ([kernel.vmlinux].init.text) 11634d7 x86_64_start_reservations ([kernel.vmlinux].init.text) 1163623 x86_64_start_kernel ([kernel.vmlinux].init.text) qemu-system-x86 9178 [003] 58785.792417: perf_bpf_probe:func: (ffffffff816a0f60) hnum=0x1bb 8a0f61 __inet_lookup_established (/lib/modules/4.3.0+/build/vmlinux) 896def ip_rcv_finish (/lib/modules/4.3.0+/build/vmlinux) 8976c2 ip_rcv (/lib/modules/4.3.0+/build/vmlinux) 855eba __netif_receive_skb_core (/lib/modules/4.3.0+/build/vmlinux) 8565d8 __netif_receive_skb (/lib/modules/4.3.0+/build/vmlinux) 856660 netif_receive_skb_internal (/lib/modules/4.3.0+/build/vmlinux) 8566ec netif_receive_skb_sk (/lib/modules/4.3.0+/build/vmlinux) 430a br_handle_frame_finish ([bridge]) 48bc br_handle_frame ([bridge]) 855f44 __netif_receive_skb_core (/lib/modules/4.3.0+/build/vmlinux) 8565d8 __netif_receive_skb (/lib/modules/4.3.0+/build/vmlinux) # - Use 'perf probe' various options to list functions, see what variables can be collected at any given point, experiment first collecting without a filter, then filter, use it together with 'perf trace', 'perf top', with or without callchains, if it explodes, please tell us! - Introduce a new callchain mode: "folded", that will list per line representations of all callchains for a give histogram entry, facilitating 'perf report' output processing by other tools, such as Brendan Gregg's flamegraph tools (Namhyung Kim) E.g: # perf report | grep -v ^# | head 18.37% 0.00% swapper [kernel.kallsyms] [k] cpu_startup_entry | ---cpu_startup_entry | |--12.07%--start_secondary | --6.30%--rest_init start_kernel x86_64_start_reservations x86_64_start_kernel # Becomes, in "folded" mode: # perf report -g folded | grep -v ^# | head -5 18.37% 0.00% swapper [kernel.kallsyms] [k] cpu_startup_entry 12.07% cpu_startup_entry;start_secondary 6.30% cpu_startup_entry;rest_init;start_kernel;x86_64_start_reservations;x86_64_start_kernel 16.90% 0.00% swapper [kernel.kallsyms] [k] call_cpuidle 11.23% call_cpuidle;cpu_startup_entry;start_secondary 5.67% call_cpuidle;cpu_startup_entry;rest_init;start_kernel;x86_64_start_reservations;x86_64_start_kernel 16.90% 0.00% swapper [kernel.kallsyms] [k] cpuidle_enter 11.23% cpuidle_enter;call_cpuidle;cpu_startup_entry;start_secondary 5.67% cpuidle_enter;call_cpuidle;cpu_startup_entry;rest_init;start_kernel;x86_64_start_reservations;x86_64_start_kernel 15.12% 0.00% swapper [kernel.kallsyms] [k] cpuidle_enter_state # The user can also select one of "count", "period" or "percent" as the first column. ... and lots of infrastructure enhancements, plus fixes and other changes, features I failed to list - see the shortlog and the git log for details" * 'perf-core-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: (271 commits) perf evlist: Add --trace-fields option to show trace fields perf record: Store data mmaps for dwarf unwind perf libdw: Check for mmaps also in MAP__VARIABLE tree perf unwind: Check for mmaps also in MAP__VARIABLE tree perf unwind: Use find_map function in access_dso_mem perf evlist: Remove perf_evlist__(enable|disable)_event functions perf evlist: Make perf_evlist__open() open evsels with their cpus and threads (like perf record does) perf report: Show random usage tip on the help line perf hists: Export a couple of hist functions perf diff: Use perf_hpp__register_sort_field interface perf tools: Add overhead/overhead_children keys defaults via string perf tools: Remove list entry from struct sort_entry perf tools: Include all tools/lib directory for tags/cscope/TAGS targets perf script: Align event name properly perf tools: Add missing headers in perf's MANIFEST perf tools: Do not show trace command if it's not compiled in perf report: Change default to use event group view perf top: Decay periods in callchains tools lib: Move bitmap.[ch] from tools/perf/ to tools/{lib,include}/ tools lib: Sync tools/lib/find_bit.c with the kernel ... |
||
---|---|---|
.. | ||
amba | ||
bcma | ||
byteorder | ||
can | ||
ceph | ||
clk | ||
crush | ||
decompress | ||
dma | ||
extcon | ||
fpga | ||
fsl | ||
gpio | ||
hsi | ||
i2c | ||
iio | ||
input | ||
irqchip | ||
isdn | ||
lockd | ||
mfd | ||
mlx4 | ||
mlx5 | ||
mmc | ||
mtd | ||
netfilter | ||
netfilter_arp | ||
netfilter_bridge | ||
netfilter_ipv4 | ||
netfilter_ipv6 | ||
perf | ||
phy | ||
pinctrl | ||
platform_data | ||
power | ||
qed | ||
raid | ||
regulator | ||
reset | ||
rtc | ||
sched | ||
soc | ||
spi | ||
ssb | ||
sunrpc | ||
ulpi | ||
unaligned | ||
usb | ||
uwb | ||
wimax | ||
8250_pci.h | ||
a.out.h | ||
acct.h | ||
acpi_dma.h | ||
acpi_pmtmr.h | ||
acpi.h | ||
adb.h | ||
adfs_fs.h | ||
aer.h | ||
agp_backend.h | ||
agpgart.h | ||
ahci_platform.h | ||
aio.h | ||
alarmtimer.h | ||
altera_jtaguart.h | ||
altera_uart.h | ||
amd-iommu.h | ||
amifd.h | ||
amifdreg.h | ||
amigaffs.h | ||
anon_inodes.h | ||
apm_bios.h | ||
apm-emulation.h | ||
apple_bl.h | ||
arm-cci.h | ||
asn1_ber_bytecode.h | ||
asn1_decoder.h | ||
asn1.h | ||
assoc_array_priv.h | ||
assoc_array.h | ||
async_tx.h | ||
async.h | ||
ata_platform.h | ||
ata.h | ||
atalk.h | ||
ath9k_platform.h | ||
atm_suni.h | ||
atm_tcp.h | ||
atm.h | ||
atmdev.h | ||
atmel_pdc.h | ||
atmel_serial.h | ||
atmel_tc.h | ||
atmel-mci.h | ||
atmel-ssc.h | ||
atomic.h | ||
attribute_container.h | ||
audit.h | ||
auto_dev-ioctl.h | ||
auto_fs.h | ||
auxvec.h | ||
average.h | ||
b1pcmcia.h | ||
backing-dev-defs.h | ||
backing-dev.h | ||
backlight.h | ||
balloon_compaction.h | ||
basic_mmio_gpio.h | ||
bcd.h | ||
bch.h | ||
bcm47xx_nvram.h | ||
bcm47xx_wdt.h | ||
bfin_mac.h | ||
binfmts.h | ||
bio.h | ||
bit_spinlock.h | ||
bitmap.h | ||
bitops.h | ||
bitrev.h | ||
blk_types.h | ||
blk-cgroup.h | ||
blk-iopoll.h | ||
blk-mq.h | ||
blkdev.h | ||
blkpg.h | ||
blktrace_api.h | ||
blockgroup_lock.h | ||
bma150.h | ||
bootmem.h | ||
bottom_half.h | ||
bpf.h | ||
brcmphy.h | ||
bsearch.h | ||
bsg-lib.h | ||
bsg.h | ||
btree-128.h | ||
btree-type.h | ||
btree.h | ||
btrfs.h | ||
buffer_head.h | ||
bug.h | ||
c2port.h | ||
cache.h | ||
cacheinfo.h | ||
capability.h | ||
cb710.h | ||
cciss_ioctl.h | ||
ccp.h | ||
cdev.h | ||
cdrom.h | ||
cfag12864b.h | ||
cgroup_subsys.h | ||
cgroup-defs.h | ||
cgroup.h | ||
circ_buf.h | ||
cleancache.h | ||
clk-provider.h | ||
clk.h | ||
clkdev.h | ||
clksrc-dbx500-prcmu.h | ||
clock_cooling.h | ||
clockchips.h | ||
clocksource.h | ||
cm4000_cs.h | ||
cma.h | ||
cmdline-parser.h | ||
cn_proc.h | ||
cnt32_to_63.h | ||
coda_psdev.h | ||
coda.h | ||
compaction.h | ||
compat.h | ||
compiler-clang.h | ||
compiler-gcc.h | ||
compiler-intel.h | ||
compiler.h | ||
completion.h | ||
component.h | ||
concap.h | ||
configfs.h | ||
connector.h | ||
console_struct.h | ||
console.h | ||
consolemap.h | ||
container.h | ||
context_tracking_state.h | ||
context_tracking.h | ||
cordic.h | ||
coredump.h | ||
coresight.h | ||
count_zeros.h | ||
cper.h | ||
cpu_cooling.h | ||
cpu_pm.h | ||
cpu_rmap.h | ||
cpu.h | ||
cpufeature.h | ||
cpufreq-dt.h | ||
cpufreq.h | ||
cpuidle.h | ||
cpumask.h | ||
cpuset.h | ||
cputime.h | ||
crash_dump.h | ||
crc7.h | ||
crc8.h | ||
crc16.h | ||
crc32.h | ||
crc32c.h | ||
crc-ccitt.h | ||
crc-itu-t.h | ||
crc-t10dif.h | ||
cred.h | ||
crypto.h | ||
cryptohash.h | ||
cs5535.h | ||
ctype.h | ||
cuda.h | ||
cyclades.h | ||
davinci_emac.h | ||
dax.h | ||
dca.h | ||
dcache.h | ||
dccp.h | ||
dcookies.h | ||
debug_locks.h | ||
debugfs.h | ||
debugobjects.h | ||
delay.h | ||
delayacct.h | ||
delayed_call.h | ||
dell-led.h | ||
devcoredump.h | ||
devfreq_cooling.h | ||
devfreq-event.h | ||
devfreq.h | ||
device_cgroup.h | ||
device-mapper.h | ||
device.h | ||
devpts_fs.h | ||
digsig.h | ||
dio.h | ||
dirent.h | ||
dlm_plock.h | ||
dlm.h | ||
dm9000.h | ||
dm-dirty-log.h | ||
dm-io.h | ||
dm-kcopyd.h | ||
dm-region-hash.h | ||
dma_remapping.h | ||
dma-attrs.h | ||
dma-buf.h | ||
dma-contiguous.h | ||
dma-debug.h | ||
dma-direction.h | ||
dma-iommu.h | ||
dma-mapping.h | ||
dmaengine.h | ||
dmapool.h | ||
dmar.h | ||
dmi.h | ||
dnotify.h | ||
dns_resolver.h | ||
dqblk_qtree.h | ||
dqblk_v1.h | ||
dqblk_v2.h | ||
drbd_genl_api.h | ||
drbd_genl.h | ||
drbd_limits.h | ||
drbd.h | ||
ds1286.h | ||
ds2782_battery.h | ||
ds17287rtc.h | ||
dtlk.h | ||
dw_apb_timer.h | ||
dynamic_debug.h | ||
dynamic_queue_limits.h | ||
earlycpio.h | ||
ecryptfs.h | ||
edac.h | ||
edd.h | ||
edma.h | ||
eeprom_93cx6.h | ||
eeprom_93xx46.h | ||
efi-bgrt.h | ||
efi.h | ||
efs_vh.h | ||
eisa.h | ||
elevator.h | ||
elf-fdpic.h | ||
elf-randomize.h | ||
elf.h | ||
elfcore-compat.h | ||
elfcore.h | ||
elfnote.h | ||
enclosure.h | ||
err.h | ||
errno.h | ||
errqueue.h | ||
etherdevice.h | ||
ethtool.h | ||
eventfd.h | ||
eventpoll.h | ||
evm.h | ||
export.h | ||
exportfs.h | ||
ext2_fs.h | ||
extcon.h | ||
f2fs_fs.h | ||
f75375s.h | ||
falloc.h | ||
fanotify.h | ||
fault-inject.h | ||
fb.h | ||
fcdevice.h | ||
fcntl.h | ||
fd.h | ||
fddidevice.h | ||
fdtable.h | ||
fec.h | ||
fence.h | ||
file.h | ||
filter.h | ||
fips.h | ||
firewire.h | ||
firmware-map.h | ||
firmware.h | ||
fixp-arith.h | ||
flat.h | ||
flex_array.h | ||
flex_proportions.h | ||
fmc-sdb.h | ||
fmc.h | ||
font.h | ||
freezer.h | ||
frontswap.h | ||
fs_enet_pd.h | ||
fs_pin.h | ||
fs_stack.h | ||
fs_struct.h | ||
fs_uart_pd.h | ||
fs.h | ||
fscache-cache.h | ||
fscache.h | ||
fsl_devices.h | ||
fsl_hypervisor.h | ||
fsl_ifc.h | ||
fsl-diu-fb.h | ||
fsldma.h | ||
fsnotify_backend.h | ||
fsnotify.h | ||
ftrace_irq.h | ||
ftrace.h | ||
futex.h | ||
fwnode.h | ||
gameport.h | ||
gcd.h | ||
genalloc.h | ||
genetlink.h | ||
genhd.h | ||
genl_magic_func.h | ||
genl_magic_struct.h | ||
getcpu.h | ||
gfp.h | ||
glob.h | ||
goldfish.h | ||
gpio_keys.h | ||
gpio_mouse.h | ||
gpio-fan.h | ||
gpio-pxa.h | ||
gpio.h | ||
hardirq.h | ||
hash.h | ||
hashtable.h | ||
hdlc.h | ||
hdlcdrv.h | ||
hdmi.h | ||
hid-debug.h | ||
hid-roccat.h | ||
hid-sensor-hub.h | ||
hid-sensor-ids.h | ||
hid.h | ||
hiddev.h | ||
hidraw.h | ||
highmem.h | ||
highuid.h | ||
hil_mlc.h | ||
hil.h | ||
hippidevice.h | ||
host1x.h | ||
hp_sdc.h | ||
hpet.h | ||
hrtimer.h | ||
htcpld.h | ||
htirq.h | ||
huge_mm.h | ||
hugetlb_cgroup.h | ||
hugetlb_inline.h | ||
hugetlb.h | ||
hw_breakpoint.h | ||
hw_random.h | ||
hwmon-sysfs.h | ||
hwmon-vid.h | ||
hwmon.h | ||
hwspinlock.h | ||
hyperv.h | ||
i2c-algo-bit.h | ||
i2c-algo-pca.h | ||
i2c-algo-pcf.h | ||
i2c-dev.h | ||
i2c-gpio.h | ||
i2c-mux-gpio.h | ||
i2c-mux-pinctrl.h | ||
i2c-mux.h | ||
i2c-ocores.h | ||
i2c-omap.h | ||
i2c-pca-platform.h | ||
i2c-pnx.h | ||
i2c-pxa.h | ||
i2c-smbus.h | ||
i2c-xiic.h | ||
i2c.h | ||
i7300_idle.h | ||
i8042.h | ||
i8253.h | ||
icmp.h | ||
icmpv6.h | ||
ide.h | ||
idr.h | ||
ieee80211.h | ||
ieee802154.h | ||
if_arp.h | ||
if_bridge.h | ||
if_eql.h | ||
if_ether.h | ||
if_fddi.h | ||
if_frad.h | ||
if_link.h | ||
if_ltalk.h | ||
if_macvlan.h | ||
if_phonet.h | ||
if_pppol2tp.h | ||
if_pppox.h | ||
if_team.h | ||
if_tun.h | ||
if_tunnel.h | ||
if_vlan.h | ||
igmp.h | ||
ihex.h | ||
ima.h | ||
in6.h | ||
in.h | ||
inet_diag.h | ||
inet_lro.h | ||
inet.h | ||
inetdevice.h | ||
init_ohci1394_dma.h | ||
init_task.h | ||
init.h | ||
initrd.h | ||
inotify.h | ||
input-polldev.h | ||
input.h | ||
integrity.h | ||
intel_pmic_gpio.h | ||
intel-iommu.h | ||
intel-svm.h | ||
interrupt.h | ||
interval_tree_generic.h | ||
interval_tree.h | ||
io-64-nonatomic-hi-lo.h | ||
io-64-nonatomic-lo-hi.h | ||
io-mapping.h | ||
io.h | ||
ioc3.h | ||
ioc4.h | ||
iocontext.h | ||
iommu-common.h | ||
iommu-helper.h | ||
iommu.h | ||
iopoll.h | ||
ioport.h | ||
ioprio.h | ||
iova.h | ||
ip.h | ||
ipack.h | ||
ipc_namespace.h | ||
ipc.h | ||
ipmi_smi.h | ||
ipmi-fru.h | ||
ipmi.h | ||
ipv6_route.h | ||
ipv6.h | ||
irq_cpustat.h | ||
irq_work.h | ||
irq.h | ||
irqbypass.h | ||
irqchip.h | ||
irqdesc.h | ||
irqdomain.h | ||
irqflags.h | ||
irqhandler.h | ||
irqnr.h | ||
irqreturn.h | ||
isa.h | ||
isapnp.h | ||
iscsi_boot_sysfs.h | ||
iscsi_ibft.h | ||
isdn_divertif.h | ||
isdn_ppp.h | ||
isdn.h | ||
isdnif.h | ||
isicom.h | ||
jbd2.h | ||
jhash.h | ||
jiffies.h | ||
journal-head.h | ||
joystick.h | ||
jump_label_ratelimit.h | ||
jump_label.h | ||
jz4740-adc.h | ||
jz4780-nemc.h | ||
kallsyms.h | ||
kasan.h | ||
kbd_diacr.h | ||
kbd_kern.h | ||
kbuild.h | ||
kconfig.h | ||
kcore.h | ||
kd.h | ||
kdb.h | ||
kdebug.h | ||
kdev_t.h | ||
kern_levels.h | ||
kernel_stat.h | ||
kernel-page-flags.h | ||
kernel.h | ||
kernelcapi.h | ||
kernfs.h | ||
kexec.h | ||
key-type.h | ||
key.h | ||
keyboard.h | ||
kfifo.h | ||
kgdb.h | ||
khugepaged.h | ||
klist.h | ||
kmemcheck.h | ||
kmemleak.h | ||
kmod.h | ||
kmsg_dump.h | ||
kobj_map.h | ||
kobject_ns.h | ||
kobject.h | ||
kprobes.h | ||
kref.h | ||
ks0108.h | ||
ks8842.h | ||
ks8851_mll.h | ||
ksm.h | ||
kthread.h | ||
ktime.h | ||
kvm_host.h | ||
kvm_irqfd.h | ||
kvm_para.h | ||
kvm_types.h | ||
l2tp.h | ||
lapb.h | ||
latencytop.h | ||
lcd.h | ||
lcm.h | ||
led-class-flash.h | ||
led-lm3530.h | ||
leds_pwm.h | ||
leds-bd2802.h | ||
leds-lp3944.h | ||
leds-pca9532.h | ||
leds-regulator.h | ||
leds-tca6507.h | ||
leds.h | ||
lglock.h | ||
lguest_launcher.h | ||
lguest.h | ||
libata.h | ||
libfdt_env.h | ||
libfdt.h | ||
libnvdimm.h | ||
libps2.h | ||
license.h | ||
lightnvm.h | ||
linkage.h | ||
linux_logo.h | ||
lis3lv02d.h | ||
list_bl.h | ||
list_lru.h | ||
list_nulls.h | ||
list_sort.h | ||
list.h | ||
livepatch.h | ||
llc.h | ||
llist.h | ||
lockdep.h | ||
lockref.h | ||
log2.h | ||
lp.h | ||
lru_cache.h | ||
lsm_audit.h | ||
lsm_hooks.h | ||
lz4.h | ||
lzo.h | ||
m48t86.h | ||
mailbox_client.h | ||
mailbox_controller.h | ||
maple.h | ||
marvell_phy.h | ||
math64.h | ||
max17040_battery.h | ||
mbcache.h | ||
mbus.h | ||
mc6821.h | ||
mc146818rtc.h | ||
mcb.h | ||
mdio-bitbang.h | ||
mdio-mux.h | ||
mdio.h | ||
mei_cl_bus.h | ||
memblock.h | ||
memcontrol.h | ||
memory_hotplug.h | ||
memory.h | ||
mempolicy.h | ||
mempool.h | ||
memstick.h | ||
mg_disk.h | ||
mic_bus.h | ||
micrel_phy.h | ||
microchipphy.h | ||
migrate_mode.h | ||
migrate.h | ||
mii.h | ||
miscdevice.h | ||
mISDNdsp.h | ||
mISDNhw.h | ||
mISDNif.h | ||
mm_inline.h | ||
mm_types.h | ||
mm-arch-hooks.h | ||
mm.h | ||
mman.h | ||
mmdebug.h | ||
mmiotrace.h | ||
mmu_context.h | ||
mmu_notifier.h | ||
mmzone.h | ||
mnt_namespace.h | ||
mod_devicetable.h | ||
module.h | ||
moduleloader.h | ||
moduleparam.h | ||
mount.h | ||
mpage.h | ||
mpi.h | ||
mpls_iptunnel.h | ||
mpls.h | ||
mroute6.h | ||
mroute.h | ||
msdos_fs.h | ||
msg.h | ||
msi.h | ||
mutex-debug.h | ||
mutex.h | ||
mv643xx_eth.h | ||
mv643xx_i2c.h | ||
mv643xx.h | ||
mvebu-pmsu.h | ||
mxm-wmi.h | ||
n_r3964.h | ||
namei.h | ||
nd.h | ||
net.h | ||
netdev_features.h | ||
netdevice.h | ||
netfilter_bridge.h | ||
netfilter_defs.h | ||
netfilter_ingress.h | ||
netfilter_ipv4.h | ||
netfilter_ipv6.h | ||
netfilter.h | ||
netlink.h | ||
netpoll.h | ||
nfs3.h | ||
nfs4.h | ||
nfs_fs_i.h | ||
nfs_fs_sb.h | ||
nfs_fs.h | ||
nfs_iostat.h | ||
nfs_page.h | ||
nfs_xdr.h | ||
nfs.h | ||
nfsacl.h | ||
nilfs2_fs.h | ||
nl802154.h | ||
nls.h | ||
nmi.h | ||
node.h | ||
nodemask.h | ||
notifier.h | ||
ns_common.h | ||
nsc_gpio.h | ||
nsproxy.h | ||
ntb_transport.h | ||
ntb.h | ||
nubus.h | ||
numa.h | ||
nvme.h | ||
nvmem-consumer.h | ||
nvmem-provider.h | ||
nvram.h | ||
nwpserial.h | ||
of_address.h | ||
of_device.h | ||
of_dma.h | ||
of_fdt.h | ||
of_gpio.h | ||
of_graph.h | ||
of_iommu.h | ||
of_irq.h | ||
of_mdio.h | ||
of_mtd.h | ||
of_net.h | ||
of_pci.h | ||
of_pdt.h | ||
of_platform.h | ||
of_reserved_mem.h | ||
of.h | ||
oid_registry.h | ||
olpc-ec.h | ||
omap-dma.h | ||
omap-dmaengine.h | ||
omap-gpmc.h | ||
omap-iommu.h | ||
omap-mailbox.h | ||
omapfb.h | ||
once.h | ||
oom.h | ||
openvswitch.h | ||
oprofile.h | ||
osq_lock.h | ||
oxu210hp.h | ||
padata.h | ||
page_counter.h | ||
page_ext.h | ||
page_idle.h | ||
page_owner.h | ||
page-flags-layout.h | ||
page-flags.h | ||
page-isolation.h | ||
pageblock-flags.h | ||
pagemap.h | ||
pagevec.h | ||
parport_pc.h | ||
parport.h | ||
parser.h | ||
pata_arasan_cf_data.h | ||
patchkey.h | ||
path.h | ||
pch_dma.h | ||
pci_hotplug.h | ||
pci_ids.h | ||
pci-acpi.h | ||
pci-aspm.h | ||
pci-ats.h | ||
pci-dma.h | ||
pci.h | ||
pcieport_if.h | ||
pda_power.h | ||
pe.h | ||
percpu_counter.h | ||
percpu_ida.h | ||
percpu-defs.h | ||
percpu-refcount.h | ||
percpu-rwsem.h | ||
percpu.h | ||
perf_event.h | ||
perf_regs.h | ||
personality.h | ||
pfn.h | ||
phonet.h | ||
phy_fixed.h | ||
phy.h | ||
pid_namespace.h | ||
pid.h | ||
pim.h | ||
pipe_fs_i.h | ||
pktcdvd.h | ||
pl320-ipc.h | ||
platform_device.h | ||
plist.h | ||
pm2301_charger.h | ||
pm_clock.h | ||
pm_domain.h | ||
pm_opp.h | ||
pm_qos.h | ||
pm_runtime.h | ||
pm_wakeirq.h | ||
pm_wakeup.h | ||
pm-trace.h | ||
pm.h | ||
pmem.h | ||
pmu.h | ||
pnfs_osd_xdr.h | ||
pnp.h | ||
poison.h | ||
poll.h | ||
posix_acl_xattr.h | ||
posix_acl.h | ||
posix-clock.h | ||
posix-timers.h | ||
power_supply.h | ||
powercap.h | ||
ppp_channel.h | ||
ppp_defs.h | ||
ppp-comp.h | ||
pps_kernel.h | ||
pps-gpio.h | ||
pr.h | ||
preempt.h | ||
prefetch.h | ||
printk.h | ||
proc_fs.h | ||
proc_ns.h | ||
profile.h | ||
projid.h | ||
property.h | ||
proportions.h | ||
psci.h | ||
pstore_ram.h | ||
pstore.h | ||
pti.h | ||
ptp_classify.h | ||
ptp_clock_kernel.h | ||
ptrace.h | ||
pvclock_gtod.h | ||
pwm_backlight.h | ||
pwm.h | ||
pxa2xx_ssp.h | ||
pxa168_eth.h | ||
qcom_scm.h | ||
qnx6_fs.h | ||
quicklist.h | ||
quota.h | ||
quotaops.h | ||
radix-tree.h | ||
raid_class.h | ||
ramfs.h | ||
random.h | ||
range.h | ||
ras.h | ||
ratelimit.h | ||
rational.h | ||
rbtree_augmented.h | ||
rbtree_latch.h | ||
rbtree.h | ||
rcu_sync.h | ||
rculist_bl.h | ||
rculist_nulls.h | ||
rculist.h | ||
rcupdate.h | ||
rcutiny.h | ||
rcutree.h | ||
reboot.h | ||
reciprocal_div.h | ||
regmap.h | ||
regset.h | ||
relay.h | ||
remoteproc.h | ||
reservation.h | ||
reset-controller.h | ||
reset.h | ||
resource_ext.h | ||
resource.h | ||
rfkill-gpio.h | ||
rfkill-regulator.h | ||
rfkill.h | ||
rhashtable.h | ||
ring_buffer.h | ||
rio_drv.h | ||
rio_ids.h | ||
rio_regs.h | ||
rio.h | ||
rmap.h | ||
rndis.h | ||
root_dev.h | ||
rotary_encoder.h | ||
rpmsg.h | ||
rslib.h | ||
rtc-ds2404.h | ||
rtc-v3020.h | ||
rtc.h | ||
rtmutex.h | ||
rtnetlink.h | ||
rwlock_api_smp.h | ||
rwlock_types.h | ||
rwlock.h | ||
rwsem-spinlock.h | ||
rwsem.h | ||
rxrpc.h | ||
s3c_adc_battery.h | ||
sa11x0-dma.h | ||
scatterlist.h | ||
scc.h | ||
sched_clock.h | ||
sched.h | ||
scif.h | ||
scpi_protocol.h | ||
screen_info.h | ||
sctp.h | ||
scx200_gpio.h | ||
scx200.h | ||
sdb.h | ||
sdla.h | ||
seccomp.h | ||
securebits.h | ||
security.h | ||
selection.h | ||
selinux.h | ||
sem.h | ||
semaphore.h | ||
seq_buf.h | ||
seq_file_net.h | ||
seq_file.h | ||
seqlock.h | ||
seqno-fence.h | ||
serial_8250.h | ||
serial_bcm63xx.h | ||
serial_core.h | ||
serial_max3100.h | ||
serial_pnx8xxx.h | ||
serial_s3c.h | ||
serial_sci.h | ||
serial.h | ||
serio.h | ||
sfi_acpi.h | ||
sfi.h | ||
sh_clk.h | ||
sh_dma.h | ||
sh_eth.h | ||
sh_intc.h | ||
sh_timer.h | ||
shdma-base.h | ||
shm.h | ||
shmem_fs.h | ||
shrinker.h | ||
signal.h | ||
signalfd.h | ||
sirfsoc_dma.h | ||
sizes.h | ||
skbuff.h | ||
slab_def.h | ||
slab.h | ||
slub_def.h | ||
sm501-regs.h | ||
sm501.h | ||
smc91x.h | ||
smc911x.h | ||
smp.h | ||
smpboot.h | ||
smsc911x.h | ||
smscphy.h | ||
sock_diag.h | ||
socket.h | ||
sonet.h | ||
sony-laptop.h | ||
sonypi.h | ||
sort.h | ||
sound.h | ||
soundcard.h | ||
spinlock_api_smp.h | ||
spinlock_api_up.h | ||
spinlock_types_up.h | ||
spinlock_types.h | ||
spinlock_up.h | ||
spinlock.h | ||
splice.h | ||
spmi.h | ||
srcu.h | ||
ssbi.h | ||
stackprotector.h | ||
stacktrace.h | ||
start_kernel.h | ||
stat.h | ||
statfs.h | ||
static_key.h | ||
stddef.h | ||
ste_modem_shm.h | ||
stm.h | ||
stmmac.h | ||
stmp3xxx_rtc_wdt.h | ||
stmp_device.h | ||
stop_machine.h | ||
string_helpers.h | ||
string.h | ||
stringify.h | ||
sudmac.h | ||
sungem_phy.h | ||
sunserialcore.h | ||
sunxi-rsb.h | ||
superhyway.h | ||
suspend.h | ||
svga.h | ||
sw842.h | ||
swab.h | ||
swap_cgroup.h | ||
swap.h | ||
swapfile.h | ||
swapops.h | ||
swiotlb.h | ||
sxgbe_platform.h | ||
synclink.h | ||
sys_soc.h | ||
sys.h | ||
syscalls.h | ||
syscore_ops.h | ||
sysctl.h | ||
sysfs.h | ||
syslog.h | ||
sysrq.h | ||
sysv_fs.h | ||
t10-pi.h | ||
task_io_accounting_ops.h | ||
task_io_accounting.h | ||
task_work.h | ||
taskstats_kern.h | ||
tboot.h | ||
tc.h | ||
tca6416_keypad.h | ||
tcp.h | ||
textsearch_fsm.h | ||
textsearch.h | ||
tfrc.h | ||
thermal.h | ||
thinkpad_acpi.h | ||
thread_info.h | ||
threads.h | ||
ti_wilink_st.h | ||
tick.h | ||
tifm.h | ||
timb_dma.h | ||
timb_gpio.h | ||
time64.h | ||
time.h | ||
timecounter.h | ||
timekeeper_internal.h | ||
timekeeping.h | ||
timer.h | ||
timerfd.h | ||
timeriomem-rng.h | ||
timerqueue.h | ||
timex.h | ||
topology.h | ||
torture.h | ||
toshiba.h | ||
tpm_command.h | ||
tpm.h | ||
trace_clock.h | ||
trace_events.h | ||
trace_seq.h | ||
tracefs.h | ||
tracehook.h | ||
tracepoint-defs.h | ||
tracepoint.h | ||
transport_class.h | ||
tsacct_kern.h | ||
tty_driver.h | ||
tty_flip.h | ||
tty_ldisc.h | ||
tty.h | ||
typecheck.h | ||
types.h | ||
u64_stats_sync.h | ||
uaccess.h | ||
ucb1400.h | ||
ucs2_string.h | ||
udp.h | ||
uidgid.h | ||
uinput.h | ||
uio_driver.h | ||
uio.h | ||
uprobes.h | ||
usb_usual.h | ||
usb.h | ||
usbdevice_fs.h | ||
user_namespace.h | ||
user-return-notifier.h | ||
user.h | ||
userfaultfd_k.h | ||
util_macros.h | ||
uts.h | ||
utsname.h | ||
uuid.h | ||
uwb.h | ||
verify_pefile.h | ||
vermagic.h | ||
vexpress.h | ||
vfio.h | ||
vfs.h | ||
vga_switcheroo.h | ||
vgaarb.h | ||
via_i2c.h | ||
via-core.h | ||
via-gpio.h | ||
via.h | ||
videodev2.h | ||
virtio_byteorder.h | ||
virtio_caif.h | ||
virtio_config.h | ||
virtio_console.h | ||
virtio_mmio.h | ||
virtio_ring.h | ||
virtio.h | ||
vlynq.h | ||
vm_event_item.h | ||
vm_sockets.h | ||
vmacache.h | ||
vmalloc.h | ||
vme.h | ||
vmpressure.h | ||
vmstat.h | ||
vmw_vmci_api.h | ||
vmw_vmci_defs.h | ||
vringh.h | ||
vt_buffer.h | ||
vt_kern.h | ||
vt.h | ||
vtime.h | ||
w1-gpio.h | ||
wait.h | ||
wanrouter.h | ||
watchdog.h | ||
wireless.h | ||
wl12xx.h | ||
wm97xx.h | ||
workqueue.h | ||
writeback.h | ||
ww_mutex.h | ||
xattr.h | ||
xz.h | ||
yam.h | ||
z2_battery.h | ||
zbud.h | ||
zconf.h | ||
zlib.h | ||
zorro.h | ||
zpool.h | ||
zsmalloc.h | ||
zutil.h |