PATH:
usr
/
src
/
linux-headers-5.4.0-215
/
include
/
linux
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef BLK_MQ_H #define BLK_MQ_H #include <linux/blkdev.h> #include <linux/sbitmap.h> #include <linux/srcu.h> struct blk_mq_tags; struct blk_flush_queue; /** * struct blk_mq_hw_ctx - State for a hardware queue facing the hardware block device */ struct blk_mq_hw_ctx { struct { spinlock_t lock; struct list_head dispatch; unsigned long state; /* BLK_MQ_S_* flags */ } ____cacheline_aligned_in_smp; struct delayed_work run_work; cpumask_var_t cpumask; int next_cpu; int next_cpu_batch; unsigned long flags; /* BLK_MQ_F_* flags */ void *sched_data; struct request_queue *queue; struct blk_flush_queue *fq; void *driver_data; struct sbitmap ctx_map; struct blk_mq_ctx *dispatch_from; unsigned int dispatch_busy; unsigned short type; unsigned short nr_ctx; struct blk_mq_ctx **ctxs; spinlock_t dispatch_wait_lock; wait_queue_entry_t dispatch_wait; atomic_t wait_index; struct blk_mq_tags *tags; struct blk_mq_tags *sched_tags; unsigned long queued; unsigned long run; #define BLK_MQ_MAX_DISPATCH_ORDER 7 unsigned long dispatched[BLK_MQ_MAX_DISPATCH_ORDER]; unsigned int numa_node; unsigned int queue_num; atomic_t nr_active; struct hlist_node cpuhp_dead; struct kobject kobj; unsigned long poll_considered; unsigned long poll_invoked; unsigned long poll_success; #ifdef CONFIG_BLK_DEBUG_FS struct dentry *debugfs_dir; struct dentry *sched_debugfs_dir; #endif struct list_head hctx_list; /* Must be the last member - see also blk_mq_hw_ctx_size(). */ struct srcu_struct srcu[0]; }; struct blk_mq_queue_map { unsigned int *mq_map; unsigned int nr_queues; unsigned int queue_offset; }; enum hctx_type { HCTX_TYPE_DEFAULT, /* all I/O not otherwise accounted for */ HCTX_TYPE_READ, /* just for READ I/O */ HCTX_TYPE_POLL, /* polled I/O of any kind */ HCTX_MAX_TYPES, }; struct blk_mq_tag_set { /* * map[] holds ctx -> hctx mappings, one map exists for each type * that the driver wishes to support. There are no restrictions * on maps being of the same size, and it's perfectly legal to * share maps between types. */ struct blk_mq_queue_map map[HCTX_MAX_TYPES]; unsigned int nr_maps; /* nr entries in map[] */ const struct blk_mq_ops *ops; unsigned int nr_hw_queues; /* nr hw queues across maps */ unsigned int queue_depth; /* max hw supported */ unsigned int reserved_tags; unsigned int cmd_size; /* per-request extra data */ int numa_node; unsigned int timeout; unsigned int flags; /* BLK_MQ_F_* */ void *driver_data; struct blk_mq_tags **tags; struct mutex tag_list_lock; struct list_head tag_list; }; struct blk_mq_queue_data { struct request *rq; bool last; }; typedef blk_status_t (queue_rq_fn)(struct blk_mq_hw_ctx *, const struct blk_mq_queue_data *); typedef void (commit_rqs_fn)(struct blk_mq_hw_ctx *); typedef bool (get_budget_fn)(struct blk_mq_hw_ctx *); typedef void (put_budget_fn)(struct blk_mq_hw_ctx *); typedef enum blk_eh_timer_return (timeout_fn)(struct request *, bool); typedef int (init_hctx_fn)(struct blk_mq_hw_ctx *, void *, unsigned int); typedef void (exit_hctx_fn)(struct blk_mq_hw_ctx *, unsigned int); typedef int (init_request_fn)(struct blk_mq_tag_set *set, struct request *, unsigned int, unsigned int); typedef void (exit_request_fn)(struct blk_mq_tag_set *set, struct request *, unsigned int); typedef bool (busy_iter_fn)(struct blk_mq_hw_ctx *, struct request *, void *, bool); typedef bool (busy_tag_iter_fn)(struct request *, void *, bool); typedef int (poll_fn)(struct blk_mq_hw_ctx *); typedef int (map_queues_fn)(struct blk_mq_tag_set *set); typedef bool (busy_fn)(struct request_queue *); typedef void (complete_fn)(struct request *); typedef void (cleanup_rq_fn)(struct request *); struct blk_mq_ops { /* * Queue request */ queue_rq_fn *queue_rq; /* * If a driver uses bd->last to judge when to submit requests to * hardware, it must define this function. In case of errors that * make us stop issuing further requests, this hook serves the * purpose of kicking the hardware (which the last request otherwise * would have done). */ commit_rqs_fn *commit_rqs; /* * Reserve budget before queue request, once .queue_rq is * run, it is driver's responsibility to release the * reserved budget. Also we have to handle failure case * of .get_budget for avoiding I/O deadlock. */ get_budget_fn *get_budget; put_budget_fn *put_budget; /* * Called on request timeout */ timeout_fn *timeout; /* * Called to poll for completion of a specific tag. */ poll_fn *poll; complete_fn *complete; /* * Called when the block layer side of a hardware queue has been * set up, allowing the driver to allocate/init matching structures. * Ditto for exit/teardown. */ init_hctx_fn *init_hctx; exit_hctx_fn *exit_hctx; /* * Called for every command allocated by the block layer to allow * the driver to set up driver specific data. * * Tag greater than or equal to queue_depth is for setting up * flush request. * * Ditto for exit/teardown. */ init_request_fn *init_request; exit_request_fn *exit_request; /* Called from inside blk_get_request() */ void (*initialize_rq_fn)(struct request *rq); /* * Called before freeing one request which isn't completed yet, * and usually for freeing the driver private data */ cleanup_rq_fn *cleanup_rq; /* * If set, returns whether or not this queue currently is busy */ busy_fn *busy; map_queues_fn *map_queues; #ifdef CONFIG_BLK_DEBUG_FS /* * Used by the debugfs implementation to show driver-specific * information about a request. */ void (*show_rq)(struct seq_file *m, struct request *rq); #endif }; enum { BLK_MQ_F_SHOULD_MERGE = 1 << 0, BLK_MQ_F_TAG_SHARED = 1 << 1, BLK_MQ_F_BLOCKING = 1 << 5, BLK_MQ_F_NO_SCHED = 1 << 6, BLK_MQ_F_ALLOC_POLICY_START_BIT = 8, BLK_MQ_F_ALLOC_POLICY_BITS = 1, BLK_MQ_S_STOPPED = 0, BLK_MQ_S_TAG_ACTIVE = 1, BLK_MQ_S_SCHED_RESTART = 2, BLK_MQ_MAX_DEPTH = 10240, BLK_MQ_CPU_WORK_BATCH = 8, }; #define BLK_MQ_FLAG_TO_ALLOC_POLICY(flags) \ ((flags >> BLK_MQ_F_ALLOC_POLICY_START_BIT) & \ ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) #define BLK_ALLOC_POLICY_TO_MQ_FLAG(policy) \ ((policy & ((1 << BLK_MQ_F_ALLOC_POLICY_BITS) - 1)) \ << BLK_MQ_F_ALLOC_POLICY_START_BIT) struct request_queue *blk_mq_init_queue(struct blk_mq_tag_set *); struct request_queue *blk_mq_init_allocated_queue(struct blk_mq_tag_set *set, struct request_queue *q, bool elevator_init); struct request_queue *blk_mq_init_sq_queue(struct blk_mq_tag_set *set, const struct blk_mq_ops *ops, unsigned int queue_depth, unsigned int set_flags); void blk_mq_unregister_dev(struct device *, struct request_queue *); int blk_mq_alloc_tag_set(struct blk_mq_tag_set *set); void blk_mq_free_tag_set(struct blk_mq_tag_set *set); void blk_mq_flush_plug_list(struct blk_plug *plug, bool from_schedule); void blk_mq_free_request(struct request *rq); bool blk_mq_can_queue(struct blk_mq_hw_ctx *); bool blk_mq_queue_inflight(struct request_queue *q); enum { /* return when out of requests */ BLK_MQ_REQ_NOWAIT = (__force blk_mq_req_flags_t)(1 << 0), /* allocate from reserved pool */ BLK_MQ_REQ_RESERVED = (__force blk_mq_req_flags_t)(1 << 1), /* allocate internal/sched tag */ BLK_MQ_REQ_INTERNAL = (__force blk_mq_req_flags_t)(1 << 2), /* set RQF_PREEMPT */ BLK_MQ_REQ_PREEMPT = (__force blk_mq_req_flags_t)(1 << 3), }; struct request *blk_mq_alloc_request(struct request_queue *q, unsigned int op, blk_mq_req_flags_t flags); struct request *blk_mq_alloc_request_hctx(struct request_queue *q, unsigned int op, blk_mq_req_flags_t flags, unsigned int hctx_idx); struct request *blk_mq_tag_to_rq(struct blk_mq_tags *tags, unsigned int tag); enum { BLK_MQ_UNIQUE_TAG_BITS = 16, BLK_MQ_UNIQUE_TAG_MASK = (1 << BLK_MQ_UNIQUE_TAG_BITS) - 1, }; u32 blk_mq_unique_tag(struct request *rq); static inline u16 blk_mq_unique_tag_to_hwq(u32 unique_tag) { return unique_tag >> BLK_MQ_UNIQUE_TAG_BITS; } static inline u16 blk_mq_unique_tag_to_tag(u32 unique_tag) { return unique_tag & BLK_MQ_UNIQUE_TAG_MASK; } int blk_mq_request_started(struct request *rq); int blk_mq_request_completed(struct request *rq); void blk_mq_start_request(struct request *rq); void blk_mq_end_request(struct request *rq, blk_status_t error); void __blk_mq_end_request(struct request *rq, blk_status_t error); void blk_mq_requeue_request(struct request *rq, bool kick_requeue_list); void blk_mq_kick_requeue_list(struct request_queue *q); void blk_mq_delay_kick_requeue_list(struct request_queue *q, unsigned long msecs); void blk_mq_complete_request(struct request *rq); bool blk_mq_bio_list_merge(struct request_queue *q, struct list_head *list, struct bio *bio, unsigned int nr_segs); bool blk_mq_queue_stopped(struct request_queue *q); void blk_mq_stop_hw_queue(struct blk_mq_hw_ctx *hctx); void blk_mq_start_hw_queue(struct blk_mq_hw_ctx *hctx); void blk_mq_stop_hw_queues(struct request_queue *q); void blk_mq_start_hw_queues(struct request_queue *q); void blk_mq_start_stopped_hw_queue(struct blk_mq_hw_ctx *hctx, bool async); void blk_mq_start_stopped_hw_queues(struct request_queue *q, bool async); void blk_mq_quiesce_queue(struct request_queue *q); void blk_mq_unquiesce_queue(struct request_queue *q); void blk_mq_delay_run_hw_queue(struct blk_mq_hw_ctx *hctx, unsigned long msecs); bool blk_mq_run_hw_queue(struct blk_mq_hw_ctx *hctx, bool async); void blk_mq_run_hw_queues(struct request_queue *q, bool async); void blk_mq_tagset_busy_iter(struct blk_mq_tag_set *tagset, busy_tag_iter_fn *fn, void *priv); void blk_mq_tagset_wait_completed_request(struct blk_mq_tag_set *tagset); void blk_mq_freeze_queue(struct request_queue *q); void blk_mq_unfreeze_queue(struct request_queue *q); void blk_freeze_queue_start(struct request_queue *q); void blk_mq_freeze_queue_wait(struct request_queue *q); int blk_mq_freeze_queue_wait_timeout(struct request_queue *q, unsigned long timeout); int blk_mq_map_queues(struct blk_mq_queue_map *qmap); void blk_mq_update_nr_hw_queues(struct blk_mq_tag_set *set, int nr_hw_queues); void blk_mq_quiesce_queue_nowait(struct request_queue *q); unsigned int blk_mq_rq_cpu(struct request *rq); bool __blk_should_fake_timeout(struct request_queue *q); static inline bool blk_should_fake_timeout(struct request_queue *q) { if (IS_ENABLED(CONFIG_FAIL_IO_TIMEOUT) && test_bit(QUEUE_FLAG_FAIL_IO, &q->queue_flags)) return __blk_should_fake_timeout(q); return false; } /* * Driver command data is immediately after the request. So subtract request * size to get back to the original request, add request size to get the PDU. */ static inline struct request *blk_mq_rq_from_pdu(void *pdu) { return pdu - sizeof(struct request); } static inline void *blk_mq_rq_to_pdu(struct request *rq) { return rq + 1; } #define queue_for_each_hw_ctx(q, hctx, i) \ for ((i) = 0; (i) < (q)->nr_hw_queues && \ ({ hctx = (q)->queue_hw_ctx[i]; 1; }); (i)++) #define hctx_for_each_ctx(hctx, ctx, i) \ for ((i) = 0; (i) < (hctx)->nr_ctx && \ ({ ctx = (hctx)->ctxs[(i)]; 1; }); (i)++) static inline blk_qc_t request_to_qc_t(struct blk_mq_hw_ctx *hctx, struct request *rq) { if (rq->tag != -1) return rq->tag | (hctx->queue_num << BLK_QC_T_SHIFT); return rq->internal_tag | (hctx->queue_num << BLK_QC_T_SHIFT) | BLK_QC_T_INTERNAL; } static inline void blk_mq_cleanup_rq(struct request *rq) { if (rq->q->mq_ops->cleanup_rq) rq->q->mq_ops->cleanup_rq(rq); } #endif
[+]
..
[-] 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]