PATH:
usr
/
src
/
linux-headers-5.4.0-215
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 */ /* * Counter interface * Copyright (C) 2018 William Breathitt Gray */ #ifndef _COUNTER_H_ #define _COUNTER_H_ #include <linux/counter_enum.h> #include <linux/device.h> #include <linux/types.h> enum counter_count_direction { COUNTER_COUNT_DIRECTION_FORWARD = 0, COUNTER_COUNT_DIRECTION_BACKWARD }; extern const char *const counter_count_direction_str[2]; enum counter_count_mode { COUNTER_COUNT_MODE_NORMAL = 0, COUNTER_COUNT_MODE_RANGE_LIMIT, COUNTER_COUNT_MODE_NON_RECYCLE, COUNTER_COUNT_MODE_MODULO_N }; extern const char *const counter_count_mode_str[4]; struct counter_device; struct counter_signal; /** * struct counter_signal_ext - Counter Signal extensions * @name: attribute name * @read: read callback for this attribute; may be NULL * @write: write callback for this attribute; may be NULL * @priv: data private to the driver */ struct counter_signal_ext { const char *name; ssize_t (*read)(struct counter_device *counter, struct counter_signal *signal, void *priv, char *buf); ssize_t (*write)(struct counter_device *counter, struct counter_signal *signal, void *priv, const char *buf, size_t len); void *priv; }; /** * struct counter_signal - Counter Signal node * @id: unique ID used to identify signal * @name: device-specific Signal name; ideally, this should match the name * as it appears in the datasheet documentation * @ext: optional array of Counter Signal extensions * @num_ext: number of Counter Signal extensions specified in @ext * @priv: optional private data supplied by driver */ struct counter_signal { int id; const char *name; const struct counter_signal_ext *ext; size_t num_ext; void *priv; }; /** * struct counter_signal_enum_ext - Signal enum extension attribute * @items: Array of strings * @num_items: Number of items specified in @items * @set: Set callback function; may be NULL * @get: Get callback function; may be NULL * * The counter_signal_enum_ext structure can be used to implement enum style * Signal extension attributes. Enum style attributes are those which have a set * of strings that map to unsigned integer values. The Generic Counter Signal * enum extension helper code takes care of mapping between value and string, as * well as generating a "_available" file which contains a list of all available * items. The get callback is used to query the currently active item; the index * of the item within the respective items array is returned via the 'item' * parameter. The set callback is called when the attribute is updated; the * 'item' parameter contains the index of the newly activated item within the * respective items array. */ struct counter_signal_enum_ext { const char * const *items; size_t num_items; int (*get)(struct counter_device *counter, struct counter_signal *signal, size_t *item); int (*set)(struct counter_device *counter, struct counter_signal *signal, size_t item); }; /** * COUNTER_SIGNAL_ENUM() - Initialize Signal enum extension * @_name: Attribute name * @_e: Pointer to a counter_signal_enum_ext structure * * This should usually be used together with COUNTER_SIGNAL_ENUM_AVAILABLE() */ #define COUNTER_SIGNAL_ENUM(_name, _e) \ { \ .name = (_name), \ .read = counter_signal_enum_read, \ .write = counter_signal_enum_write, \ .priv = (_e) \ } /** * COUNTER_SIGNAL_ENUM_AVAILABLE() - Initialize Signal enum available extension * @_name: Attribute name ("_available" will be appended to the name) * @_e: Pointer to a counter_signal_enum_ext structure * * Creates a read only attribute that lists all the available enum items in a * newline separated list. This should usually be used together with * COUNTER_SIGNAL_ENUM() */ #define COUNTER_SIGNAL_ENUM_AVAILABLE(_name, _e) \ { \ .name = (_name "_available"), \ .read = counter_signal_enum_available_read, \ .priv = (_e) \ } enum counter_synapse_action { COUNTER_SYNAPSE_ACTION_NONE = 0, COUNTER_SYNAPSE_ACTION_RISING_EDGE, COUNTER_SYNAPSE_ACTION_FALLING_EDGE, COUNTER_SYNAPSE_ACTION_BOTH_EDGES }; /** * struct counter_synapse - Counter Synapse node * @action: index of current action mode * @actions_list: array of available action modes * @num_actions: number of action modes specified in @actions_list * @signal: pointer to associated signal */ struct counter_synapse { size_t action; const enum counter_synapse_action *actions_list; size_t num_actions; struct counter_signal *signal; }; struct counter_count; /** * struct counter_count_ext - Counter Count extension * @name: attribute name * @read: read callback for this attribute; may be NULL * @write: write callback for this attribute; may be NULL * @priv: data private to the driver */ struct counter_count_ext { const char *name; ssize_t (*read)(struct counter_device *counter, struct counter_count *count, void *priv, char *buf); ssize_t (*write)(struct counter_device *counter, struct counter_count *count, void *priv, const char *buf, size_t len); void *priv; }; enum counter_count_function { COUNTER_COUNT_FUNCTION_INCREASE = 0, COUNTER_COUNT_FUNCTION_DECREASE, COUNTER_COUNT_FUNCTION_PULSE_DIRECTION, COUNTER_COUNT_FUNCTION_QUADRATURE_X1_A, COUNTER_COUNT_FUNCTION_QUADRATURE_X1_B, COUNTER_COUNT_FUNCTION_QUADRATURE_X2_A, COUNTER_COUNT_FUNCTION_QUADRATURE_X2_B, COUNTER_COUNT_FUNCTION_QUADRATURE_X4 }; /** * struct counter_count - Counter Count node * @id: unique ID used to identify Count * @name: device-specific Count name; ideally, this should match * the name as it appears in the datasheet documentation * @function: index of current function mode * @functions_list: array available function modes * @num_functions: number of function modes specified in @functions_list * @synapses: array of synapses for initialization * @num_synapses: number of synapses specified in @synapses * @ext: optional array of Counter Count extensions * @num_ext: number of Counter Count extensions specified in @ext * @priv: optional private data supplied by driver */ struct counter_count { int id; const char *name; size_t function; const enum counter_count_function *functions_list; size_t num_functions; struct counter_synapse *synapses; size_t num_synapses; const struct counter_count_ext *ext; size_t num_ext; void *priv; }; /** * struct counter_count_enum_ext - Count enum extension attribute * @items: Array of strings * @num_items: Number of items specified in @items * @set: Set callback function; may be NULL * @get: Get callback function; may be NULL * * The counter_count_enum_ext structure can be used to implement enum style * Count extension attributes. Enum style attributes are those which have a set * of strings that map to unsigned integer values. The Generic Counter Count * enum extension helper code takes care of mapping between value and string, as * well as generating a "_available" file which contains a list of all available * items. The get callback is used to query the currently active item; the index * of the item within the respective items array is returned via the 'item' * parameter. The set callback is called when the attribute is updated; the * 'item' parameter contains the index of the newly activated item within the * respective items array. */ struct counter_count_enum_ext { const char * const *items; size_t num_items; int (*get)(struct counter_device *counter, struct counter_count *count, size_t *item); int (*set)(struct counter_device *counter, struct counter_count *count, size_t item); }; /** * COUNTER_COUNT_ENUM() - Initialize Count enum extension * @_name: Attribute name * @_e: Pointer to a counter_count_enum_ext structure * * This should usually be used together with COUNTER_COUNT_ENUM_AVAILABLE() */ #define COUNTER_COUNT_ENUM(_name, _e) \ { \ .name = (_name), \ .read = counter_count_enum_read, \ .write = counter_count_enum_write, \ .priv = (_e) \ } /** * COUNTER_COUNT_ENUM_AVAILABLE() - Initialize Count enum available extension * @_name: Attribute name ("_available" will be appended to the name) * @_e: Pointer to a counter_count_enum_ext structure * * Creates a read only attribute that lists all the available enum items in a * newline separated list. This should usually be used together with * COUNTER_COUNT_ENUM() */ #define COUNTER_COUNT_ENUM_AVAILABLE(_name, _e) \ { \ .name = (_name "_available"), \ .read = counter_count_enum_available_read, \ .priv = (_e) \ } /** * struct counter_device_attr_group - internal container for attribute group * @attr_group: Counter sysfs attributes group * @attr_list: list to keep track of created Counter sysfs attributes * @num_attr: number of Counter sysfs attributes */ struct counter_device_attr_group { struct attribute_group attr_group; struct list_head attr_list; size_t num_attr; }; /** * struct counter_device_state - internal state container for a Counter device * @id: unique ID used to identify the Counter * @dev: internal device structure * @groups_list: attribute groups list (for Signals, Counts, and ext) * @num_groups: number of attribute groups containers * @groups: Counter sysfs attribute groups (to populate @dev.groups) */ struct counter_device_state { int id; struct device dev; struct counter_device_attr_group *groups_list; size_t num_groups; const struct attribute_group **groups; }; /** * struct counter_signal_read_value - Opaque Signal read value * @buf: string representation of Signal read value * @len: length of string in @buf */ struct counter_signal_read_value { char *buf; size_t len; }; /** * struct counter_count_read_value - Opaque Count read value * @buf: string representation of Count read value * @len: length of string in @buf */ struct counter_count_read_value { char *buf; size_t len; }; /** * struct counter_count_write_value - Opaque Count write value * @buf: string representation of Count write value */ struct counter_count_write_value { const char *buf; }; /** * struct counter_ops - Callbacks from driver * @signal_read: optional read callback for Signal attribute. The read * value of the respective Signal should be passed back via * the val parameter. val points to an opaque type which * should be set only by calling the * counter_signal_read_value_set function from within the * signal_read callback. * @count_read: optional read callback for Count attribute. The read * value of the respective Count should be passed back via * the val parameter. val points to an opaque type which * should be set only by calling the * counter_count_read_value_set function from within the * count_read callback. * @count_write: optional write callback for Count attribute. The write * value for the respective Count is passed in via the val * parameter. val points to an opaque type which should be * accessed only by calling the * counter_count_write_value_get function. * @function_get: function to get the current count function mode. Returns * 0 on success and negative error code on error. The index * of the respective Count's returned function mode should * be passed back via the function parameter. * @function_set: function to set the count function mode. function is the * index of the requested function mode from the respective * Count's functions_list array. * @action_get: function to get the current action mode. Returns 0 on * success and negative error code on error. The index of * the respective Signal's returned action mode should be * passed back via the action parameter. * @action_set: function to set the action mode. action is the index of * the requested action mode from the respective Synapse's * actions_list array. */ struct counter_ops { int (*signal_read)(struct counter_device *counter, struct counter_signal *signal, struct counter_signal_read_value *val); int (*count_read)(struct counter_device *counter, struct counter_count *count, struct counter_count_read_value *val); int (*count_write)(struct counter_device *counter, struct counter_count *count, struct counter_count_write_value *val); int (*function_get)(struct counter_device *counter, struct counter_count *count, size_t *function); int (*function_set)(struct counter_device *counter, struct counter_count *count, size_t function); int (*action_get)(struct counter_device *counter, struct counter_count *count, struct counter_synapse *synapse, size_t *action); int (*action_set)(struct counter_device *counter, struct counter_count *count, struct counter_synapse *synapse, size_t action); }; /** * struct counter_device_ext - Counter device extension * @name: attribute name * @read: read callback for this attribute; may be NULL * @write: write callback for this attribute; may be NULL * @priv: data private to the driver */ struct counter_device_ext { const char *name; ssize_t (*read)(struct counter_device *counter, void *priv, char *buf); ssize_t (*write)(struct counter_device *counter, void *priv, const char *buf, size_t len); void *priv; }; /** * struct counter_device_enum_ext - Counter enum extension attribute * @items: Array of strings * @num_items: Number of items specified in @items * @set: Set callback function; may be NULL * @get: Get callback function; may be NULL * * The counter_device_enum_ext structure can be used to implement enum style * Counter extension attributes. Enum style attributes are those which have a * set of strings that map to unsigned integer values. The Generic Counter enum * extension helper code takes care of mapping between value and string, as well * as generating a "_available" file which contains a list of all available * items. The get callback is used to query the currently active item; the index * of the item within the respective items array is returned via the 'item' * parameter. The set callback is called when the attribute is updated; the * 'item' parameter contains the index of the newly activated item within the * respective items array. */ struct counter_device_enum_ext { const char * const *items; size_t num_items; int (*get)(struct counter_device *counter, size_t *item); int (*set)(struct counter_device *counter, size_t item); }; /** * COUNTER_DEVICE_ENUM() - Initialize Counter enum extension * @_name: Attribute name * @_e: Pointer to a counter_device_enum_ext structure * * This should usually be used together with COUNTER_DEVICE_ENUM_AVAILABLE() */ #define COUNTER_DEVICE_ENUM(_name, _e) \ { \ .name = (_name), \ .read = counter_device_enum_read, \ .write = counter_device_enum_write, \ .priv = (_e) \ } /** * COUNTER_DEVICE_ENUM_AVAILABLE() - Initialize Counter enum available extension * @_name: Attribute name ("_available" will be appended to the name) * @_e: Pointer to a counter_device_enum_ext structure * * Creates a read only attribute that lists all the available enum items in a * newline separated list. This should usually be used together with * COUNTER_DEVICE_ENUM() */ #define COUNTER_DEVICE_ENUM_AVAILABLE(_name, _e) \ { \ .name = (_name "_available"), \ .read = counter_device_enum_available_read, \ .priv = (_e) \ } /** * struct counter_device - Counter data structure * @name: name of the device as it appears in the datasheet * @parent: optional parent device providing the counters * @device_state: internal device state container * @ops: callbacks from driver * @signals: array of Signals * @num_signals: number of Signals specified in @signals * @counts: array of Counts * @num_counts: number of Counts specified in @counts * @ext: optional array of Counter device extensions * @num_ext: number of Counter device extensions specified in @ext * @priv: optional private data supplied by driver */ struct counter_device { const char *name; struct device *parent; struct counter_device_state *device_state; const struct counter_ops *ops; struct counter_signal *signals; size_t num_signals; struct counter_count *counts; size_t num_counts; const struct counter_device_ext *ext; size_t num_ext; void *priv; }; enum counter_signal_level { COUNTER_SIGNAL_LEVEL_LOW = 0, COUNTER_SIGNAL_LEVEL_HIGH }; enum counter_signal_value_type { COUNTER_SIGNAL_LEVEL = 0 }; enum counter_count_value_type { COUNTER_COUNT_POSITION = 0, }; void counter_signal_read_value_set(struct counter_signal_read_value *const val, const enum counter_signal_value_type type, void *const data); void counter_count_read_value_set(struct counter_count_read_value *const val, const enum counter_count_value_type type, void *const data); int counter_count_write_value_get(void *const data, const enum counter_count_value_type type, const struct counter_count_write_value *const val); int counter_register(struct counter_device *const counter); void counter_unregister(struct counter_device *const counter); int devm_counter_register(struct device *dev, struct counter_device *const counter); void devm_counter_unregister(struct device *dev, struct counter_device *const counter); #endif /* _COUNTER_H_ */
[+]
..
[-] rpmsg.h
[edit]
[-] tty_ldisc.h
[edit]
[-] io-64-nonatomic-hi-lo.h
[edit]
[-] fsl_devices.h
[edit]
[-] ipc_namespace.h
[edit]
[+]
avf
[-] kvm_irqfd.h
[edit]
[-] pwm.h
[edit]
[-] lz4.h
[edit]
[-] virtio_byteorder.h
[edit]
[-] icmp.h
[edit]
[-] sysfs.h
[edit]
[-] sync_file.h
[edit]
[-] elf-fdpic.h
[edit]
[-] pmu.h
[edit]
[-] dm-bufio.h
[edit]
[-] kernelcapi.h
[edit]
[-] if_tap.h
[edit]
[-] serial_bcm63xx.h
[edit]
[+]
decompress
[+]
dsa
[-] connector.h
[edit]
[-] rmap.h
[edit]
[-] ndctl.h
[edit]
[-] ktime.h
[edit]
[-] sh_intc.h
[edit]
[-] timer.h
[edit]
[-] win_minmax.h
[edit]
[-] rslib.h
[edit]
[-] gameport.h
[edit]
[-] hrtimer.h
[edit]
[-] irqreturn.h
[edit]
[-] compiler.h
[edit]
[+]
netfilter
[-] page_idle.h
[edit]
[-] swiotlb.h
[edit]
[-] falloc.h
[edit]
[-] fs_enet_pd.h
[edit]
[-] fd.h
[edit]
[-] assoc_array_priv.h
[edit]
[-] kern_levels.h
[edit]
[+]
unaligned
[-] openvswitch.h
[edit]
[-] nls.h
[edit]
[-] io-64-nonatomic-lo-hi.h
[edit]
[-] attribute_container.h
[edit]
[-] powercap.h
[edit]
[-] stmmac.h
[edit]
[-] bch.h
[edit]
[-] omapfb.h
[edit]
[-] dm-io.h
[edit]
[-] userfaultfd_k.h
[edit]
[-] hid-sensor-ids.h
[edit]
[-] vmalloc.h
[edit]
[-] mISDNhw.h
[edit]
[-] seq_file_net.h
[edit]
[-] pm.h
[edit]
[-] phy_led_triggers.h
[edit]
[-] container.h
[edit]
[+]
byteorder
[-] vmw_vmci_defs.h
[edit]
[-] apple-gmux.h
[edit]
[-] pda_power.h
[edit]
[-] uidgid.h
[edit]
[-] sysv_fs.h
[edit]
[-] seg6_genl.h
[edit]
[-] adfs_fs.h
[edit]
[-] mISDNif.h
[edit]
[-] mod_devicetable.h
[edit]
[-] if_macvlan.h
[edit]
[-] idle_inject.h
[edit]
[-] psci.h
[edit]
[-] rio_regs.h
[edit]
[-] fbcon.h
[edit]
[-] interconnect.h
[edit]
[-] thread_info.h
[edit]
[-] ecryptfs.h
[edit]
[-] sm501-regs.h
[edit]
[-] videodev2.h
[edit]
[-] crc16.h
[edit]
[-] rwlock_api_smp.h
[edit]
[-] netdev_features.h
[edit]
[-] efi-bgrt.h
[edit]
[-] pm_clock.h
[edit]
[-] nvme.h
[edit]
[-] dma-noncoherent.h
[edit]
[-] delay.h
[edit]
[-] dma-iommu.h
[edit]
[-] if_rmnet.h
[edit]
[-] netfilter_defs.h
[edit]
[-] netfilter_bridge.h
[edit]
[-] mv643xx.h
[edit]
[-] ssbi.h
[edit]
[-] of_dma.h
[edit]
[+]
soc
[-] mmiotrace.h
[edit]
[-] asn1_decoder.h
[edit]
[-] if_bridge.h
[edit]
[-] arm-smccc.h
[edit]
[-] coresight.h
[edit]
[-] dcookies.h
[edit]
[-] spinlock_up.h
[edit]
[-] of_address.h
[edit]
[-] isapnp.h
[edit]
[-] pstore_ram.h
[edit]
[-] msg.h
[edit]
[-] dtlk.h
[edit]
[-] mmdebug.h
[edit]
[-] blk-mq-rdma.h
[edit]
[-] tcp.h
[edit]
[-] dma-mapping.h
[edit]
[-] gfp.h
[edit]
[-] nd.h
[edit]
[-] kvm_host.h
[edit]
[+]
ceph
[+]
iio
[-] bpf_lirc.h
[edit]
[-] kdebug.h
[edit]
[-] mutex.h
[edit]
[-] pata_arasan_cf_data.h
[edit]
[-] blkpg.h
[edit]
[-] io-pgtable.h
[edit]
[-] overflow.h
[edit]
[-] genalloc.h
[edit]
[-] blkdev.h
[edit]
[-] atm_tcp.h
[edit]
[-] ppp-comp.h
[edit]
[-] kprobes.h
[edit]
[+]
mmc
[-] hw_breakpoint.h
[edit]
[-] via-core.h
[edit]
[-] semaphore.h
[edit]
[-] genl_magic_func.h
[edit]
[-] memcontrol.h
[edit]
[-] intel-svm.h
[edit]
[-] i2c-algo-bit.h
[edit]
[-] io.h
[edit]
[-] build-salt.h
[edit]
[-] ipmi.h
[edit]
[-] qnx6_fs.h
[edit]
[-] spinlock_api_up.h
[edit]
[-] mpage.h
[edit]
[+]
soundwire
[-] iommu.h
[edit]
[-] security.h
[edit]
[-] parport_pc.h
[edit]
[-] ptrace.h
[edit]
[-] getcpu.h
[edit]
[-] xattr.h
[edit]
[-] raid_class.h
[edit]
[-] mm_inline.h
[edit]
[-] node.h
[edit]
[-] inet_diag.h
[edit]
[-] goldfish.h
[edit]
[-] bitfield.h
[edit]
[-] memblock.h
[edit]
[-] bsearch.h
[edit]
[-] compiler_attributes.h
[edit]
[-] kexec.h
[edit]
[-] pci-ecam.h
[edit]
[-] via.h
[edit]
[-] cgroup.h
[edit]
[-] dma-debug.h
[edit]
[-] swap_cgroup.h
[edit]
[-] nospec.h
[edit]
[-] seg6_iptunnel.h
[edit]
[+]
i3c
[-] errno.h
[edit]
[-] if_eql.h
[edit]
[-] stackleak.h
[edit]
[-] leds-lp3952.h
[edit]
[-] icmpv6.h
[edit]
[+]
mailbox
[-] timerqueue.h
[edit]
[-] memremap.h
[edit]
[-] bsg.h
[edit]
[+]
firmware
[-] task_io_accounting_ops.h
[edit]
[-] uts.h
[edit]
[-] module.h
[edit]
[-] hashtable.h
[edit]
[-] sfi_acpi.h
[edit]
[-] iommu-helper.h
[edit]
[-] flex_proportions.h
[edit]
[-] srcutiny.h
[edit]
[-] posix-clock.h
[edit]
[+]
mlx4
[-] lcd.h
[edit]
[+]
wimax
[-] dm-dirty-log.h
[edit]
[-] dnotify.h
[edit]
[-] ipmi-fru.h
[edit]
[-] acpi_iort.h
[edit]
[-] mc6821.h
[edit]
[-] dm-kcopyd.h
[edit]
[-] backing-dev.h
[edit]
[-] edd.h
[edit]
[-] btree-128.h
[edit]
[-] scpi_protocol.h
[edit]
[-] nfsacl.h
[edit]
[-] stringify.h
[edit]
[-] init.h
[edit]
[-] integrity.h
[edit]
[-] bcm963xx_tag.h
[edit]
[+]
sched
[-] earlycpio.h
[edit]
[-] fec.h
[edit]
[-] dim.h
[edit]
[-] rio_drv.h
[edit]
[-] gpio-pxa.h
[edit]
[-] exportfs.h
[edit]
[-] pxa168_eth.h
[edit]
[-] stat.h
[edit]
[-] microchipphy.h
[edit]
[-] shrinker.h
[edit]
[-] kcov.h
[edit]
[-] olpc-ec.h
[edit]
[-] ns_common.h
[edit]
[-] netfilter.h
[edit]
[-] sm501.h
[edit]
[-] parser.h
[edit]
[-] cordic.h
[edit]
[-] restart_block.h
[edit]
[-] mroute_base.h
[edit]
[-] resource_ext.h
[edit]
[-] rndis.h
[edit]
[-] bit_spinlock.h
[edit]
[-] tboot.h
[edit]
[-] tracehook.h
[edit]
[-] ipack.h
[edit]
[-] err.h
[edit]
[-] fscrypt.h
[edit]
[-] syslog.h
[edit]
[-] mc146818rtc.h
[edit]
[-] seg6.h
[edit]
[-] skb_array.h
[edit]
[-] mISDNdsp.h
[edit]
[-] irq_sim.h
[edit]
[-] kasan-checks.h
[edit]
[-] pci_hotplug.h
[edit]
[-] gpio_keys.h
[edit]
[-] oprofile.h
[edit]
[-] arm_sdei.h
[edit]
[-] sunxi-rsb.h
[edit]
[-] ucb1400.h
[edit]
[-] stm.h
[edit]
[-] hardirq.h
[edit]
[-] xz.h
[edit]
[-] sys.h
[edit]
[-] lightnvm.h
[edit]
[-] mroute6.h
[edit]
[-] atmdev.h
[edit]
[-] sort.h
[edit]
[-] cpu_pm.h
[edit]
[-] mmu_notifier.h
[edit]
[-] z2_battery.h
[edit]
[-] types.h
[edit]
[-] rtmutex.h
[edit]
[-] purgatory.h
[edit]
[-] hil.h
[edit]
[-] printk.h
[edit]
[-] ide.h
[edit]
[-] mm-arch-hooks.h
[edit]
[-] sfi.h
[edit]
[-] devcoredump.h
[edit]
[-] ipmi_smi.h
[edit]
[-] bcm47xx_sprom.h
[edit]
[-] uaccess.h
[edit]
[-] dmar.h
[edit]
[-] kthread.h
[edit]
[-] journal-head.h
[edit]
[-] wm97xx.h
[edit]
[-] irqhandler.h
[edit]
[-] lockdep.h
[edit]
[-] fs_pin.h
[edit]
[-] kbuild.h
[edit]
[-] pstore.h
[edit]
[-] kernel.h
[edit]
[-] blktrace_api.h
[edit]
[-] consolemap.h
[edit]
[-] fsi-occ.h
[edit]
[-] poll.h
[edit]
[-] pvclock_gtod.h
[edit]
[-] lantiq.h
[edit]
[-] list_nulls.h
[edit]
[+]
power
[-] file.h
[edit]
[-] netdevice.h
[edit]
[-] host1x.h
[edit]
[-] eventpoll.h
[edit]
[-] vt_buffer.h
[edit]
[-] page_ref.h
[edit]
[-] ti_wilink_st.h
[edit]
[-] coda.h
[edit]
[-] hil_mlc.h
[edit]
[-] kconfig.h
[edit]
[-] rtc.h
[edit]
[-] rhashtable-types.h
[edit]
[-] workqueue.h
[edit]
[-] device.h
[edit]
[-] hdmi.h
[edit]
[-] intel-ish-client-if.h
[edit]
[-] osq_lock.h
[edit]
[-] buffer_head.h
[edit]
[-] firmware.h
[edit]
[-] ratelimit.h
[edit]
[-] jiffies.h
[edit]
[-] bpf.h
[edit]
[-] aio.h
[edit]
[-] bitops.h
[edit]
[-] cpumask.h
[edit]
[-] cpuset.h
[edit]
[-] cuda.h
[edit]
[-] nvme-fc-driver.h
[edit]
[-] apm_bios.h
[edit]
[-] eeprom_93cx6.h
[edit]
[-] lru_cache.h
[edit]
[-] export.h
[edit]
[-] apm-emulation.h
[edit]
[-] coresight-stm.h
[edit]
[-] crc32c.h
[edit]
[-] skmsg.h
[edit]
[-] leds-bd2802.h
[edit]
[-] acpi.h
[edit]
[-] auto_dev-ioctl.h
[edit]
[-] nfs4.h
[edit]
[-] cgroup-defs.h
[edit]
[-] gnss.h
[edit]
[-] jbd2.h
[edit]
[-] signal_types.h
[edit]
[-] topology.h
[edit]
[-] patchkey.h
[edit]
[-] sed-opal.h
[edit]
[-] timerfd.h
[edit]
[-] devfreq_cooling.h
[edit]
[-] stackprotector.h
[edit]
[-] pid_namespace.h
[edit]
[-] seq_buf.h
[edit]
[-] f2fs_fs.h
[edit]
[-] asn1.h
[edit]
[-] atmel_pdc.h
[edit]
[-] parman.h
[edit]
[-] intel_rapl.h
[edit]
[-] atomic-fallback.h
[edit]
[-] altera_uart.h
[edit]
[-] virtio_console.h
[edit]
[-] count_zeros.h
[edit]
[-] aer.h
[edit]
[-] bpf_types.h
[edit]
[-] mpls_iptunnel.h
[edit]
[-] zpool.h
[edit]
[-] serdev.h
[edit]
[-] scmi_protocol.h
[edit]
[-] context_tracking_state.h
[edit]
[-] rbtree.h
[edit]
[-] mcb.h
[edit]
[-] ksm.h
[edit]
[-] cpuhotplug.h
[edit]
[-] hpet.h
[edit]
[-] shm.h
[edit]
[-] b1pcmcia.h
[edit]
[-] inet.h
[edit]
[-] mount.h
[edit]
[-] btrfs.h
[edit]
[-] cache.h
[edit]
[-] cnt32_to_63.h
[edit]
[-] rcu_sync.h
[edit]
[-] agp_backend.h
[edit]
[-] console.h
[edit]
[-] compiler_types.h
[edit]
[-] if_phonet.h
[edit]
[-] module_signature.h
[edit]
[+]
rpmsg
[-] stmp_device.h
[edit]
[-] const.h
[edit]
[-] sungem_phy.h
[edit]
[-] svga.h
[edit]
[-] cleancache.h
[edit]
[-] stmp3xxx_rtc_wdt.h
[edit]
[-] bpf_trace.h
[edit]
[+]
netfilter_ipv6
[+]
hsi
[+]
greybus
[-] if_team.h
[edit]
[-] vme.h
[edit]
[-] sysrq.h
[edit]
[-] dca.h
[edit]
[+]
can
[-] flat.h
[edit]
[-] key-type.h
[edit]
[-] gcd.h
[edit]
[-] livepatch.h
[edit]
[-] sock_diag.h
[edit]
[-] math64.h
[edit]
[-] pagemap.h
[edit]
[-] bitmap.h
[edit]
[-] rational.h
[edit]
[-] set_memory.h
[edit]
[-] mm.h
[edit]
[-] irqchip.h
[edit]
[-] edac.h
[edit]
[-] balloon_compaction.h
[edit]
[-] pl353-smc.h
[edit]
[-] mdio-bitbang.h
[edit]
[-] llc.h
[edit]
[-] regset.h
[edit]
[-] mpls.h
[edit]
[-] bpf_verifier.h
[edit]
[-] init_ohci1394_dma.h
[edit]
[-] stddef.h
[edit]
[-] migrate_mode.h
[edit]
[-] trace.h
[edit]
[-] fcntl.h
[edit]
[-] of_iommu.h
[edit]
[-] average.h
[edit]
[-] ctype.h
[edit]
[-] w1.h
[edit]
[-] efs_vh.h
[edit]
[-] dma-fence.h
[edit]
[-] pci_ids.h
[edit]
[-] ahci-remap.h
[edit]
[-] leds-pca9532.h
[edit]
[-] micrel_phy.h
[edit]
[-] sync_core.h
[edit]
[-] ioc3.h
[edit]
[-] reboot.h
[edit]
[-] hwmon-sysfs.h
[edit]
[-] dma-direction.h
[edit]
[-] libgcc.h
[edit]
[-] mem_encrypt.h
[edit]
[-] leds-regulator.h
[edit]
[+]
sunrpc
[-] rodata_test.h
[edit]
[-] qcom-geni-se.h
[edit]
[-] of_mdio.h
[edit]
[-] serial_8250.h
[edit]
[-] i2c-dev.h
[edit]
[-] if_arp.h
[edit]
[-] net.h
[edit]
[-] inetdevice.h
[edit]
[-] virtio_net.h
[edit]
[-] smc91x.h
[edit]
[-] serial_s3c.h
[edit]
[-] genetlink.h
[edit]
[-] hid-debug.h
[edit]
[-] ipc.h
[edit]
[-] dqblk_qtree.h
[edit]
[-] prime_numbers.h
[edit]
[-] pnfs_osd_xdr.h
[edit]
[-] i8253.h
[edit]
[-] pci-p2pdma.h
[edit]
[-] zstd.h
[edit]
[-] netfilter_ingress.h
[edit]
[-] verification.h
[edit]
[-] lcm.h
[edit]
[-] tifm.h
[edit]
[-] of_graph.h
[edit]
[-] lsm_hooks.h
[edit]
[-] compiler-clang.h
[edit]
[-] crash_dump.h
[edit]
[-] dmi.h
[edit]
[-] seqno-fence.h
[edit]
[-] async_tx.h
[edit]
[-] spinlock_types.h
[edit]
[-] generic-radix-tree.h
[edit]
[-] isa.h
[edit]
[-] kvm_para.h
[edit]
[-] binfmts.h
[edit]
[-] igmp.h
[edit]
[-] mroute.h
[edit]
[-] spmi.h
[edit]
[-] ptp_classify.h
[edit]
[-] cn_proc.h
[edit]
[-] pl320-ipc.h
[edit]
[-] switchtec.h
[edit]
[-] a.out.h
[edit]
[-] ring_buffer.h
[edit]
[-] device-mapper.h
[edit]
[-] nfs.h
[edit]
[-] hid-sensor-hub.h
[edit]
[-] splice.h
[edit]
[-] counter_enum.h
[edit]
[-] sdb.h
[edit]
[-] seg6_hmac.h
[edit]
[-] nvme-rdma.h
[edit]
[-] clkdev.h
[edit]
[-] kcore.h
[edit]
[-] util_macros.h
[edit]
[-] audit.h
[edit]
[-] ext2_fs.h
[edit]
[-] hdlc.h
[edit]
[+]
bcma
[-] pm_opp.h
[edit]
[-] typecheck.h
[edit]
[-] dma-fence-chain.h
[edit]
[-] projid.h
[edit]
[-] sram.h
[edit]
[-] torture.h
[edit]
[-] lp.h
[edit]
[-] wait_bit.h
[edit]
[+]
qed
[-] perf_event.h
[edit]
[-] poison.h
[edit]
[-] seq_file.h
[edit]
[-] ip.h
[edit]
[-] cb710.h
[edit]
[-] seqlock.h
[edit]
[-] vermagic.h
[edit]
[-] digsig.h
[edit]
[-] crc32poly.h
[edit]
[-] mnt_namespace.h
[edit]
[+]
mtd
[-] lsm_audit.h
[edit]
[-] omap-iommu.h
[edit]
[-] plist.h
[edit]
[-] lzo.h
[edit]
[-] nl802154.h
[edit]
[-] elf.h
[edit]
[-] t10-pi.h
[edit]
[-] limits.h
[edit]
[-] intel-pti.h
[edit]
[-] hp_sdc.h
[edit]
[-] ras.h
[edit]
[-] fsi.h
[edit]
[-] pps_kernel.h
[edit]
[-] mailbox_controller.h
[edit]
[-] list_lru.h
[edit]
[-] once.h
[edit]
[-] cpuidle_haltpoll.h
[edit]
[-] pageblock-flags.h
[edit]
[-] remoteproc.h
[edit]
[-] hugetlb_cgroup.h
[edit]
[-] elfcore-compat.h
[edit]
[-] initrd.h
[edit]
[-] fsnotify.h
[edit]
[-] pm_runtime.h
[edit]
[-] rhashtable.h
[edit]
[-] mei_cl_bus.h
[edit]
[-] crc32.h
[edit]
[-] rculist_bl.h
[edit]
[-] posix_acl.h
[edit]
[-] fsl-diu-fb.h
[edit]
[-] random.h
[edit]
[-] sh_dma.h
[edit]
[-] zsmalloc.h
[edit]
[-] string.h
[edit]
[-] sonet.h
[edit]
[-] cgroup_rdma.h
[edit]
[-] kgdb.h
[edit]
[-] crc-itu-t.h
[edit]
[-] devfreq-event.h
[edit]
[-] cper.h
[edit]
[-] rtsx_common.h
[edit]
[-] alarmtimer.h
[edit]
[-] smp.h
[edit]
[-] preempt.h
[edit]
[+]
gpio
[-] uio.h
[edit]
[-] cfag12864b.h
[edit]
[-] tty.h
[edit]
[-] of_device.h
[edit]
[-] in.h
[edit]
[-] prefetch.h
[edit]
[-] proc_ns.h
[edit]
[-] htcpld.h
[edit]
[-] tracepoint.h
[edit]
[-] siphash.h
[edit]
[-] spinlock_api_smp.h
[edit]
[+]
mlx5
[-] netlink.h
[edit]
[-] f75375s.h
[edit]
[-] psi.h
[edit]
[-] bcm47xx_wdt.h
[edit]
[-] errseq.h
[edit]
[-] clockchips.h
[edit]
[-] ks8842.h
[edit]
[-] n_r3964.h
[edit]
[-] dynamic_queue_limits.h
[edit]
[-] percpu-rwsem.h
[edit]
[-] interconnect-provider.h
[edit]
[-] pm_wakeup.h
[edit]
[-] genl_magic_struct.h
[edit]
[-] tpm.h
[edit]
[+]
amba
[-] pipe_fs_i.h
[edit]
[-] rtsx_usb.h
[edit]
[-] lis3lv02d.h
[edit]
[-] vlynq.h
[edit]
[+]
spi
[-] serial_sci.h
[edit]
[+]
rtc
[-] isicom.h
[edit]
[-] vt.h
[edit]
[-] ata_platform.h
[edit]
[-] clocksource.h
[edit]
[-] hwmon-vid.h
[edit]
[-] reboot-mode.h
[edit]
[-] init_task.h
[edit]
[-] elevator.h
[edit]
[-] dma-direct.h
[edit]
[-] dma-buf.h
[edit]
[-] iova.h
[edit]
[-] debug_locks.h
[edit]
[-] sbitmap.h
[edit]
[-] hid-roccat.h
[edit]
[-] ieee80211.h
[edit]
[-] kref.h
[edit]
[-] lockref.h
[edit]
[-] error-injection.h
[edit]
[-] regmap.h
[edit]
[-] percpu-defs.h
[edit]
[-] fs_uart_pd.h
[edit]
[+]
input
[-] shmem_fs.h
[edit]
[-] debugfs.h
[edit]
[+]
mfd
[+]
extcon
[-] build_bug.h
[edit]
[-] dma-fence-array.h
[edit]
[-] sirfsoc_dma.h
[edit]
[+]
reset
[-] sh_clk.h
[edit]
[-] bitrev.h
[edit]
[-] range.h
[edit]
[-] mempolicy.h
[edit]
[-] l2tp.h
[edit]
[-] via-gpio.h
[edit]
[-] pe.h
[edit]
[-] moxtet.h
[edit]
[-] inotify.h
[edit]
[-] bottom_half.h
[edit]
[-] rmi.h
[edit]
[-] vga_switcheroo.h
[edit]
[-] virtio_vsock.h
[edit]
[-] rculist.h
[edit]
[-] arch_topology.h
[edit]
[-] keyboard.h
[edit]
[-] qcom_scm.h
[edit]
[-] rbtree_latch.h
[edit]
[-] bio.h
[edit]
[-] fwnode.h
[edit]
[-] srcu.h
[edit]
[-] jump_label.h
[edit]
[-] auxvec.h
[edit]
[-] irqbypass.h
[edit]
[-] asn1_ber_bytecode.h
[edit]
[-] crc-ccitt.h
[edit]
[-] wait.h
[edit]
[-] fs_stack.h
[edit]
[-] hrtimer_defs.h
[edit]
[-] vtime.h
[edit]
[-] pm-trace.h
[edit]
[-] kvm_types.h
[edit]
[-] bma150.h
[edit]
[-] logic_pio.h
[edit]
[-] sched_clock.h
[edit]
[-] capability.h
[edit]
[-] smscphy.h
[edit]
[-] blk-mq-virtio.h
[edit]
[-] ucs2_string.h
[edit]
[-] sxgbe_platform.h
[edit]
[-] tpm_command.h
[edit]
[-] pps-gpio.h
[edit]
[-] thunderbolt.h
[edit]
[-] nsproxy.h
[edit]
[-] dns_resolver.h
[edit]
[-] device_cgroup.h
[edit]
[-] scx200_gpio.h
[edit]
[-] atmel-ssc.h
[edit]
[-] configfs.h
[edit]
[-] huge_mm.h
[edit]
[-] futex.h
[edit]
[-] hid.h
[edit]
[-] ata.h
[edit]
[-] dcache.h
[edit]
[-] efi.h
[edit]
[-] textsearch.h
[edit]
[-] crash_core.h
[edit]
[-] i8042.h
[edit]
[-] rbtree_augmented.h
[edit]
[-] scatterlist.h
[edit]
[-] compiler-gcc.h
[edit]
[-] crc64.h
[edit]
[-] wl12xx.h
[edit]
[-] page_owner.h
[edit]
[-] usb.h
[edit]
[-] sched.h
[edit]
[-] securebits.h
[edit]
[-] siox.h
[edit]
[-] path.h
[edit]
[-] mic_bus.h
[edit]
[-] cred.h
[edit]
[-] wkup_m3_ipc.h
[edit]
[+]
perf
[-] console_struct.h
[edit]
[-] indirect_call_wrapper.h
[edit]
[-] fscache-cache.h
[edit]
[-] pci-epf.h
[edit]
[-] pm_wakeirq.h
[edit]
[-] fault-inject.h
[edit]
[-] llist.h
[edit]
[-] time.h
[edit]
[-] hugetlb_inline.h
[edit]
[-] counter.h
[edit]
[-] altera_jtaguart.h
[edit]
[-] iomap.h
[edit]
[-] atmel-mci.h
[edit]
[-] mman.h
[edit]
[-] nfs_iostat.h
[edit]
[-] thermal.h
[edit]
[-] pmbus.h
[edit]
[-] nvmem-consumer.h
[edit]
[-] zconf.h
[edit]
[-] reset-controller.h
[edit]
[-] task_io_accounting.h
[edit]
[-] delayed_call.h
[edit]
[-] sctp.h
[edit]
[-] vfs.h
[edit]
[-] rwlock.h
[edit]
[-] sony-laptop.h
[edit]
[-] ieee802154.h
[edit]
[-] fb.h
[edit]
[-] mbus.h
[edit]
[-] irqdesc.h
[edit]
[-] iopoll.h
[edit]
[-] mmzone.h
[edit]
[+]
irqchip
[-] acct.h
[edit]
[-] swab.h
[edit]
[-] fsl_ifc.h
[edit]
[-] hdlcdrv.h
[edit]
[-] ramfs.h
[edit]
[-] irq_cpustat.h
[edit]
[-] hwmon.h
[edit]
[-] umh.h
[edit]
[-] screen_info.h
[edit]
[-] netpoll.h
[edit]
[-] clk-provider.h
[edit]
[-] rcu_node_tree.h
[edit]
[-] s3c_adc_battery.h
[edit]
[-] filter.h
[edit]
[-] iscsi_boot_sysfs.h
[edit]
[-] threads.h
[edit]
[-] unicode.h
[edit]
[-] bcd.h
[edit]
[-] power_supply.h
[edit]
[-] syscalls.h
[edit]
[-] page_ext.h
[edit]
[-] yam.h
[edit]
[-] smpboot.h
[edit]
[+]
isdn
[-] 8250_pci.h
[edit]
[-] zutil.h
[edit]
[-] nubus.h
[edit]
[-] elfnote.h
[edit]
[-] acpi_pmtmr.h
[edit]
[-] bvec.h
[edit]
[-] tpm_eventlog.h
[edit]
[-] btree.h
[edit]
[-] circ_buf.h
[edit]
[-] seg6_local.h
[edit]
[-] sw842.h
[edit]
[-] i2c-smbus.h
[edit]
[-] cpu_rmap.h
[edit]
[-] namei.h
[edit]
[-] joystick.h
[edit]
[-] shdma-base.h
[edit]
[-] i2c-algo-pcf.h
[edit]
[-] quota.h
[edit]
[-] parport.h
[edit]
[-] cpufeature.h
[edit]
[-] string_helpers.h
[edit]
[-] padata.h
[edit]
[-] numa.h
[edit]
[-] io-mapping.h
[edit]
[-] seccomp.h
[edit]
[-] pti.h
[edit]
[-] kobject.h
[edit]
[-] compaction.h
[edit]
[-] cpu.h
[edit]
[-] pm2301_charger.h
[edit]
[-] max17040_battery.h
[edit]
[-] phonet.h
[edit]
[-] if_ether.h
[edit]
[-] udp.h
[edit]
[-] bcm963xx_nvram.h
[edit]
[+]
clk
[-] libfdt.h
[edit]
[-] tnum.h
[edit]
[-] log2.h
[edit]
[-] led-class-flash.h
[edit]
[-] cgroup_subsys.h
[edit]
[-] if_pppox.h
[edit]
[-] mdio-mux.h
[edit]
[-] sizes.h
[edit]
[-] netfilter_ipv6.h
[edit]
[-] usb_usual.h
[edit]
[-] ascii85.h
[edit]
[-] cma.h
[edit]
[+]
fsl
[-] tc.h
[edit]
[-] skbuff.h
[edit]
[-] mm_types.h
[edit]
[-] rcutiny.h
[edit]
[-] nvme-tcp.h
[edit]
[-] mdio-gpio.h
[edit]
[-] serio.h
[edit]
[-] intel_th.h
[edit]
[-] sfp.h
[edit]
[-] iscsi_ibft.h
[edit]
[-] rwsem.h
[edit]
[-] coredump.h
[edit]
[-] virtio_caif.h
[edit]
[-] linkage.h
[edit]
[-] keyctl.h
[edit]
[-] ds2782_battery.h
[edit]
[-] ftrace_irq.h
[edit]
[-] visorbus.h
[edit]
[-] pktcdvd.h
[edit]
[-] dynamic_debug.h
[edit]
[-] tty_flip.h
[edit]
[-] extable.h
[edit]
[-] swap_slots.h
[edit]
[-] brcmphy.h
[edit]
[-] errqueue.h
[edit]
[-] fsl_hypervisor.h
[edit]
[-] ipv6_route.h
[edit]
[-] hugetlb.h
[edit]
[+]
remoteproc
[-] nfs_fs_sb.h
[edit]
[-] rio.h
[edit]
[-] leds-tca6507.h
[edit]
[-] ethtool.h
[edit]
[-] cryptohash.h
[edit]
[-] sound.h
[edit]
[-] wmi.h
[edit]
[-] compiler-intel.h
[edit]
[-] led-lm3530.h
[edit]
[-] blk-mq-pci.h
[edit]
[-] libps2.h
[edit]
[-] extcon.h
[edit]
[-] slab.h
[edit]
[-] fsnotify_backend.h
[edit]
[-] smsc911x.h
[edit]
[-] mv643xx_eth.h
[edit]
[-] virtio.h
[edit]
[-] dmapool.h
[edit]
[-] rfkill.h
[edit]
[-] syscore_ops.h
[edit]
[-] async.h
[edit]
[-] hash.h
[edit]
[-] eeprom_93xx46.h
[edit]
[-] vexpress.h
[edit]
[-] timekeeping32.h
[edit]
[-] pkeys.h
[edit]
[-] nvmem-provider.h
[edit]
[-] kernel-page-flags.h
[edit]
[-] vmstat.h
[edit]
[-] iversion.h
[edit]
[-] bug.h
[edit]
[+]
lockd
[+]
usb
[-] crc7.h
[edit]
[-] u64_stats_sync.h
[edit]
[-] tty_driver.h
[edit]
[-] packing.h
[edit]
[-] if_tun.h
[edit]
[-] apple_bl.h
[edit]
[-] adxl.h
[edit]
[+]
phy
[-] swapfile.h
[edit]
[-] if_fddi.h
[edit]
[-] badblocks.h
[edit]
[-] firewire.h
[edit]
[-] blk-mq.h
[edit]
[-] jz4740-adc.h
[edit]
[-] etherdevice.h
[edit]
[+]
ssb
[-] pfn_t.h
[edit]
[-] interval_tree_generic.h
[edit]
[-] static_key.h
[edit]
[-] rculist_nulls.h
[edit]
[-] percpu_counter.h
[edit]
[-] cdev.h
[edit]
[-] psi_types.h
[edit]
[-] phylink.h
[edit]
[-] frontswap.h
[edit]
[-] dirent.h
[edit]
[-] spinlock_types_up.h
[edit]
[-] notifier.h
[edit]
[-] ptr_ring.h
[edit]
[-] hmm.h
[edit]
[+]
fpga
[-] anon_inodes.h
[edit]
[-] rtsx_pci.h
[edit]
[-] property.h
[edit]
[-] maple.h
[edit]
[-] hyperv.h
[edit]
[-] vbox_utils.h
[edit]
[-] gpio.h
[edit]
[-] jz4780-nemc.h
[edit]
[+]
netfilter_arp
[-] mii.h
[edit]
[-] elfcore.h
[edit]
[-] vmw_vmci_api.h
[edit]
[-] uio_driver.h
[edit]
[-] user.h
[edit]
[-] pagevec.h
[edit]
[-] srcutree.h
[edit]
[-] ioprio.h
[edit]
[-] greybus.h
[edit]
[-] list_bl.h
[edit]
[-] amd-iommu.h
[edit]
[-] statfs.h
[edit]
[-] user-return-notifier.h
[edit]
[-] w1-gpio.h
[edit]
[-] vm_sockets.h
[edit]
[-] delayacct.h
[edit]
[-] rcupdate_wait.h
[edit]
[-] via_i2c.h
[edit]
[+]
pinctrl
[-] timex.h
[edit]
[-] signal.h
[edit]
[-] slab_def.h
[edit]
[-] zorro.h
[edit]
[-] frame.h
[edit]
[-] proc_fs.h
[edit]
[-] ihex.h
[edit]
[-] i2c-mux.h
[edit]
[-] sonypi.h
[edit]
[-] cs5535.h
[edit]
[-] pm_domain.h
[edit]
[-] prandom.h
[edit]
[-] extcon-provider.h
[edit]
[-] nfs3.h
[edit]
[-] tfrc.h
[edit]
[-] pci-epc.h
[edit]
[-] i2c-pxa.h
[edit]
[-] virtio_config.h
[edit]
[-] socket.h
[edit]
[-] hypervisor.h
[edit]
[-] sunserialcore.h
[edit]
[-] tick.h
[edit]
[-] crypto.h
[edit]
[-] iocontext.h
[edit]
[-] arm-cci.h
[edit]
[-] highuid.h
[edit]
[-] libfdt_env.h
[edit]
[-] timb_dma.h
[edit]
[-] timecounter.h
[edit]
[-] memstick.h
[edit]
[-] serial_core.h
[edit]
[-] irq.h
[edit]
[-] crc8.h
[edit]
[+]
mdio
[-] pagewalk.h
[edit]
[-] bcm47xx_nvram.h
[edit]
[-] input.h
[edit]
[-] dmaengine.h
[edit]
[-] sh_eth.h
[edit]
[+]
mux
[-] cpu_cooling.h
[edit]
[-] component.h
[edit]
[+]
netfilter_bridge
[-] atomic.h
[edit]
[-] mempool.h
[edit]
[-] stringhash.h
[edit]
[-] utsname.h
[edit]
[-] rtnetlink.h
[edit]
[-] nsc_gpio.h
[edit]
[-] ftrace.h
[edit]
[-] pxa2xx_ssp.h
[edit]
[-] of_fdt.h
[edit]
[-] if_ltalk.h
[edit]
[-] alcor_pci.h
[edit]
[-] oid_registry.h
[edit]
[-] genhd.h
[edit]
[-] energy_model.h
[edit]
[-] idr.h
[edit]
[-] eisa.h
[edit]
[-] pim.h
[edit]
[-] drbd_genl.h
[edit]
[-] wireless.h
[edit]
[-] radix-tree.h
[edit]
[-] kbd_kern.h
[edit]
[-] atm.h
[edit]
[-] dma-contiguous.h
[edit]
[-] superhyway.h
[edit]
[-] posix_acl_xattr.h
[edit]
[-] stop_machine.h
[edit]
[-] fddidevice.h
[edit]
[-] ti-emif-sram.h
[edit]
[-] drbd.h
[edit]
[-] time32.h
[edit]
[+]
netfilter_ipv4
[-] bpf-cgroup.h
[edit]
[-] drbd_genl_api.h
[edit]
[-] fanotify.h
[edit]
[-] tca6416_keypad.h
[edit]
[-] vfio.h
[edit]
[-] compat.h
[edit]
[-] cyclades.h
[edit]
[-] c2port.h
[edit]
[-] swapops.h
[edit]
[-] objagg.h
[edit]
[-] vt_kern.h
[edit]
[-] sem.h
[edit]
[-] rio_ids.h
[edit]
[-] tracefs.h
[edit]
[-] i2c.h
[edit]
[-] fips.h
[edit]
[-] list.h
[edit]
[-] cacheinfo.h
[edit]
[+]
regulator
[-] blk-pm.h
[edit]
[-] if_tunnel.h
[edit]
[-] atalk.h
[edit]
[-] posix-timers.h
[edit]
[-] irq_work.h
[edit]
[-] dw_apb_timer.h
[edit]
[-] memory_hotplug.h
[edit]
[+]
ulpi
[-] kallsyms.h
[edit]
[-] coresight-pmu.h
[edit]
[-] irqdomain.h
[edit]
[-] cciss_ioctl.h
[edit]
[-] nvme-fc.h
[edit]
[-] memory.h
[edit]
[-] imx-media.h
[edit]
[-] root_dev.h
[edit]
[-] if_frad.h
[edit]
[-] crc4.h
[edit]
[-] agpgart.h
[edit]
[-] of_net.h
[edit]
[-] blk_types.h
[edit]
[-] omap-dma.h
[edit]
[-] ima.h
[edit]
[-] in6.h
[edit]
[-] i2c-algo-pca.h
[edit]
[-] phy.h
[edit]
[-] psp-sev.h
[edit]
[-] msdos_fs.h
[edit]
[-] pid.h
[edit]
[-] leds-lp3944.h
[edit]
[-] if_vlan.h
[edit]
[-] input-polldev.h
[edit]
[-] miscdevice.h
[edit]
[-] ptp_clock_kernel.h
[edit]
[-] interval_tree.h
[edit]
[+]
raid
[-] fsldma.h
[edit]
[-] nvram.h
[edit]
[-] mv643xx_i2c.h
[edit]
[-] kobject_ns.h
[edit]
[-] assoc_array.h
[edit]
[-] interrupt.h
[edit]
[-] lapb.h
[edit]
[-] clk.h
[edit]
[-] nfs_page.h
[edit]
[-] watchdog.h
[edit]
[-] timb_gpio.h
[edit]
[-] kobj_map.h
[edit]
[-] mmap_lock.h
[edit]
[-] pr.h
[edit]
[-] highmem.h
[edit]
[-] dax.h
[edit]
[-] klist.h
[edit]
[-] ipv6.h
[edit]
[-] kfifo.h
[edit]
[-] serial.h
[edit]
[-] leds_pwm.h
[edit]
[-] atm_suni.h
[edit]
[-] pnp.h
[edit]
[-] dqblk_v2.h
[edit]
[-] kmod.h
[edit]
[-] pci-ats.h
[edit]
[-] tsacct_kern.h
[edit]
[-] kasan.h
[edit]
[-] dlm_plock.h
[edit]
[-] kernel_stat.h
[edit]
[-] time64.h
[edit]
[-] smc911x.h
[edit]
[-] pwm_backlight.h
[edit]
[-] personality.h
[edit]
[-] ppp_channel.h
[edit]
[-] pch_dma.h
[edit]
[-] stacktrace.h
[edit]
[-] armada-37xx-rwtm-mailbox.h
[edit]
[-] intel-iommu.h
[edit]
[-] ppp_defs.h
[edit]
[-] ntb_transport.h
[edit]
[-] ath9k_platform.h
[edit]
[-] quotaops.h
[edit]
[-] cm4000_cs.h
[edit]
[-] user_namespace.h
[edit]
[-] of_pdt.h
[edit]
[-] nfs_fs.h
[edit]
[-] slimbus.h
[edit]
[-] pm_qos.h
[edit]
[-] kmemleak.h
[edit]
[-] serial_max3100.h
[edit]
[-] usbdevice_fs.h
[edit]
[-] blockgroup_lock.h
[edit]
[-] dio.h
[edit]
[-] elf-randomize.h
[edit]
[-] khugepaged.h
[edit]
[-] trace_events.h
[edit]
[-] processor.h
[edit]
[-] uuid.h
[edit]
[-] dlm.h
[edit]
[-] timekeeper_internal.h
[edit]
[-] mpi.h
[edit]
[-] vmacache.h
[edit]
[-] of_gpio.h
[edit]
[-] if_pppol2tp.h
[edit]
[-] virtio_ring.h
[edit]
[-] ks0108.h
[edit]
[-] vmpressure.h
[edit]
[-] freezer.h
[edit]
[-] pci-ep-cfs.h
[edit]
[-] davinci_emac.h
[edit]
[+]
crush
[-] mm_types_task.h
[edit]
[-] moduleparam.h
[edit]
[-] transport_class.h
[edit]
[-] tee_drv.h
[edit]
[-] xarray.h
[edit]
[-] hw_random.h
[edit]
[-] fcdevice.h
[edit]
[-] synclink.h
[edit]
[-] dma-resv.h
[edit]
[-] fsverity.h
[edit]
[-] adb.h
[edit]
[-] hippidevice.h
[edit]
[-] cpuidle.h
[edit]
[-] irq_poll.h
[edit]
[-] of.h
[edit]
[-] latencytop.h
[edit]
[-] mxm-wmi.h
[edit]
[-] cdrom.h
[edit]
[-] of_irq.h
[edit]
[-] vm_event_item.h
[edit]
[-] trace_clock.h
[edit]
[-] font.h
[edit]
[-] list_sort.h
[edit]
[-] omap-mailbox.h
[edit]
[+]
platform_data
[-] mmu_context.h
[edit]
[-] timekeeping.h
[edit]
[-] ww_mutex.h
[edit]
[-] dm-region-hash.h
[edit]
[-] task_work.h
[edit]
[-] leds-ti-lmu-common.h
[edit]
[-] bsg-lib.h
[edit]
[-] nfs_fs_i.h
[edit]
[-] bits.h
[edit]
[-] mailbox_client.h
[edit]
[-] signalfd.h
[edit]
[-] clock_cooling.h
[edit]
[-] fscache.h
[edit]
[-] bpfilter.h
[edit]
[+]
dma
[-] percpu.h
[edit]
[-] msi.h
[edit]
[-] evm.h
[edit]
[-] scif.h
[edit]
[-] profile.h
[edit]
[-] pci.h
[edit]
[-] enclosure.h
[edit]
[-] rwlock_types.h
[edit]
[-] pci-dma-compat.h
[edit]
[-] blk-cgroup.h
[edit]
[-] mvebu-pmsu.h
[edit]
[-] sys_soc.h
[edit]
[-] marvell_phy.h
[edit]
[-] xxhash.h
[edit]
[-] page_counter.h
[edit]
[-] percpu-refcount.h
[edit]
[-] linux_logo.h
[edit]
[-] rcuwait.h
[edit]
[-] oom.h
[edit]
[-] memfd.h
[edit]
[-] phy_fixed.h
[edit]
[-] reset.h
[edit]
[-] trace_seq.h
[edit]
[-] suspend.h
[edit]
[-] hiddev.h
[edit]
[-] tracepoint-defs.h
[edit]
[-] glob.h
[edit]
[-] of_platform.h
[edit]
[-] scc.h
[edit]
[-] acpi_dma.h
[edit]
[-] of_clk.h
[edit]
[-] migrate.h
[edit]
[-] kdb.h
[edit]
[-] of_reserved_mem.h
[edit]
[-] backing-dev-defs.h
[edit]
[-] page-isolation.h
[edit]
[-] nmi.h
[edit]
[-] fs_types.h
[edit]
[-] dqblk_v1.h
[edit]
[-] platform_device.h
[edit]
[-] uprobes.h
[edit]
[-] fs_context.h
[edit]
[-] pci-acpi.h
[edit]
[-] spinlock.h
[edit]
[-] drbd_limits.h
[edit]
[-] cmdline-parser.h
[edit]
[-] zbud.h
[edit]
[-] backlight.h
[edit]
[-] fs_parser.h
[edit]
[-] serial_pnx8xxx.h
[edit]
[-] kbd_diacr.h
[edit]
[-] mdio.h
[edit]
[-] libnvdimm.h
[edit]
[-] ioport.h
[edit]
[-] omap-gpmc.h
[edit]
[-] refcount.h
[edit]
[-] ntb.h
[edit]
[-] ccp.h
[edit]
[-] ks8851_mll.h
[edit]
[-] start_kernel.h
[edit]
[-] page-flags.h
[edit]
[-] pfn.h
[edit]
[-] firmware-map.h
[edit]
[-] context_tracking.h
[edit]
[-] kmsg_dump.h
[edit]
[-] kdev_t.h
[edit]
[-] fs_struct.h
[edit]
[-] resource.h
[edit]
[-] slub_def.h
[edit]
[-] completion.h
[edit]
[-] dccp.h
[edit]
[-] rcu_segcblist.h
[edit]
[-] mdev.h
[edit]
[-] dm9000.h
[edit]
[-] cpufreq.h
[edit]
[-] crc-t10dif.h
[edit]
[-] toshiba.h
[edit]
[-] btree-type.h
[edit]
[-] reciprocal_div.h
[edit]
[-] devpts_fs.h
[edit]
[-] fixp-arith.h
[edit]
[-] stackdepot.h
[edit]
[-] units.h
[edit]
[-] ahci_platform.h
[edit]
[-] key.h
[edit]
[-] if_link.h
[edit]
[-] fsi-sbefifo.h
[edit]
[-] soundcard.h
[edit]
[-] fs.h
[edit]
[-] mbcache.h
[edit]
[-] jump_label_ratelimit.h
[edit]
[-] nfs_xdr.h
[edit]
[-] nodemask.h
[edit]
[-] sysctl.h
[edit]
[-] scx200.h
[edit]
[-] fdtable.h
[edit]
[-] leds.h
[edit]
[-] writeback.h
[edit]
[-] irqflags.h
[edit]
[-] selection.h
[edit]
[-] textsearch_fsm.h
[edit]
[-] zlib.h
[edit]
[-] vringh.h
[edit]
[-] moduleloader.h
[edit]
[-] perf_regs.h
[edit]
[-] linkmode.h
[edit]
[-] rcupdate.h
[edit]
[-] debugobjects.h
[edit]
[-] swap.h
[edit]
[-] ts-nbus.h
[edit]
[-] btf.h
[edit]
[-] jhash.h
[edit]
[-] kernfs.h
[edit]
[-] hwspinlock.h
[edit]
[-] devfreq.h
[edit]
[-] taskstats_kern.h
[edit]
[-] relay.h
[edit]
[-] hidraw.h
[edit]
[-] eventfd.h
[edit]
[-] page-flags-layout.h
[edit]
[-] license.h
[edit]
[-] rcutree.h
[edit]
[-] sdla.h
[edit]
[-] pseudo_fs.h
[edit]
[-] libata.h
[edit]
[-] timeriomem-rng.h
[edit]
[-] sh_timer.h
[edit]
[-] irqnr.h
[edit]
[-] netfilter_ipv4.h
[edit]
[-] swait.h
[edit]
[-] of_pci.h
[edit]
[-] vgaarb.h
[edit]
[-] auto_fs.h
[edit]