p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.216.202
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib/modules/3.10.0-1160.105.1.el7.x86_64/source/include/linux/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /lib/modules/3.10.0-1160.105.1.el7.x86_64/source/include/linux/jbd2.h
/*
 * linux/include/linux/jbd2.h
 *
 * Written by Stephen C. Tweedie <sct@redhat.com>
 *
 * Copyright 1998-2000 Red Hat, Inc --- All Rights Reserved
 *
 * This file is part of the Linux kernel and is made available under
 * the terms of the GNU General Public License, version 2, or at your
 * option, any later version, incorporated herein by reference.
 *
 * Definitions for transaction data structures for the buffer cache
 * filesystem journaling support.
 */

#ifndef _LINUX_JBD2_H
#define _LINUX_JBD2_H

/* Allow this file to be included directly into e2fsprogs */
#ifndef __KERNEL__
#include "jfs_compat.h"
#define JBD2_DEBUG
#else

#include <linux/types.h>
#include <linux/buffer_head.h>
#include <linux/journal-head.h>
#include <linux/stddef.h>
#include <linux/bit_spinlock.h>
#include <linux/mutex.h>
#include <linux/timer.h>
#include <linux/slab.h>
#include <crypto/hash.h>
#endif

#define journal_oom_retry 1

/*
 * Define JBD2_PARANIOD_IOFAIL to cause a kernel BUG() if ext4 finds
 * certain classes of error which can occur due to failed IOs.  Under
 * normal use we want ext4 to continue after such errors, because
 * hardware _can_ fail, but for debugging purposes when running tests on
 * known-good hardware we may want to trap these errors.
 */
#undef JBD2_PARANOID_IOFAIL

/*
 * The default maximum commit age, in seconds.
 */
#define JBD2_DEFAULT_MAX_COMMIT_AGE 5

#ifdef CONFIG_JBD2_DEBUG
/*
 * Define JBD2_EXPENSIVE_CHECKING to enable more expensive internal
 * consistency checks.  By default we don't do this unless
 * CONFIG_JBD2_DEBUG is on.
 */
#define JBD2_EXPENSIVE_CHECKING
extern ushort jbd2_journal_enable_debug;
void __jbd2_debug(int level, const char *file, const char *func,
		  unsigned int line, const char *fmt, ...);

#define jbd_debug(n, fmt, a...) \
	__jbd2_debug((n), __FILE__, __func__, __LINE__, (fmt), ##a)
#else
#define jbd_debug(n, fmt, a...)    /**/
#endif

extern void *jbd2_alloc(size_t size, gfp_t flags);
extern void jbd2_free(void *ptr, size_t size);

#define JBD2_MIN_JOURNAL_BLOCKS 1024

#ifdef __KERNEL__

/**
 * typedef handle_t - The handle_t type represents a single atomic update being performed by some process.
 *
 * All filesystem modifications made by the process go
 * through this handle.  Recursive operations (such as quota operations)
 * are gathered into a single update.
 *
 * The buffer credits field is used to account for journaled buffers
 * being modified by the running process.  To ensure that there is
 * enough log space for all outstanding operations, we need to limit the
 * number of outstanding buffers possible at any time.  When the
 * operation completes, any buffer credits not used are credited back to
 * the transaction, so that at all times we know how many buffers the
 * outstanding updates on a transaction might possibly touch.
 *
 * This is an opaque datatype.
 **/
typedef struct jbd2_journal_handle handle_t;	/* Atomic operation type */


/**
 * typedef journal_t - The journal_t maintains all of the journaling state information for a single filesystem.
 *
 * journal_t is linked to from the fs superblock structure.
 *
 * We use the journal_t to keep track of all outstanding transaction
 * activity on the filesystem, and to manage the state of the log
 * writing process.
 *
 * This is an opaque datatype.
 **/
typedef struct journal_s	journal_t;	/* Journal control structure */
#endif

/*
 * Internal structures used by the logging mechanism:
 */

#define JBD2_MAGIC_NUMBER 0xc03b3998U /* The first 4 bytes of /dev/random! */

/*
 * On-disk structures
 */

/*
 * Descriptor block types:
 */

#define JBD2_DESCRIPTOR_BLOCK	1
#define JBD2_COMMIT_BLOCK	2
#define JBD2_SUPERBLOCK_V1	3
#define JBD2_SUPERBLOCK_V2	4
#define JBD2_REVOKE_BLOCK	5

/*
 * Standard header for all descriptor blocks:
 */
typedef struct journal_header_s
{
	__be32		h_magic;
	__be32		h_blocktype;
	__be32		h_sequence;
} journal_header_t;

/*
 * Checksum types.
 */
#define JBD2_CRC32_CHKSUM   1
#define JBD2_MD5_CHKSUM     2
#define JBD2_SHA1_CHKSUM    3
#define JBD2_CRC32C_CHKSUM  4

#define JBD2_CRC32_CHKSUM_SIZE 4

#define JBD2_CHECKSUM_BYTES (32 / sizeof(u32))
/*
 * Commit block header for storing transactional checksums:
 *
 * NOTE: If FEATURE_COMPAT_CHECKSUM (checksum v1) is set, the h_chksum*
 * fields are used to store a checksum of the descriptor and data blocks.
 *
 * If FEATURE_INCOMPAT_CSUM_V2 (checksum v2) is set, then the h_chksum
 * field is used to store crc32c(uuid+commit_block).  Each journal metadata
 * block gets its own checksum, and data block checksums are stored in
 * journal_block_tag (in the descriptor).  The other h_chksum* fields are
 * not used.
 *
 * If FEATURE_INCOMPAT_CSUM_V3 is set, the descriptor block uses
 * journal_block_tag3_t to store a full 32-bit checksum.  Everything else
 * is the same as v2.
 *
 * Checksum v1, v2, and v3 are mutually exclusive features.
 */
struct commit_header {
	__be32		h_magic;
	__be32          h_blocktype;
	__be32          h_sequence;
	unsigned char   h_chksum_type;
	unsigned char   h_chksum_size;
	unsigned char 	h_padding[2];
	__be32 		h_chksum[JBD2_CHECKSUM_BYTES];
	__be64		h_commit_sec;
	__be32		h_commit_nsec;
};

/*
 * The block tag: used to describe a single buffer in the journal.
 * t_blocknr_high is only used if INCOMPAT_64BIT is set, so this
 * raw struct shouldn't be used for pointer math or sizeof() - use
 * journal_tag_bytes(journal) instead to compute this.
 */
typedef struct journal_block_tag3_s
{
	__be32		t_blocknr;	/* The on-disk block number */
	__be32		t_flags;	/* See below */
	__be32		t_blocknr_high; /* most-significant high 32bits. */
	__be32		t_checksum;	/* crc32c(uuid+seq+block) */
} journal_block_tag3_t;

typedef struct journal_block_tag_s
{
	__be32		t_blocknr;	/* The on-disk block number */
	__be16		t_checksum;	/* truncated crc32c(uuid+seq+block) */
	__be16		t_flags;	/* See below */
	__be32		t_blocknr_high; /* most-significant high 32bits. */
} journal_block_tag_t;

/* Tail of descriptor block, for checksumming */
struct jbd2_journal_block_tail {
	__be32		t_checksum;	/* crc32c(uuid+descr_block) */
};

/*
 * The revoke descriptor: used on disk to describe a series of blocks to
 * be revoked from the log
 */
typedef struct jbd2_journal_revoke_header_s
{
	journal_header_t r_header;
	__be32		 r_count;	/* Count of bytes used in the block */
} jbd2_journal_revoke_header_t;

/* Tail of revoke block, for checksumming */
struct jbd2_journal_revoke_tail {
	__be32		r_checksum;	/* crc32c(uuid+revoke_block) */
};

/* Definitions for the journal tag flags word: */
#define JBD2_FLAG_ESCAPE		1	/* on-disk block is escaped */
#define JBD2_FLAG_SAME_UUID	2	/* block has same uuid as previous */
#define JBD2_FLAG_DELETED	4	/* block deleted by this transaction */
#define JBD2_FLAG_LAST_TAG	8	/* last tag in this descriptor block */


/*
 * The journal superblock.  All fields are in big-endian byte order.
 */
typedef struct journal_superblock_s
{
/* 0x0000 */
	journal_header_t s_header;

/* 0x000C */
	/* Static information describing the journal */
	__be32	s_blocksize;		/* journal device blocksize */
	__be32	s_maxlen;		/* total blocks in journal file */
	__be32	s_first;		/* first block of log information */

/* 0x0018 */
	/* Dynamic information describing the current state of the log */
	__be32	s_sequence;		/* first commit ID expected in log */
	__be32	s_start;		/* blocknr of start of log */

/* 0x0020 */
	/* Error value, as set by jbd2_journal_abort(). */
	__be32	s_errno;

/* 0x0024 */
	/* Remaining fields are only valid in a version-2 superblock */
	__be32	s_feature_compat;	/* compatible feature set */
	__be32	s_feature_incompat;	/* incompatible feature set */
	__be32	s_feature_ro_compat;	/* readonly-compatible feature set */
/* 0x0030 */
	__u8	s_uuid[16];		/* 128-bit uuid for journal */

/* 0x0040 */
	__be32	s_nr_users;		/* Nr of filesystems sharing log */

	__be32	s_dynsuper;		/* Blocknr of dynamic superblock copy*/

/* 0x0048 */
	__be32	s_max_transaction;	/* Limit of journal blocks per trans.*/
	__be32	s_max_trans_data;	/* Limit of data blocks per trans. */

/* 0x0050 */
	__u8	s_checksum_type;	/* checksum type */
	__u8	s_padding2[3];
	__u32	s_padding[42];
	__be32	s_checksum;		/* crc32c(superblock) */

/* 0x0100 */
	__u8	s_users[16*48];		/* ids of all fs'es sharing the log */
/* 0x0400 */
} journal_superblock_t;

#define JBD2_HAS_COMPAT_FEATURE(j,mask)					\
	((j)->j_format_version >= 2 &&					\
	 ((j)->j_superblock->s_feature_compat & cpu_to_be32((mask))))
#define JBD2_HAS_RO_COMPAT_FEATURE(j,mask)				\
	((j)->j_format_version >= 2 &&					\
	 ((j)->j_superblock->s_feature_ro_compat & cpu_to_be32((mask))))
#define JBD2_HAS_INCOMPAT_FEATURE(j,mask)				\
	((j)->j_format_version >= 2 &&					\
	 ((j)->j_superblock->s_feature_incompat & cpu_to_be32((mask))))

#define JBD2_FEATURE_COMPAT_CHECKSUM	0x00000001

#define JBD2_FEATURE_INCOMPAT_REVOKE		0x00000001
#define JBD2_FEATURE_INCOMPAT_64BIT		0x00000002
#define JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT	0x00000004
#define JBD2_FEATURE_INCOMPAT_CSUM_V2		0x00000008
#define JBD2_FEATURE_INCOMPAT_CSUM_V3		0x00000010

/* Features known to this kernel version: */
#define JBD2_KNOWN_COMPAT_FEATURES	JBD2_FEATURE_COMPAT_CHECKSUM
#define JBD2_KNOWN_ROCOMPAT_FEATURES	0
#define JBD2_KNOWN_INCOMPAT_FEATURES	(JBD2_FEATURE_INCOMPAT_REVOKE | \
					JBD2_FEATURE_INCOMPAT_64BIT | \
					JBD2_FEATURE_INCOMPAT_ASYNC_COMMIT | \
					JBD2_FEATURE_INCOMPAT_CSUM_V2 | \
					JBD2_FEATURE_INCOMPAT_CSUM_V3)

#ifdef __KERNEL__

#include <linux/fs.h>
#include <linux/sched.h>

enum jbd_state_bits {
	BH_JBD			/* Has an attached ext3 journal_head */
	  = BH_PrivateStart,
	BH_JWrite,		/* Being written to log (@@@ DEBUGGING) */
	BH_Freed,		/* Has been freed (truncated) */
	BH_Revoked,		/* Has been revoked from the log */
	BH_RevokeValid,		/* Revoked flag is valid */
	BH_JBDDirty,		/* Is dirty but journaled */
	BH_State,		/* Pins most journal_head state */
	BH_JournalHead,		/* Pins bh->b_private and jh->b_bh */
	BH_Shadow,		/* IO on shadow buffer is running */
	BH_Verified,		/* Metadata block has been verified ok */
	BH_JBDPrivateStart,	/* First bit available for private use by FS */
};

BUFFER_FNS(JBD, jbd)
BUFFER_FNS(JWrite, jwrite)
BUFFER_FNS(JBDDirty, jbddirty)
TAS_BUFFER_FNS(JBDDirty, jbddirty)
BUFFER_FNS(Revoked, revoked)
TAS_BUFFER_FNS(Revoked, revoked)
BUFFER_FNS(RevokeValid, revokevalid)
TAS_BUFFER_FNS(RevokeValid, revokevalid)
BUFFER_FNS(Freed, freed)
BUFFER_FNS(Shadow, shadow)
BUFFER_FNS(Verified, verified)

#include <linux/jbd_common.h>

#define J_ASSERT(assert)	BUG_ON(!(assert))

#define J_ASSERT_BH(bh, expr)	J_ASSERT(expr)
#define J_ASSERT_JH(jh, expr)	J_ASSERT(expr)

#if defined(JBD2_PARANOID_IOFAIL)
#define J_EXPECT(expr, why...)		J_ASSERT(expr)
#define J_EXPECT_BH(bh, expr, why...)	J_ASSERT_BH(bh, expr)
#define J_EXPECT_JH(jh, expr, why...)	J_ASSERT_JH(jh, expr)
#else
#define __journal_expect(expr, why...)					     \
	({								     \
		int val = (expr);					     \
		if (!val) {						     \
			printk(KERN_ERR					     \
			       "JBD2 unexpected failure: %s: %s;\n",	     \
			       __func__, #expr);			     \
			printk(KERN_ERR why "\n");			     \
		}							     \
		val;							     \
	})
#define J_EXPECT(expr, why...)		__journal_expect(expr, ## why)
#define J_EXPECT_BH(bh, expr, why...)	__journal_expect(expr, ## why)
#define J_EXPECT_JH(jh, expr, why...)	__journal_expect(expr, ## why)
#endif

/* Flags in jbd_inode->i_flags */
#define __JI_COMMIT_RUNNING 0
/* Commit of the inode data in progress. We use this flag to protect us from
 * concurrent deletion of inode. We cannot use reference to inode for this
 * since we cannot afford doing last iput() on behalf of kjournald
 */
#define JI_COMMIT_RUNNING (1 << __JI_COMMIT_RUNNING)

/**
 * struct jbd_inode is the structure linking inodes in ordered mode
 *   present in a transaction so that we can sync them during commit.
 */
struct jbd2_inode {
	/* Which transaction does this inode belong to? Either the running
	 * transaction or the committing one. [j_list_lock] */
	transaction_t *i_transaction;

	/* Pointer to the running transaction modifying inode's data in case
	 * there is already a committing transaction touching it. [j_list_lock] */
	transaction_t *i_next_transaction;

	/* List of inodes in the i_transaction [j_list_lock] */
	struct list_head i_list;

	/* VFS inode this inode belongs to [constant during the lifetime
	 * of the structure] */
	struct inode *i_vfs_inode;

	/* Flags of inode [j_list_lock] */
	unsigned long i_flags;
};

struct jbd2_revoke_table_s;

/**
 * struct handle_s - The handle_s type is the concrete type associated with
 *     handle_t.
 * @h_transaction: Which compound transaction is this update a part of?
 * @h_buffer_credits: Number of remaining buffers we are allowed to dirty.
 * @h_ref: Reference count on this handle
 * @h_err: Field for caller's use to track errors through large fs operations
 * @h_sync: flag for sync-on-close
 * @h_jdata: flag to force data journaling
 * @h_aborted: flag indicating fatal error on handle
 **/

/* Docbook can't yet cope with the bit fields, but will leave the documentation
 * in so it can be fixed later.
 */

struct jbd2_journal_handle
{
	union {
		/* Which compound transaction is this update a part of? */
		transaction_t	*h_transaction;
		/* Which journal handle belongs to - used iff h_reserved set */
		journal_t	*h_journal;
	};

	/* Handle reserved for finishing the logical operation */
	handle_t		*h_rsv_handle;

	/* Number of remaining buffers we are allowed to dirty: */
	int			h_buffer_credits;

	/* Reference count on this handle */
	int			h_ref;

	/* Field for caller's use to track errors through large fs */
	/* operations */
	int			h_err;

	/* Flags [no locking] */
	unsigned int	h_sync:		1;	/* sync-on-close */
	unsigned int	h_jdata:	1;	/* force data journaling */
	unsigned int	h_reserved:	1;	/* handle with reserved credits */
	unsigned int	h_aborted:	1;	/* fatal error on handle */
	unsigned int	h_type:		8;	/* for handle statistics */
	unsigned int	h_line_no:	16;	/* for handle statistics */

	unsigned long		h_start_jiffies;
	unsigned int		h_requested_credits;

#ifdef CONFIG_DEBUG_LOCK_ALLOC
	struct lockdep_map	h_lockdep_map;
#endif
};


/*
 * Some stats for checkpoint phase
 */
struct transaction_chp_stats_s {
	unsigned long		cs_chp_time;
	__u32			cs_forced_to_close;
	__u32			cs_written;
	__u32			cs_dropped;
};

/* The transaction_t type is the guts of the journaling mechanism.  It
 * tracks a compound transaction through its various states:
 *
 * RUNNING:	accepting new updates
 * LOCKED:	Updates still running but we don't accept new ones
 * RUNDOWN:	Updates are tidying up but have finished requesting
 *		new buffers to modify (state not used for now)
 * FLUSH:       All updates complete, but we are still writing to disk
 * COMMIT:      All data on disk, writing commit record
 * FINISHED:	We still have to keep the transaction for checkpointing.
 *
 * The transaction keeps track of all of the buffers modified by a
 * running transaction, and all of the buffers committed but not yet
 * flushed to home for finished transactions.
 */

/*
 * Lock ranking:
 *
 *    j_list_lock
 *      ->jbd_lock_bh_journal_head()	(This is "innermost")
 *
 *    j_state_lock
 *    ->jbd_lock_bh_state()
 *
 *    jbd_lock_bh_state()
 *    ->j_list_lock
 *
 *    j_state_lock
 *    ->t_handle_lock
 *
 *    j_state_lock
 *    ->j_list_lock			(journal_unmap_buffer)
 *
 */

struct transaction_s
{
	/* Pointer to the journal for this transaction. [no locking] */
	journal_t		*t_journal;

	/* Sequence number for this transaction [no locking] */
	tid_t			t_tid;

	/*
	 * Transaction's current state
	 * [no locking - only kjournald2 alters this]
	 * [j_list_lock] guards transition of a transaction into T_FINISHED
	 * state and subsequent call of __jbd2_journal_drop_transaction()
	 * FIXME: needs barriers
	 * KLUDGE: [use j_state_lock]
	 */
	enum {
		T_RUNNING,
		T_LOCKED,
		T_FLUSH,
		T_COMMIT,
		T_COMMIT_DFLUSH,
		T_COMMIT_JFLUSH,
		T_COMMIT_CALLBACK,
		T_FINISHED
	}			t_state;

	/*
	 * Where in the log does this transaction's commit start? [no locking]
	 */
	unsigned long		t_log_start;

	/* Number of buffers on the t_buffers list [j_list_lock] */
	int			t_nr_buffers;

	/*
	 * Doubly-linked circular list of all buffers reserved but not yet
	 * modified by this transaction [j_list_lock]
	 */
	struct journal_head	*t_reserved_list;

	/*
	 * Doubly-linked circular list of all metadata buffers owned by this
	 * transaction [j_list_lock]
	 */
	struct journal_head	*t_buffers;

	/*
	 * Doubly-linked circular list of all forget buffers (superseded
	 * buffers which we can un-checkpoint once this transaction commits)
	 * [j_list_lock]
	 */
	struct journal_head	*t_forget;

	/*
	 * Doubly-linked circular list of all buffers still to be flushed before
	 * this transaction can be checkpointed. [j_list_lock]
	 */
	struct journal_head	*t_checkpoint_list;

	/*
	 * Doubly-linked circular list of all buffers submitted for IO while
	 * checkpointing. [j_list_lock]
	 */
	struct journal_head	*t_checkpoint_io_list;

	/*
	 * Doubly-linked circular list of metadata buffers being shadowed by log
	 * IO.  The IO buffers on the iobuf list and the shadow buffers on this
	 * list match each other one for one at all times. [j_list_lock]
	 */
	struct journal_head	*t_shadow_list;

	/*
	 * List of inodes whose data we've modified in data=ordered mode.
	 * [j_list_lock]
	 */
	struct list_head	t_inode_list;

	/*
	 * Protects info related to handles
	 */
	spinlock_t		t_handle_lock;

	/*
	 * Longest time some handle had to wait for running transaction
	 */
	unsigned long		t_max_wait;

	/*
	 * When transaction started
	 */
	unsigned long		t_start;

	/*
	 * When commit was requested
	 */
	unsigned long		t_requested;

	/*
	 * Checkpointing stats [j_checkpoint_sem]
	 */
	struct transaction_chp_stats_s t_chp_stats;

	/*
	 * Number of outstanding updates running on this transaction
	 * [t_handle_lock]
	 */
	atomic_t		t_updates;

	/*
	 * Number of buffers reserved for use by all handles in this transaction
	 * handle but not yet modified. [t_handle_lock]
	 */
	atomic_t		t_outstanding_credits;

	/*
	 * Forward and backward links for the circular list of all transactions
	 * awaiting checkpoint. [j_list_lock]
	 */
	transaction_t		*t_cpnext, *t_cpprev;

	/*
	 * When will the transaction expire (become due for commit), in jiffies?
	 * [no locking]
	 */
	unsigned long		t_expires;

	/*
	 * When this transaction started, in nanoseconds [no locking]
	 */
	ktime_t			t_start_time;

	/*
	 * How many handles used this transaction? [t_handle_lock]
	 */
	atomic_t		t_handle_count;

	/*
	 * This transaction is being forced and some process is
	 * waiting for it to finish.
	 */
	unsigned int t_synchronous_commit:1;

	/* Disk flush needs to be sent to fs partition [no locking] */
	int			t_need_data_flush;

	/*
	 * For use by the filesystem to store fs-specific data
	 * structures associated with the transaction
	 */
	struct list_head	t_private_list;
};

struct transaction_run_stats_s {
	unsigned long		rs_wait;
	unsigned long		rs_request_delay;
	unsigned long		rs_running;
	unsigned long		rs_locked;
	unsigned long		rs_flushing;
	unsigned long		rs_logging;

	__u32			rs_handle_count;
	__u32			rs_blocks;
	__u32			rs_blocks_logged;
};

struct transaction_stats_s {
	unsigned long		ts_tid;
	unsigned long		ts_requested;
	struct transaction_run_stats_s run;
};

static inline unsigned long
jbd2_time_diff(unsigned long start, unsigned long end)
{
	if (end >= start)
		return end - start;

	return end + (MAX_JIFFY_OFFSET - start);
}

#define JBD2_NR_BATCH	64

/**
 * struct journal_s - The journal_s type is the concrete type associated with
 *     journal_t.
 * @j_flags:  General journaling state flags
 * @j_errno:  Is there an outstanding uncleared error on the journal (from a
 *     prior abort)?
 * @j_sb_buffer: First part of superblock buffer
 * @j_superblock: Second part of superblock buffer
 * @j_format_version: Version of the superblock format
 * @j_state_lock: Protect the various scalars in the journal
 * @j_barrier_count:  Number of processes waiting to create a barrier lock
 * @j_barrier: The barrier lock itself
 * @j_running_transaction: The current running transaction..
 * @j_committing_transaction: the transaction we are pushing to disk
 * @j_checkpoint_transactions: a linked circular list of all transactions
 *  waiting for checkpointing
 * @j_wait_transaction_locked: Wait queue for waiting for a locked transaction
 *  to start committing, or for a barrier lock to be released
 * @j_wait_done_commit: Wait queue for waiting for commit to complete
 * @j_wait_commit: Wait queue to trigger commit
 * @j_wait_updates: Wait queue to wait for updates to complete
 * @j_wait_reserved: Wait queue to wait for reserved buffer credits to drop
 * @j_checkpoint_mutex: Mutex for locking against concurrent checkpoints
 * @j_head: Journal head - identifies the first unused block in the journal
 * @j_tail: Journal tail - identifies the oldest still-used block in the
 *  journal.
 * @j_free: Journal free - how many free blocks are there in the journal?
 * @j_first: The block number of the first usable block
 * @j_last: The block number one beyond the last usable block
 * @j_dev: Device where we store the journal
 * @j_blocksize: blocksize for the location where we store the journal.
 * @j_blk_offset: starting block offset for into the device where we store the
 *     journal
 * @j_fs_dev: Device which holds the client fs.  For internal journal this will
 *     be equal to j_dev
 * @j_reserved_credits: Number of buffers reserved from the running transaction
 * @j_maxlen: Total maximum capacity of the journal region on disk.
 * @j_list_lock: Protects the buffer lists and internal buffer state.
 * @j_inode: Optional inode where we store the journal.  If present, all journal
 *     block numbers are mapped into this inode via bmap().
 * @j_tail_sequence:  Sequence number of the oldest transaction in the log
 * @j_transaction_sequence: Sequence number of the next transaction to grant
 * @j_commit_sequence: Sequence number of the most recently committed
 *  transaction
 * @j_commit_request: Sequence number of the most recent transaction wanting
 *     commit
 * @j_uuid: Uuid of client object.
 * @j_task: Pointer to the current commit thread for this journal
 * @j_max_transaction_buffers:  Maximum number of metadata buffers to allow in a
 *     single compound commit transaction
 * @j_commit_interval: What is the maximum transaction lifetime before we begin
 *  a commit?
 * @j_commit_timer:  The timer used to wakeup the commit thread
 * @j_revoke_lock: Protect the revoke table
 * @j_revoke: The revoke table - maintains the list of revoked blocks in the
 *     current transaction.
 * @j_revoke_table: alternate revoke tables for j_revoke
 * @j_wbuf: array of buffer_heads for jbd2_journal_commit_transaction
 * @j_wbufsize: maximum number of buffer_heads allowed in j_wbuf, the
 *	number that will fit in j_blocksize
 * @j_last_sync_writer: most recent pid which did a synchronous write
 * @j_history: Buffer storing the transactions statistics history
 * @j_history_max: Maximum number of transactions in the statistics history
 * @j_history_cur: Current number of transactions in the statistics history
 * @j_history_lock: Protect the transactions statistics history
 * @j_proc_entry: procfs entry for the jbd statistics directory
 * @j_stats: Overall statistics
 * @j_private: An opaque pointer to fs-private information.
 */

struct journal_s
{
	/* General journaling state flags [j_state_lock] */
	unsigned long		j_flags;

	/*
	 * Is there an outstanding uncleared error on the journal (from a prior
	 * abort)? [j_state_lock]
	 */
	int			j_errno;

	/* The superblock buffer */
	struct buffer_head	*j_sb_buffer;
	journal_superblock_t	*j_superblock;

	/* Version of the superblock format */
	int			j_format_version;

	/*
	 * Protect the various scalars in the journal
	 */
	rwlock_t		j_state_lock;

	/*
	 * Number of processes waiting to create a barrier lock [j_state_lock]
	 */
	int			j_barrier_count;

	/* The barrier lock itself */
	struct mutex		j_barrier;

	/*
	 * Transactions: The current running transaction...
	 * [j_state_lock] [caller holding open handle]
	 */
	transaction_t		*j_running_transaction;

	/*
	 * the transaction we are pushing to disk
	 * [j_state_lock] [caller holding open handle]
	 */
	transaction_t		*j_committing_transaction;

	/*
	 * ... and a linked circular list of all transactions waiting for
	 * checkpointing. [j_list_lock]
	 */
	transaction_t		*j_checkpoint_transactions;

	/*
	 * Wait queue for waiting for a locked transaction to start committing,
	 * or for a barrier lock to be released
	 */
	wait_queue_head_t	j_wait_transaction_locked;

	/* Wait queue for waiting for commit to complete */
	wait_queue_head_t	j_wait_done_commit;

	/* Wait queue to trigger commit */
	wait_queue_head_t	j_wait_commit;

	/* Wait queue to wait for updates to complete */
	wait_queue_head_t	j_wait_updates;

	/* Wait queue to wait for reserved buffer credits to drop */
	wait_queue_head_t	j_wait_reserved;

	/* Semaphore for locking against concurrent checkpoints */
	struct mutex		j_checkpoint_mutex;

	/*
	 * List of buffer heads used by the checkpoint routine.  This
	 * was moved from jbd2_log_do_checkpoint() to reduce stack
	 * usage.  Access to this array is controlled by the
	 * j_checkpoint_mutex.  [j_checkpoint_mutex]
	 */
	struct buffer_head	*j_chkpt_bhs[JBD2_NR_BATCH];
	
	/*
	 * Journal head: identifies the first unused block in the journal.
	 * [j_state_lock]
	 */
	unsigned long		j_head;

	/*
	 * Journal tail: identifies the oldest still-used block in the journal.
	 * [j_state_lock]
	 */
	unsigned long		j_tail;

	/*
	 * Journal free: how many free blocks are there in the journal?
	 * [j_state_lock]
	 */
	unsigned long		j_free;

	/*
	 * Journal start and end: the block numbers of the first usable block
	 * and one beyond the last usable block in the journal. [j_state_lock]
	 */
	unsigned long		j_first;
	unsigned long		j_last;

	/*
	 * Device, blocksize and starting block offset for the location where we
	 * store the journal.
	 */
	struct block_device	*j_dev;
	int			j_blocksize;
	unsigned long long	j_blk_offset;
	char			j_devname[BDEVNAME_SIZE+24];

	/*
	 * Device which holds the client fs.  For internal journal this will be
	 * equal to j_dev.
	 */
	struct block_device	*j_fs_dev;

	/* Total maximum capacity of the journal region on disk. */
	unsigned int		j_maxlen;

	/* Number of buffers reserved from the running transaction */
	atomic_t		j_reserved_credits;

	/*
	 * Protects the buffer lists and internal buffer state.
	 */
	spinlock_t		j_list_lock;

	/* Optional inode where we store the journal.  If present, all */
	/* journal block numbers are mapped into this inode via */
	/* bmap(). */
	struct inode		*j_inode;

	/*
	 * Sequence number of the oldest transaction in the log [j_state_lock]
	 */
	tid_t			j_tail_sequence;

	/*
	 * Sequence number of the next transaction to grant [j_state_lock]
	 */
	tid_t			j_transaction_sequence;

	/*
	 * Sequence number of the most recently committed transaction
	 * [j_state_lock].
	 */
	tid_t			j_commit_sequence;

	/*
	 * Sequence number of the most recent transaction wanting commit
	 * [j_state_lock]
	 */
	tid_t			j_commit_request;

	/*
	 * Journal uuid: identifies the object (filesystem, LVM volume etc)
	 * backed by this journal.  This will eventually be replaced by an array
	 * of uuids, allowing us to index multiple devices within a single
	 * journal and to perform atomic updates across them.
	 */
	__u8			j_uuid[16];

	/* Pointer to the current commit thread for this journal */
	struct task_struct	*j_task;

	/*
	 * Maximum number of metadata buffers to allow in a single compound
	 * commit transaction
	 */
	int			j_max_transaction_buffers;

	/*
	 * What is the maximum transaction lifetime before we begin a commit?
	 */
	unsigned long		j_commit_interval;

	/* The timer used to wakeup the commit thread: */
	struct timer_list	j_commit_timer;

	/*
	 * The revoke table: maintains the list of revoked blocks in the
	 * current transaction.  [j_revoke_lock]
	 */
	spinlock_t		j_revoke_lock;
	struct jbd2_revoke_table_s *j_revoke;
	struct jbd2_revoke_table_s *j_revoke_table[2];

	/*
	 * array of bhs for jbd2_journal_commit_transaction
	 */
	struct buffer_head	**j_wbuf;
	int			j_wbufsize;

	/*
	 * this is the pid of hte last person to run a synchronous operation
	 * through the journal
	 */
	pid_t			j_last_sync_writer;

	/*
	 * the average amount of time in nanoseconds it takes to commit a
	 * transaction to disk. [j_state_lock]
	 */
	u64			j_average_commit_time;

	/*
	 * minimum and maximum times that we should wait for
	 * additional filesystem operations to get batched into a
	 * synchronous handle in microseconds
	 */
	u32			j_min_batch_time;
	u32			j_max_batch_time;

	/* This function is called when a transaction is closed */
	void			(*j_commit_callback)(journal_t *,
						     transaction_t *);

	/*
	 * Journal statistics
	 */
	spinlock_t		j_history_lock;
	struct proc_dir_entry	*j_proc_entry;
	struct transaction_stats_s j_stats;

	/* Failed journal commit ID */
	unsigned int		j_failed_commit;

	/*
	 * An opaque pointer to fs-private information.  ext3 puts its
	 * superblock pointer here
	 */
	void *j_private;

	/* Reference to checksum algorithm driver via cryptoapi */
	struct crypto_shash *j_chksum_driver;

	/* Precomputed journal UUID checksum for seeding other checksums */
	__u32 j_csum_seed;
};

/*
 * Journal flag definitions
 */
#define JBD2_UNMOUNT	0x001	/* Journal thread is being destroyed */
#define JBD2_ABORT	0x002	/* Journaling has been aborted for errors. */
#define JBD2_ACK_ERR	0x004	/* The errno in the sb has been acked */
#define JBD2_FLUSHED	0x008	/* The journal superblock has been flushed */
#define JBD2_LOADED	0x010	/* The journal superblock has been loaded */
#define JBD2_BARRIER	0x020	/* Use IDE barriers */
#define JBD2_ABORT_ON_SYNCDATA_ERR	0x040	/* Abort the journal on file
						 * data write error in ordered
						 * mode */
#define JBD2_REC_ERR	0x080	/* The errno in the sb has been recorded */

/*
 * Function declarations for the journaling transaction and buffer
 * management
 */

/* Filing buffers */
extern void jbd2_journal_unfile_buffer(journal_t *, struct journal_head *);
extern void __jbd2_journal_refile_buffer(struct journal_head *);
extern void jbd2_journal_refile_buffer(journal_t *, struct journal_head *);
extern void __jbd2_journal_file_buffer(struct journal_head *, transaction_t *, int);
extern void __journal_free_buffer(struct journal_head *bh);
extern void jbd2_journal_file_buffer(struct journal_head *, transaction_t *, int);
extern void __journal_clean_data_list(transaction_t *transaction);
static inline void jbd2_file_log_bh(struct list_head *head, struct buffer_head *bh)
{
	list_add_tail(&bh->b_assoc_buffers, head);
}
static inline void jbd2_unfile_log_bh(struct buffer_head *bh)
{
	list_del_init(&bh->b_assoc_buffers);
}

/* Log buffer allocation */
struct buffer_head *jbd2_journal_get_descriptor_buffer(journal_t *journal);
int jbd2_journal_next_log_block(journal_t *, unsigned long long *);
int jbd2_journal_get_log_tail(journal_t *journal, tid_t *tid,
			      unsigned long *block);
int __jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block);
void jbd2_update_log_tail(journal_t *journal, tid_t tid, unsigned long block);

/* Commit management */
extern void jbd2_journal_commit_transaction(journal_t *);

/* Checkpoint list management */
void __jbd2_journal_clean_checkpoint_list(journal_t *journal, bool destroy);
int __jbd2_journal_remove_checkpoint(struct journal_head *);
void jbd2_journal_destroy_checkpoint(journal_t *journal);
void __jbd2_journal_insert_checkpoint(struct journal_head *, transaction_t *);


/*
 * Triggers
 */

struct jbd2_buffer_trigger_type {
	/*
	 * Fired a the moment data to write to the journal are known to be
	 * stable - so either at the moment b_frozen_data is created or just
	 * before a buffer is written to the journal.  mapped_data is a mapped
	 * buffer that is the frozen data for commit.
	 */
	void (*t_frozen)(struct jbd2_buffer_trigger_type *type,
			 struct buffer_head *bh, void *mapped_data,
			 size_t size);

	/*
	 * Fired during journal abort for dirty buffers that will not be
	 * committed.
	 */
	void (*t_abort)(struct jbd2_buffer_trigger_type *type,
			struct buffer_head *bh);
};

extern void jbd2_buffer_frozen_trigger(struct journal_head *jh,
				       void *mapped_data,
				       struct jbd2_buffer_trigger_type *triggers);
extern void jbd2_buffer_abort_trigger(struct journal_head *jh,
				      struct jbd2_buffer_trigger_type *triggers);

/* Buffer IO */
extern int jbd2_journal_write_metadata_buffer(transaction_t *transaction,
					      struct journal_head *jh_in,
					      struct buffer_head **bh_out,
					      sector_t blocknr);

/* Transaction locking */
extern void		__wait_on_journal (journal_t *);

/* Transaction cache support */
extern void jbd2_journal_destroy_transaction_cache(void);
extern int  jbd2_journal_init_transaction_cache(void);
extern void jbd2_journal_free_transaction(transaction_t *);

/*
 * Journal locking.
 *
 * We need to lock the journal during transaction state changes so that nobody
 * ever tries to take a handle on the running transaction while we are in the
 * middle of moving it to the commit phase.  j_state_lock does this.
 *
 * Note that the locking is completely interrupt unsafe.  We never touch
 * journal structures from interrupts.
 */

static inline handle_t *journal_current_handle(void)
{
	return current->journal_info;
}

/* The journaling code user interface:
 *
 * Create and destroy handles
 * Register buffer modifications against the current transaction.
 */

extern handle_t *jbd2_journal_start(journal_t *, int nblocks);
extern handle_t *jbd2__journal_start(journal_t *, int blocks, int rsv_blocks,
				     gfp_t gfp_mask, unsigned int type,
				     unsigned int line_no);
extern int	 jbd2_journal_restart(handle_t *, int nblocks);
extern int	 jbd2__journal_restart(handle_t *, int nblocks, gfp_t gfp_mask);
extern int	 jbd2_journal_start_reserved(handle_t *handle,
				unsigned int type, unsigned int line_no);
extern void	 jbd2_journal_free_reserved(handle_t *handle);
extern int	 jbd2_journal_extend (handle_t *, int nblocks);
extern int	 jbd2_journal_get_write_access(handle_t *, struct buffer_head *);
extern int	 jbd2_journal_get_create_access (handle_t *, struct buffer_head *);
extern int	 jbd2_journal_get_undo_access(handle_t *, struct buffer_head *);
void		 jbd2_journal_set_triggers(struct buffer_head *,
					   struct jbd2_buffer_trigger_type *type);
extern int	 jbd2_journal_dirty_metadata (handle_t *, struct buffer_head *);
extern int	 jbd2_journal_forget (handle_t *, struct buffer_head *);
extern void	 journal_sync_buffer (struct buffer_head *);
extern int	 jbd2_journal_invalidatepage(journal_t *,
				struct page *, unsigned int, unsigned int);
extern int	 jbd2_journal_try_to_free_buffers(journal_t *, struct page *, gfp_t);
extern int	 jbd2_journal_stop(handle_t *);
extern int	 jbd2_journal_flush (journal_t *);
extern void	 jbd2_journal_lock_updates (journal_t *);
extern void	 jbd2_journal_unlock_updates (journal_t *);

extern journal_t * jbd2_journal_init_dev(struct block_device *bdev,
				struct block_device *fs_dev,
				unsigned long long start, int len, int bsize);
extern journal_t * jbd2_journal_init_inode (struct inode *);
extern int	   jbd2_journal_update_format (journal_t *);
extern int	   jbd2_journal_check_used_features
		   (journal_t *, unsigned long, unsigned long, unsigned long);
extern int	   jbd2_journal_check_available_features
		   (journal_t *, unsigned long, unsigned long, unsigned long);
extern int	   jbd2_journal_set_features
		   (journal_t *, unsigned long, unsigned long, unsigned long);
extern void	   jbd2_journal_clear_features
		   (journal_t *, unsigned long, unsigned long, unsigned long);
extern int	   jbd2_journal_load       (journal_t *journal);
extern int	   jbd2_journal_destroy    (journal_t *);
extern int	   jbd2_journal_recover    (journal_t *journal);
extern int	   jbd2_journal_wipe       (journal_t *, int);
extern int	   jbd2_journal_skip_recovery	(journal_t *);
extern void	   jbd2_journal_update_sb_errno(journal_t *);
extern int	   jbd2_journal_update_sb_log_tail	(journal_t *, tid_t,
				unsigned long, int);
extern void	   __jbd2_journal_abort_hard	(journal_t *);
extern void	   jbd2_journal_abort      (journal_t *, int);
extern int	   jbd2_journal_errno      (journal_t *);
extern void	   jbd2_journal_ack_err    (journal_t *);
extern int	   jbd2_journal_clear_err  (journal_t *);
extern int	   jbd2_journal_bmap(journal_t *, unsigned long, unsigned long long *);
extern int	   jbd2_journal_force_commit(journal_t *);
extern int	   jbd2_journal_force_commit_nested(journal_t *);
extern int	   jbd2_journal_file_inode(handle_t *handle, struct jbd2_inode *inode);
extern int	   jbd2_journal_begin_ordered_truncate(journal_t *journal,
				struct jbd2_inode *inode, loff_t new_size);
extern void	   jbd2_journal_init_jbd_inode(struct jbd2_inode *jinode, struct inode *inode);
extern void	   jbd2_journal_release_jbd_inode(journal_t *journal, struct jbd2_inode *jinode);

/*
 * journal_head management
 */
struct journal_head *jbd2_journal_add_journal_head(struct buffer_head *bh);
struct journal_head *jbd2_journal_grab_journal_head(struct buffer_head *bh);
void jbd2_journal_put_journal_head(struct journal_head *jh);

/*
 * handle management
 */
extern struct kmem_cache *jbd2_handle_cache;

static inline handle_t *jbd2_alloc_handle(gfp_t gfp_flags)
{
	return kmem_cache_zalloc(jbd2_handle_cache, gfp_flags);
}

static inline void jbd2_free_handle(handle_t *handle)
{
	kmem_cache_free(jbd2_handle_cache, handle);
}

/*
 * jbd2_inode management (optional, for those file systems that want to use
 * dynamically allocated jbd2_inode structures)
 */
extern struct kmem_cache *jbd2_inode_cache;

static inline struct jbd2_inode *jbd2_alloc_inode(gfp_t gfp_flags)
{
	return kmem_cache_alloc(jbd2_inode_cache, gfp_flags);
}

static inline void jbd2_free_inode(struct jbd2_inode *jinode)
{
	kmem_cache_free(jbd2_inode_cache, jinode);
}

/* Primary revoke support */
#define JOURNAL_REVOKE_DEFAULT_HASH 256
extern int	   jbd2_journal_init_revoke(journal_t *, int);
extern void	   jbd2_journal_destroy_revoke_caches(void);
extern int	   jbd2_journal_init_revoke_caches(void);

extern void	   jbd2_journal_destroy_revoke(journal_t *);
extern int	   jbd2_journal_revoke (handle_t *, unsigned long long, struct buffer_head *);
extern int	   jbd2_journal_cancel_revoke(handle_t *, struct journal_head *);
extern void	   jbd2_journal_write_revoke_records(journal_t *journal,
						     transaction_t *transaction,
						     struct list_head *log_bufs,
						     int write_op);

/* Recovery revoke support */
extern int	jbd2_journal_set_revoke(journal_t *, unsigned long long, tid_t);
extern int	jbd2_journal_test_revoke(journal_t *, unsigned long long, tid_t);
extern void	jbd2_journal_clear_revoke(journal_t *);
extern void	jbd2_journal_switch_revoke_table(journal_t *journal);
extern void	jbd2_clear_buffer_revoked_flags(journal_t *journal);

/*
 * The log thread user interface:
 *
 * Request space in the current transaction, and force transaction commit
 * transitions on demand.
 */

int jbd2_log_start_commit(journal_t *journal, tid_t tid);
int __jbd2_log_start_commit(journal_t *journal, tid_t tid);
int jbd2_journal_start_commit(journal_t *journal, tid_t *tid);
int jbd2_log_wait_commit(journal_t *journal, tid_t tid);
int jbd2_transaction_committed(journal_t *journal, tid_t tid);
int jbd2_complete_transaction(journal_t *journal, tid_t tid);
int jbd2_log_do_checkpoint(journal_t *journal);
int jbd2_trans_will_send_data_barrier(journal_t *journal, tid_t tid);

void __jbd2_log_wait_for_space(journal_t *journal);
extern void __jbd2_journal_drop_transaction(journal_t *, transaction_t *);
extern int jbd2_cleanup_journal_tail(journal_t *);

/* Debugging code only: */

#define jbd_ENOSYS() \
do {								           \
	printk (KERN_ERR "JBD unimplemented function %s\n", __func__); \
	current->state = TASK_UNINTERRUPTIBLE;			           \
	schedule();						           \
} while (1)

/*
 * is_journal_abort
 *
 * Simple test wrapper function to test the JBD2_ABORT state flag.  This
 * bit, when set, indicates that we have had a fatal error somewhere,
 * either inside the journaling layer or indicated to us by the client
 * (eg. ext3), and that we and should not commit any further
 * transactions.
 */

static inline int is_journal_aborted(journal_t *journal)
{
	return journal->j_flags & JBD2_ABORT;
}

static inline int is_handle_aborted(handle_t *handle)
{
	if (handle->h_aborted || !handle->h_transaction)
		return 1;
	return is_journal_aborted(handle->h_transaction->t_journal);
}

static inline void jbd2_journal_abort_handle(handle_t *handle)
{
	handle->h_aborted = 1;
}

#endif /* __KERNEL__   */

/* Comparison functions for transaction IDs: perform comparisons using
 * modulo arithmetic so that they work over sequence number wraps. */

static inline int tid_gt(tid_t x, tid_t y)
{
	int difference = (x - y);
	return (difference > 0);
}

static inline int tid_geq(tid_t x, tid_t y)
{
	int difference = (x - y);
	return (difference >= 0);
}

extern int jbd2_journal_blocks_per_page(struct inode *inode);
extern size_t journal_tag_bytes(journal_t *journal);

static inline int jbd2_journal_has_csum_v2or3(journal_t *journal)
{
	if (JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V2) ||
	    JBD2_HAS_INCOMPAT_FEATURE(journal, JBD2_FEATURE_INCOMPAT_CSUM_V3))
		return 1;

	return 0;
}

/*
 * We reserve t_outstanding_credits >> JBD2_CONTROL_BLOCKS_SHIFT for
 * transaction control blocks.
 */
#define JBD2_CONTROL_BLOCKS_SHIFT 5

/*
 * Return the minimum number of blocks which must be free in the journal
 * before a new transaction may be started.  Must be called under j_state_lock.
 */
static inline int jbd2_space_needed(journal_t *journal)
{
	int nblocks = journal->j_max_transaction_buffers;
	return nblocks + (nblocks >> JBD2_CONTROL_BLOCKS_SHIFT);
}

/*
 * Return number of free blocks in the log. Must be called under j_state_lock.
 */
static inline unsigned long jbd2_log_space_left(journal_t *journal)
{
	/* Allow for rounding errors */
	long free = journal->j_free - 32;

	if (journal->j_committing_transaction) {
		unsigned long committing = atomic_read(&journal->
			j_committing_transaction->t_outstanding_credits);

		/* Transaction + control blocks */
		free -= committing + (committing >> JBD2_CONTROL_BLOCKS_SHIFT);
	}
	return max_t(long, free, 0);
}

/*
 * Definitions which augment the buffer_head layer
 */

/* journaling buffer types */
#define BJ_None		0	/* Not journaled */
#define BJ_Metadata	1	/* Normal journaled metadata */
#define BJ_Forget	2	/* Buffer superseded by this transaction */
#define BJ_Shadow	3	/* Buffer contents being shadowed to the log */
#define BJ_Reserved	4	/* Buffer is reserved for access by journal */
#define BJ_Types	5

extern int jbd_blocks_per_page(struct inode *inode);

/* JBD uses a CRC32 checksum */
#define JBD_MAX_CHECKSUM_SIZE 4

static inline u32 jbd2_chksum(journal_t *journal, u32 crc,
			      const void *address, unsigned int length)
{
	struct {
		struct shash_desc shash;
		char ctx[JBD_MAX_CHECKSUM_SIZE];
	} desc;
	int err;

	BUG_ON(crypto_shash_descsize(journal->j_chksum_driver) >
		JBD_MAX_CHECKSUM_SIZE);

	desc.shash.tfm = journal->j_chksum_driver;
	desc.shash.flags = 0;
	*(u32 *)desc.ctx = crc;

	err = crypto_shash_update(&desc.shash, address, length);
	BUG_ON(err);

	return *(u32 *)desc.ctx;
}

/* Return most recent uncommitted transaction */
static inline tid_t  jbd2_get_latest_transaction(journal_t *journal)
{
	tid_t tid;

	read_lock(&journal->j_state_lock);
	tid = journal->j_commit_request;
	if (journal->j_running_transaction)
		tid = journal->j_running_transaction->t_tid;
	read_unlock(&journal->j_state_lock);
	return tid;
}

#ifdef __KERNEL__

#define buffer_trace_init(bh)	do {} while (0)
#define print_buffer_fields(bh)	do {} while (0)
#define print_buffer_trace(bh)	do {} while (0)
#define BUFFER_TRACE(bh, info)	do {} while (0)
#define BUFFER_TRACE2(bh, bh2, info)	do {} while (0)
#define JBUFFER_TRACE(jh, info)	do {} while (0)

#endif	/* __KERNEL__ */

#define EFSCORRUPTED	EUCLEAN		/* Filesystem is corrupted */

#endif	/* _LINUX_JBD2_H */
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
January 19 2024 08:12:51
0 / 0
0755
amba
--
January 19 2024 08:12:50
0 / 0
0755
avf
--
January 19 2024 08:12:50
0 / 0
0755
bcma
--
January 19 2024 08:12:50
0 / 0
0755
byteorder
--
January 19 2024 08:12:50
0 / 0
0755
can
--
January 19 2024 08:12:50
0 / 0
0755
ceph
--
January 19 2024 08:12:50
0 / 0
0755
clk
--
January 19 2024 08:12:50
0 / 0
0755
crush
--
January 19 2024 08:12:50
0 / 0
0755
decompress
--
January 19 2024 08:12:50
0 / 0
0755
dma
--
January 19 2024 08:12:50
0 / 0
0755
extcon
--
January 19 2024 08:12:50
0 / 0
0755
fsl
--
January 19 2024 08:12:50
0 / 0
0755
gpio
--
January 19 2024 08:12:50
0 / 0
0755
hsi
--
January 19 2024 08:12:50
0 / 0
0755
i2c
--
January 19 2024 08:12:50
0 / 0
0755
iio
--
January 19 2024 08:12:50
0 / 0
0755
input
--
January 19 2024 08:12:50
0 / 0
0755
irqchip
--
January 19 2024 08:12:50
0 / 0
0755
isdn
--
January 19 2024 08:12:50
0 / 0
0755
lockd
--
January 19 2024 08:12:50
0 / 0
0755
mfd
--
January 19 2024 08:12:50
0 / 0
0755
mlx4
--
January 19 2024 08:12:50
0 / 0
0755
mlx5
--
January 19 2024 08:12:50
0 / 0
0755
mmc
--
January 19 2024 08:12:50
0 / 0
0755
mtd
--
January 19 2024 08:12:50
0 / 0
0755
netfilter
--
January 19 2024 08:12:50
0 / 0
0755
netfilter_arp
--
January 19 2024 08:12:50
0 / 0
0755
netfilter_bridge
--
January 19 2024 08:12:50
0 / 0
0755
netfilter_ipv4
--
January 19 2024 08:12:50
0 / 0
0755
netfilter_ipv6
--
January 19 2024 08:12:50
0 / 0
0755
phy
--
January 19 2024 08:12:50
0 / 0
0755
pinctrl
--
January 19 2024 08:12:50
0 / 0
0755
platform_data
--
January 19 2024 08:12:50
0 / 0
0755
power
--
January 19 2024 08:12:50
0 / 0
0755
qed
--
January 19 2024 08:12:50
0 / 0
0755
raid
--
January 19 2024 08:12:50
0 / 0
0755
regulator
--
January 19 2024 08:12:50
0 / 0
0755
rtc
--
January 19 2024 08:12:50
0 / 0
0755
sched
--
January 19 2024 08:12:50
0 / 0
0755
spi
--
January 19 2024 08:12:50
0 / 0
0755
ssb
--
January 19 2024 08:12:50
0 / 0
0755
sunrpc
--
January 19 2024 08:12:50
0 / 0
0755
ulpi
--
January 19 2024 08:12:50
0 / 0
0755
unaligned
--
January 19 2024 08:12:50
0 / 0
0755
usb
--
January 19 2024 08:12:50
0 / 0
0755
uwb
--
January 19 2024 08:12:51
0 / 0
0755
wimax
--
January 19 2024 08:12:51
0 / 0
0755
8250_pci.h
0.976 KB
November 06 2023 09:15:52
0 / 0
0644
a.out.h
1.353 KB
November 06 2023 09:15:52
0 / 0
0644
acct.h
2.51 KB
November 06 2023 09:15:52
0 / 0
0644
acpi.h
26.935 KB
November 06 2023 09:15:52
0 / 0
0644
acpi_dma.h
3.177 KB
November 06 2023 09:15:52
0 / 0
0644
acpi_pmtmr.h
0.62 KB
November 06 2023 09:15:52
0 / 0
0644
adb.h
1.751 KB
November 06 2023 09:15:52
0 / 0
0644
adfs_fs.h
0.522 KB
November 06 2023 09:15:52
0 / 0
0644
adxl.h
0.303 KB
November 06 2023 09:15:52
0 / 0
0644
aer.h
1.682 KB
November 06 2023 09:15:52
0 / 0
0644
agp_backend.h
3.451 KB
November 06 2023 09:15:52
0 / 0
0644
agpgart.h
3.816 KB
November 06 2023 09:15:52
0 / 0
0644
ahci_platform.h
0.872 KB
November 06 2023 09:15:52
0 / 0
0644
aio.h
3.319 KB
November 06 2023 09:15:52
0 / 0
0644
alarmtimer.h
1.424 KB
November 06 2023 09:15:52
0 / 0
0644
altera_jtaguart.h
0.332 KB
November 06 2023 09:15:52
0 / 0
0644
altera_uart.h
0.35 KB
November 06 2023 09:15:52
0 / 0
0644
amd-iommu.h
6.782 KB
November 06 2023 09:15:52
0 / 0
0644
amifd.h
1.948 KB
November 06 2023 09:15:52
0 / 0
0644
amifdreg.h
2.611 KB
November 06 2023 09:15:52
0 / 0
0644
amigaffs.h
2.858 KB
November 06 2023 09:15:52
0 / 0
0644
anon_inodes.h
0.444 KB
November 06 2023 09:15:52
0 / 0
0644
apm-emulation.h
1.538 KB
November 06 2023 09:15:52
0 / 0
0644
apm_bios.h
2.682 KB
November 06 2023 09:15:52
0 / 0
0644
apple_bl.h
0.448 KB
November 06 2023 09:15:52
0 / 0
0644
arcdevice.h
12.456 KB
November 06 2023 09:15:52
0 / 0
0644
ascii85.h
0.52 KB
November 06 2023 09:15:52
0 / 0
0644
asn1.h
1.991 KB
November 06 2023 09:15:52
0 / 0
0644
asn1_ber_bytecode.h
2.718 KB
November 06 2023 09:15:52
0 / 0
0644
asn1_decoder.h
0.659 KB
November 06 2023 09:15:52
0 / 0
0644
assoc_array.h
3.073 KB
November 06 2023 09:15:52
0 / 0
0644
assoc_array_priv.h
5.489 KB
November 06 2023 09:15:52
0 / 0
0644
async.h
1.648 KB
November 06 2023 09:15:52
0 / 0
0644
async_tx.h
6.909 KB
November 06 2023 09:15:52
0 / 0
0644
ata.h
29.434 KB
November 06 2023 09:15:52
0 / 0
0644
ata_platform.h
0.733 KB
November 06 2023 09:15:52
0 / 0
0644
atalk.h
4.282 KB
November 06 2023 09:15:52
0 / 0
0644
ath9k_platform.h
1.442 KB
November 06 2023 09:15:52
0 / 0
0644
atm.h
0.242 KB
November 06 2023 09:15:52
0 / 0
0644
atm_suni.h
0.247 KB
November 06 2023 09:15:52
0 / 0
0644
atm_tcp.h
0.461 KB
November 06 2023 09:15:52
0 / 0
0644
atmdev.h
9.516 KB
November 06 2023 09:15:52
0 / 0
0644
atmel-mci.h
1.205 KB
November 06 2023 09:15:52
0 / 0
0644
atmel-pwm-bl.h
1.514 KB
November 06 2023 09:15:52
0 / 0
0644
atmel-ssc.h
9.288 KB
November 06 2023 09:15:52
0 / 0
0644
atmel_pdc.h
1.467 KB
November 06 2023 09:15:52
0 / 0
0644
atmel_pwm.h
2.66 KB
November 06 2023 09:15:52
0 / 0
0644
atmel_serial.h
5.944 KB
November 06 2023 09:15:52
0 / 0
0644
atmel_tc.h
11.082 KB
November 06 2023 09:15:52
0 / 0
0644
atomic.h
12.648 KB
November 06 2023 09:15:52
0 / 0
0644
attribute_container.h
2.467 KB
November 06 2023 09:15:52
0 / 0
0644
audit.h
16.849 KB
November 06 2023 09:15:52
0 / 0
0644
auto_dev-ioctl.h
0.443 KB
November 06 2023 09:15:52
0 / 0
0644
auto_fs.h
0.426 KB
November 06 2023 09:15:52
0 / 0
0644
auxvec.h
0.259 KB
November 06 2023 09:15:52
0 / 0
0644
average.h
1.988 KB
November 06 2023 09:15:52
0 / 0
0644
b1pcmcia.h
0.65 KB
November 06 2023 09:15:52
0 / 0
0644
backing-dev.h
10.367 KB
November 06 2023 09:15:52
0 / 0
0644
backlight.h
4.791 KB
November 06 2023 09:15:52
0 / 0
0644
badblocks.h
2.099 KB
November 06 2023 09:15:52
0 / 0
0644
balloon_compaction.h
7.676 KB
November 06 2023 09:15:52
0 / 0
0644
basic_mmio_gpio.h
2.083 KB
November 06 2023 09:15:52
0 / 0
0644
bcd.h
0.508 KB
November 06 2023 09:15:52
0 / 0
0644
bch.h
2.598 KB
November 06 2023 09:15:52
0 / 0
0644
bcm47xx_nvram.h
1.193 KB
November 06 2023 09:15:52
0 / 0
0644
bcm47xx_wdt.h
0.563 KB
November 06 2023 09:15:52
0 / 0
0644
bfin_mac.h
0.546 KB
November 06 2023 09:15:52
0 / 0
0644
binfmts.h
3.778 KB
November 06 2023 09:15:52
0 / 0
0644
bio.h
18.802 KB
November 06 2023 09:15:52
0 / 0
0644
bit_spinlock.h
2.267 KB
November 06 2023 09:15:52
0 / 0
0644
bitfield.h
4.67 KB
November 06 2023 09:15:52
0 / 0
0644
bitmap.h
12.933 KB
November 06 2023 09:15:52
0 / 0
0644
bitops.h
7.413 KB
November 06 2023 09:15:52
0 / 0
0644
bitrev.h
0.264 KB
November 06 2023 09:15:52
0 / 0
0644
blk-mq-pci.h
0.22 KB
November 06 2023 09:15:52
0 / 0
0644
blk-mq.h
12.551 KB
November 06 2023 09:15:52
0 / 0
0644
blk_types.h
10.567 KB
November 06 2023 09:15:52
0 / 0
0644
blkdev.h
56.196 KB
November 06 2023 09:15:52
0 / 0
0644
blktrace_api.h
3.11 KB
November 06 2023 09:15:52
0 / 0
0644
blockgroup_lock.h
1.137 KB
November 06 2023 09:15:52
0 / 0
0644
bma150.h
1.893 KB
November 06 2023 09:15:52
0 / 0
0644
bootmem.h
9.815 KB
November 06 2023 09:15:52
0 / 0
0644
bottom_half.h
0.581 KB
November 06 2023 09:15:52
0 / 0
0644
bpf.h
15.584 KB
November 06 2023 09:15:52
0 / 0
0644
bpf_trace.h
0.124 KB
November 06 2023 09:15:52
0 / 0
0644
bpf_types.h
1.257 KB
November 06 2023 09:15:52
0 / 0
0644
bpf_verifier.h
8.259 KB
November 06 2023 09:15:52
0 / 0
0644
brcmphy.h
1.185 KB
November 06 2023 09:15:52
0 / 0
0644
bsearch.h
0.23 KB
November 06 2023 09:15:52
0 / 0
0644
bsg-lib.h
1.977 KB
November 06 2023 09:15:52
0 / 0
0644
bsg.h
0.717 KB
November 06 2023 09:15:52
0 / 0
0644
btree-128.h
2.635 KB
November 06 2023 09:15:52
0 / 0
0644
btree-type.h
3.859 KB
November 06 2023 09:15:52
0 / 0
0644
btree.h
6.797 KB
November 06 2023 09:15:52
0 / 0
0644
btrfs.h
0.104 KB
November 06 2023 09:15:52
0 / 0
0644
buffer_head.h
12.054 KB
November 06 2023 09:15:52
0 / 0
0644
bug.h
3.679 KB
November 06 2023 09:15:52
0 / 0
0644
c2port.h
1.587 KB
November 06 2023 09:15:52
0 / 0
0644
cache.h
1.575 KB
November 06 2023 09:15:52
0 / 0
0644
capability.h
6.774 KB
November 06 2023 09:15:52
0 / 0
0644
cb710.h
5.69 KB
November 06 2023 09:15:52
0 / 0
0644
cciss_ioctl.h
0.99 KB
November 06 2023 09:15:52
0 / 0
0644
ccp.h
16.603 KB
November 06 2023 09:15:52
0 / 0
0644
cdev.h
0.827 KB
November 06 2023 09:15:52
0 / 0
0644
cdrom.h
8.664 KB
November 06 2023 09:15:52
0 / 0
0644
cfag12864b.h
2.096 KB
November 06 2023 09:15:52
0 / 0
0644
cgroup.h
28.788 KB
November 06 2023 09:15:52
0 / 0
0644
cgroup_subsys.h
1.452 KB
November 06 2023 09:15:52
0 / 0
0644
circ_buf.h
1.047 KB
November 06 2023 09:15:52
0 / 0
0644
cleancache.h
3.806 KB
November 06 2023 09:15:52
0 / 0
0644
clk-private.h
5.908 KB
November 06 2023 09:15:52
0 / 0
0644
clk-provider.h
17.066 KB
November 06 2023 09:15:52
0 / 0
0644
clk.h
10.333 KB
November 06 2023 09:15:52
0 / 0
0644
clkdev.h
1.146 KB
November 06 2023 09:15:52
0 / 0
0644
clksrc-dbx500-prcmu.h
0.444 KB
November 06 2023 09:15:52
0 / 0
0644
clockchips.h
6.523 KB
November 06 2023 09:15:52
0 / 0
0644
clocksource.h
7.805 KB
November 06 2023 09:15:52
0 / 0
0644
cm4000_cs.h
0.156 KB
November 06 2023 09:15:52
0 / 0
0644
cn_proc.h
1.846 KB
November 06 2023 09:15:52
0 / 0
0644
cnt32_to_63.h
3.604 KB
November 06 2023 09:15:52
0 / 0
0644
coda.h
2.197 KB
November 06 2023 09:15:52
0 / 0
0644
coda_psdev.h
2.62 KB
November 06 2023 09:15:52
0 / 0
0644
com20020.h
3.539 KB
November 06 2023 09:15:52
0 / 0
0644
compaction.h
4.037 KB
November 06 2023 09:15:52
0 / 0
0644
compat.h
25.058 KB
November 06 2023 09:15:52
0 / 0
0644
compiler-gcc.h
8.621 KB
November 06 2023 09:15:52
0 / 0
0644
compiler-intel.h
1.109 KB
November 06 2023 09:15:52
0 / 0
0644
compiler.h
14.431 KB
November 06 2023 09:15:52
0 / 0
0644
completion.h
3.768 KB
November 06 2023 09:15:52
0 / 0
0644
component.h
1.145 KB
November 06 2023 09:15:52
0 / 0
0644
concap.h
3.689 KB
November 06 2023 09:15:52
0 / 0
0644
configfs.h
10.109 KB
November 06 2023 09:15:52
0 / 0
0644
connector.h
2.307 KB
November 06 2023 09:15:52
0 / 0
0644
console.h
6.691 KB
November 06 2023 09:15:52
0 / 0
0644
console_struct.h
5.076 KB
November 06 2023 09:15:52
0 / 0
0644
consolemap.h
1.005 KB
November 06 2023 09:15:52
0 / 0
0644
container.h
0.652 KB
November 06 2023 09:15:52
0 / 0
0644
context_tracking.h
2.819 KB
November 06 2023 09:15:52
0 / 0
0644
context_tracking_state.h
1.26 KB
November 06 2023 09:15:52
0 / 0
0644
cordic.h
1.752 KB
November 06 2023 09:15:52
0 / 0
0644
coredump.h
0.554 KB
November 06 2023 09:15:52
0 / 0
0644
cper.h
12.337 KB
November 06 2023 09:15:52
0 / 0
0644
cpu.h
10.766 KB
November 06 2023 09:15:52
0 / 0
0644
cpu_cooling.h
2.069 KB
November 06 2023 09:15:52
0 / 0
0644
cpu_pm.h
2.783 KB
November 06 2023 09:15:52
0 / 0
0644
cpu_rmap.h
1.896 KB
November 06 2023 09:15:52
0 / 0
0644
cpufreq.h
19.551 KB
November 06 2023 09:15:52
0 / 0
0644
cpuidle.h
6.84 KB
November 06 2023 09:15:52
0 / 0
0644
cpuidle_haltpoll.h
0.305 KB
November 06 2023 09:15:52
0 / 0
0644
cpumask.h
29.029 KB
November 06 2023 09:15:52
0 / 0
0644
cpuset.h
5.784 KB
November 06 2023 09:15:52
0 / 0
0644
cputime.h
0.326 KB
November 06 2023 09:15:52
0 / 0
0644
cramfs_fs.h
0.272 KB
November 06 2023 09:15:52
0 / 0
0644
cramfs_fs_sb.h
0.335 KB
November 06 2023 09:15:52
0 / 0
0644
crash_core.h
2.921 KB
November 06 2023 09:15:52
0 / 0
0644
crash_dump.h
3.831 KB
November 06 2023 09:15:52
0 / 0
0644
crc-ccitt.h
0.322 KB
November 06 2023 09:15:52
0 / 0
0644
crc-itu-t.h
0.601 KB
November 06 2023 09:15:52
0 / 0
0644
crc-t10dif.h
0.343 KB
November 06 2023 09:15:52
0 / 0
0644
crc16.h
0.607 KB
November 06 2023 09:15:52
0 / 0
0644
crc32.h
2.601 KB
November 06 2023 09:15:52
0 / 0
0644
crc32c.h
0.248 KB
November 06 2023 09:15:52
0 / 0
0644
crc7.h
0.266 KB
November 06 2023 09:15:52
0 / 0
0644
crc8.h
3.653 KB
November 06 2023 09:15:52
0 / 0
0644
cred.h
11.925 KB
November 06 2023 09:15:52
0 / 0
0644
crypto.h
33.608 KB
November 06 2023 09:15:52
0 / 0
0644
cryptohash.h
0.407 KB
November 06 2023 09:15:52
0 / 0
0644
cryptouser.h
3.238 KB
November 06 2023 09:15:52
0 / 0
0644
cs5535.h
6.275 KB
November 06 2023 09:15:52
0 / 0
0644
ctype.h
1.689 KB
November 06 2023 09:15:52
0 / 0
0644
cuda.h
0.451 KB
November 06 2023 09:15:52
0 / 0
0644
cyclades.h
10.258 KB
November 06 2023 09:15:52
0 / 0
0644
cycx_x25.h
3.64 KB
November 06 2023 09:15:52
0 / 0
0644
davinci_emac.h
1.12 KB
November 06 2023 09:15:52
0 / 0
0644
dax.h
5.069 KB
November 06 2023 09:15:52
0 / 0
0644
dca.h
2.619 KB
November 06 2023 09:15:52
0 / 0
0644
dcache.h
17.918 KB
November 06 2023 09:15:52
0 / 0
0644
dccp.h
10.588 KB
November 06 2023 09:15:52
0 / 0
0644
dcookies.h
1.248 KB
November 06 2023 09:15:52
0 / 0
0644
debug_locks.h
1.477 KB
November 06 2023 09:15:52
0 / 0
0644
debugfs.h
7.68 KB
November 06 2023 09:15:52
0 / 0
0644
debugobjects.h
3.645 KB
November 06 2023 09:15:52
0 / 0
0644
delay.h
1.393 KB
November 06 2023 09:15:52
0 / 0
0644
delayacct.h
4.002 KB
November 06 2023 09:15:52
0 / 0
0644
dell-led.h
0.087 KB
November 06 2023 09:15:52
0 / 0
0644
devcoredump.h
0.963 KB
November 06 2023 09:15:52
0 / 0
0644
devfreq.h
8.803 KB
November 06 2023 09:15:52
0 / 0
0644
device-mapper.h
17.479 KB
November 06 2023 09:15:52
0 / 0
0644
device.h
48.329 KB
November 06 2023 09:15:52
0 / 0
0644
device_cgroup.h
0.583 KB
November 06 2023 09:15:52
0 / 0
0644
devpts_fs.h
1.098 KB
November 06 2023 09:15:52
0 / 0
0644
digsig.h
1.347 KB
November 06 2023 09:15:52
0 / 0
0644
dio.h
10.928 KB
November 06 2023 09:15:52
0 / 0
0644
dirent.h
0.173 KB
November 06 2023 09:15:52
0 / 0
0644
dlm.h
6.007 KB
November 06 2023 09:15:52
0 / 0
0644
dlm_plock.h
0.662 KB
November 06 2023 09:15:52
0 / 0
0644
dm-dirty-log.h
3.943 KB
November 06 2023 09:15:52
0 / 0
0644
dm-io.h
1.917 KB
November 06 2023 09:15:52
0 / 0
0644
dm-kcopyd.h
2.848 KB
November 06 2023 09:15:52
0 / 0
0644
dm-region-hash.h
3.107 KB
November 06 2023 09:15:52
0 / 0
0644
dm9000.h
1.074 KB
November 06 2023 09:15:52
0 / 0
0644
dma-attrs.h
1.582 KB
November 06 2023 09:15:52
0 / 0
0644
dma-buf.h
14.472 KB
November 06 2023 09:15:52
0 / 0
0644
dma-contiguous.h
4.583 KB
November 06 2023 09:15:52
0 / 0
0644
dma-debug.h
5.614 KB
November 06 2023 09:15:52
0 / 0
0644
dma-direction.h
0.292 KB
November 06 2023 09:15:52
0 / 0
0644
dma-fence-array.h
2.489 KB
November 06 2023 09:15:52
0 / 0
0644
dma-fence.h
18.796 KB
November 06 2023 09:15:52
0 / 0
0644
dma-mapping.h
21.935 KB
November 06 2023 09:15:52
0 / 0
0644
dma_remapping.h
1.139 KB
November 06 2023 09:15:52
0 / 0
0644
dmaengine.h
39.344 KB
November 06 2023 09:15:52
0 / 0
0644
dmapool.h
1.068 KB
November 06 2023 09:15:52
0 / 0
0644
dmar.h
7.766 KB
November 06 2023 09:15:52
0 / 0
0644
dmi.h
4.099 KB
November 06 2023 09:15:52
0 / 0
0644
dnotify.h
0.984 KB
November 06 2023 09:15:52
0 / 0
0644
dns_resolver.h
1.306 KB
November 06 2023 09:15:52
0 / 0
0644
dqblk_qtree.h
2.059 KB
November 06 2023 09:15:52
0 / 0
0644
dqblk_v1.h
0.334 KB
November 06 2023 09:15:52
0 / 0
0644
dqblk_v2.h
0.358 KB
November 06 2023 09:15:52
0 / 0
0644
drbd.h
10.301 KB
November 06 2023 09:15:52
0 / 0
0644
drbd_genl.h
15.29 KB
November 06 2023 09:15:52
0 / 0
0644
drbd_genl_api.h
1.728 KB
November 06 2023 09:15:52
0 / 0
0644
drbd_limits.h
6.577 KB
November 06 2023 09:15:52
0 / 0
0644
ds1286.h
1.194 KB
November 06 2023 09:15:52
0 / 0
0644
ds17287rtc.h
2.613 KB
November 06 2023 09:15:52
0 / 0
0644
ds2782_battery.h
0.116 KB
November 06 2023 09:15:52
0 / 0
0644
dtlk.h
3.462 KB
November 06 2023 09:15:52
0 / 0
0644
dw_apb_timer.h
1.807 KB
November 06 2023 09:15:52
0 / 0
0644
dynamic_debug.h
3.905 KB
November 06 2023 09:15:52
0 / 0
0644
dynamic_queue_limits.h
3.662 KB
November 06 2023 09:15:52
0 / 0
0644
earlycpio.h
0.313 KB
November 06 2023 09:15:52
0 / 0
0644
ecryptfs.h
3.785 KB
November 06 2023 09:15:52
0 / 0
0644
edac.h
24.938 KB
November 06 2023 09:15:52
0 / 0
0644
edd.h
1.435 KB
November 06 2023 09:15:52
0 / 0
0644
edma.h
0.788 KB
November 06 2023 09:15:52
0 / 0
0644
eeprom_93cx6.h
2.746 KB
November 06 2023 09:15:52
0 / 0
0644
eeprom_93xx46.h
0.412 KB
November 06 2023 09:15:52
0 / 0
0644
efi-bgrt.h
0.417 KB
November 06 2023 09:15:52
0 / 0
0644
efi.h
38.553 KB
November 06 2023 09:15:52
0 / 0
0644
efs_vh.h
1.51 KB
November 06 2023 09:15:52
0 / 0
0644
eisa.h
2.922 KB
November 06 2023 09:15:52
0 / 0
0644
elevator.h
10.762 KB
November 06 2023 09:15:52
0 / 0
0644
elf-fdpic.h
2.185 KB
November 06 2023 09:15:52
0 / 0
0644
elf-randomize.h
0.531 KB
November 06 2023 09:15:52
0 / 0
0644
elf.h
1.392 KB
November 06 2023 09:15:52
0 / 0
0644
elfcore-compat.h
1.199 KB
November 06 2023 09:15:52
0 / 0
0644
elfcore.h
2.063 KB
November 06 2023 09:15:52
0 / 0
0644
elfnote.h
3.497 KB
November 06 2023 09:15:52
0 / 0
0644
enclosure.h
4.601 KB
November 06 2023 09:15:52
0 / 0
0644
err.h
1.412 KB
November 06 2023 09:15:52
0 / 0
0644
errno.h
1.303 KB
November 06 2023 09:15:52
0 / 0
0644
errqueue.h
0.439 KB
November 06 2023 09:15:52
0 / 0
0644
etherdevice.h
15.311 KB
November 06 2023 09:15:52
0 / 0
0644
ethtool.h
18.335 KB
November 06 2023 09:15:52
0 / 0
0644
eventfd.h
2.062 KB
November 06 2023 09:15:52
0 / 0
0644
eventpoll.h
2.011 KB
November 06 2023 09:15:52
0 / 0
0644
evm.h
2.479 KB
November 06 2023 09:15:52
0 / 0
0644
export.h
2.665 KB
November 06 2023 09:15:52
0 / 0
0644
exportfs.h
7.308 KB
November 06 2023 09:15:52
0 / 0
0644
ext2_fs.h
0.906 KB
November 06 2023 09:15:52
0 / 0
0644
extcon.h
10.258 KB
November 06 2023 09:15:52
0 / 0
0644
f2fs_fs.h
12.972 KB
November 06 2023 09:15:52
0 / 0
0644
f75375s.h
0.528 KB
November 06 2023 09:15:52
0 / 0
0644
falloc.h
0.702 KB
November 06 2023 09:15:52
0 / 0
0644
fanotify.h
0.201 KB
November 06 2023 09:15:52
0 / 0
0644
fault-inject.h
1.836 KB
November 06 2023 09:15:52
0 / 0
0644
fb.h
28.167 KB
November 06 2023 09:15:52
0 / 0
0644
fcdevice.h
0.965 KB
November 06 2023 09:15:52
0 / 0
0644
fcntl.h
0.888 KB
November 06 2023 09:15:52
0 / 0
0644
fd.h
0.44 KB
November 06 2023 09:15:52
0 / 0
0644
fddidevice.h
1.076 KB
November 06 2023 09:15:52
0 / 0
0644
fdtable.h
3.31 KB
November 06 2023 09:15:52
0 / 0
0644
fec.h
0.555 KB
November 06 2023 09:15:52
0 / 0
0644
file.h
1.998 KB
November 06 2023 09:15:52
0 / 0
0644
filter.h
23.736 KB
November 06 2023 09:15:52
0 / 0
0644
fips.h
0.125 KB
November 06 2023 09:15:52
0 / 0
0644
firewire.h
13.141 KB
November 06 2023 09:15:52
0 / 0
0644
firmware-map.h
1.319 KB
November 06 2023 09:15:52
0 / 0
0644
firmware.h
2.181 KB
November 06 2023 09:15:52
0 / 0
0644
fixp-arith.h
2.245 KB
November 06 2023 09:15:52
0 / 0
0644
flat.h
1.576 KB
November 06 2023 09:15:52
0 / 0
0644
flex_array.h
2.427 KB
November 06 2023 09:15:52
0 / 0
0644
flex_proportions.h
2.731 KB
November 06 2023 09:15:52
0 / 0
0644
font.h
1.214 KB
November 06 2023 09:15:52
0 / 0
0644
frame.h
0.749 KB
November 06 2023 09:15:52
0 / 0
0644
freezer.h
9.99 KB
November 06 2023 09:15:52
0 / 0
0644
frontswap.h
2.511 KB
November 06 2023 09:15:52
0 / 0
0644
fs.h
111.014 KB
November 06 2023 09:15:52
0 / 0
0644
fs_enet_pd.h
3.309 KB
November 06 2023 09:15:52
0 / 0
0644
fs_pin.h
0.566 KB
November 06 2023 09:15:52
0 / 0
0644
fs_stack.h
0.754 KB
November 06 2023 09:15:52
0 / 0
0644
fs_struct.h
0.976 KB
November 06 2023 09:15:52
0 / 0
0644
fs_uart_pd.h
1.487 KB
November 06 2023 09:15:52
0 / 0
0644
fscache-cache.h
18.399 KB
November 06 2023 09:15:52
0 / 0
0644
fscache.h
27.87 KB
November 06 2023 09:15:52
0 / 0
0644
fsl-diu-fb.h
4.081 KB
November 06 2023 09:15:52
0 / 0
0644
fsl_devices.h
4.315 KB
November 06 2023 09:15:52
0 / 0
0644
fsl_hypervisor.h
2.758 KB
November 06 2023 09:15:52
0 / 0
0644
fsnotify.h
7.391 KB
November 06 2023 09:15:52
0 / 0
0644
fsnotify_backend.h
18.438 KB
November 06 2023 09:15:52
0 / 0
0644
ftrace.h
26.952 KB
November 06 2023 09:15:52
0 / 0
0644
ftrace_event.h
14.768 KB
November 06 2023 09:15:52
0 / 0
0644
ftrace_irq.h
0.766 KB
November 06 2023 09:15:52
0 / 0
0644
futex.h
1.766 KB
November 06 2023 09:15:52
0 / 0
0644
fwnode.h
1.527 KB
November 06 2023 09:15:52
0 / 0
0644
gameport.h
5.562 KB
November 06 2023 09:15:52
0 / 0
0644
gcd.h
0.15 KB
November 06 2023 09:15:52
0 / 0
0644
genalloc.h
5.188 KB
November 06 2023 09:15:52
0 / 0
0644
generic_acl.h
0.343 KB
November 06 2023 09:15:52
0 / 0
0644
genetlink.h
1.352 KB
November 06 2023 09:15:52
0 / 0
0644
genhd.h
22.085 KB
November 06 2023 09:15:52
0 / 0
0644
genl_magic_func.h
12.006 KB
November 06 2023 09:15:52
0 / 0
0644
genl_magic_struct.h
7.435 KB
November 06 2023 09:15:52
0 / 0
0644
getcpu.h
0.588 KB
November 06 2023 09:15:52
0 / 0
0644
gfp.h
16.164 KB
November 06 2023 09:15:52
0 / 0
0644
gpio-fan.h
0.783 KB
November 06 2023 09:15:52
0 / 0
0644
gpio-pxa.h
0.52 KB
November 06 2023 09:15:52
0 / 0
0644
gpio.h
5.75 KB
November 06 2023 09:15:52
0 / 0
0644
gpio_keys.h
0.93 KB
November 06 2023 09:15:52
0 / 0
0644
gpio_mouse.h
1.459 KB
November 06 2023 09:15:52
0 / 0
0644
gpt.h
4.08 KB
November 06 2023 09:15:52
0 / 0
0644
gsmmux.h
0.884 KB
November 06 2023 09:15:52
0 / 0
0644
hardirq.h
1.893 KB
November 06 2023 09:15:52
0 / 0
0644
hash.h
2.029 KB
November 06 2023 09:15:52
0 / 0
0644
hashtable.h
6.62 KB
November 06 2023 09:15:52
0 / 0
0644
hdlc.h
3.427 KB
November 06 2023 09:15:52
0 / 0
0644
hdlcdrv.h
6.28 KB
November 06 2023 09:15:52
0 / 0
0644
hdmi.h
9.366 KB
November 06 2023 09:15:52
0 / 0
0644
hid-debug.h
2.074 KB
November 06 2023 09:15:52
0 / 0
0644
hid-roccat.h
0.672 KB
November 06 2023 09:15:52
0 / 0
0644
hid-sensor-hub.h
9.129 KB
November 06 2023 09:15:52
0 / 0
0644
hid-sensor-ids.h
6.793 KB
November 06 2023 09:15:52
0 / 0
0644
hid.h
34.163 KB
November 06 2023 09:15:52
0 / 0
0644
hiddev.h
1.879 KB
November 06 2023 09:15:52
0 / 0
0644
hidraw.h
1.49 KB
November 06 2023 09:15:52
0 / 0
0644
highmem.h
5.852 KB
November 06 2023 09:15:52
0 / 0
0644
highuid.h
3.081 KB
November 06 2023 09:15:52
0 / 0
0644
hil.h
18.415 KB
November 06 2023 09:15:52
0 / 0
0644
hil_mlc.h
5.129 KB
November 06 2023 09:15:52
0 / 0
0644
hippidevice.h
1.291 KB
November 06 2023 09:15:52
0 / 0
0644
hmm.h
18.063 KB
November 06 2023 09:15:52
0 / 0
0644
hp_sdc.h
14.02 KB
November 06 2023 09:15:52
0 / 0
0644
hpet.h
2.516 KB
November 06 2023 09:15:52
0 / 0
0644
hrtimer.h
12.906 KB
November 06 2023 09:15:52
0 / 0
0644
htcpld.h
0.564 KB
November 06 2023 09:15:52
0 / 0
0644
htirq.h
0.769 KB
November 06 2023 09:15:52
0 / 0
0644
huge_mm.h
11.704 KB
November 06 2023 09:15:52
0 / 0
0644
hugetlb.h
14.299 KB
November 06 2023 09:15:52
0 / 0
0644
hugetlb_cgroup.h
2.971 KB
November 06 2023 09:15:52
0 / 0
0644
hugetlb_inline.h
0.321 KB
November 06 2023 09:15:52
0 / 0
0644
hw_breakpoint.h
3.814 KB
November 06 2023 09:15:52
0 / 0
0644
hw_random.h
1.948 KB
November 06 2023 09:15:52
0 / 0
0644
hwmon-sysfs.h
1.977 KB
November 06 2023 09:15:52
0 / 0
0644
hwmon-vid.h
1.478 KB
November 06 2023 09:15:52
0 / 0
0644
hwmon.h
11.495 KB
November 06 2023 09:15:52
0 / 0
0644
hwspinlock.h
10.895 KB
November 06 2023 09:15:52
0 / 0
0644
hyperv.h
39.959 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-algo-bit.h
2.244 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-algo-pca.h
2.5 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-algo-pcf.h
1.881 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-dev.h
1.026 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-gpio.h
1.313 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-mux-gpio.h
1.351 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-mux-pinctrl.h
1.44 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-mux.h
1.644 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-ocores.h
0.691 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-omap.h
1.174 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-pca-platform.h
0.393 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-pnx.h
0.921 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-pxa.h
0.39 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-smbus.h
1.777 KB
November 06 2023 09:15:52
0 / 0
0644
i2c-xiic.h
1.41 KB
November 06 2023 09:15:52
0 / 0
0644
i2c.h
24.742 KB
November 06 2023 09:15:52
0 / 0
0644
i2o.h
29.697 KB
November 06 2023 09:15:52
0 / 0
0644
i7300_idle.h
1.908 KB
November 06 2023 09:15:52
0 / 0
0644
i8042.h
1.796 KB
November 06 2023 09:15:52
0 / 0
0644
i8253.h
0.746 KB
November 06 2023 09:15:52
0 / 0
0644
i82593.h
5.584 KB
November 06 2023 09:15:52
0 / 0
0644
icmp.h
0.843 KB
November 06 2023 09:15:52
0 / 0
0644
icmpv6.h
1.11 KB
November 06 2023 09:15:52
0 / 0
0644
ide.h
44.838 KB
November 06 2023 09:15:52
0 / 0
0644
idr.h
7.269 KB
November 06 2023 09:15:52
0 / 0
0644
idr_ext.h
1.891 KB
November 06 2023 09:15:52
0 / 0
0644
ieee80211.h
105.181 KB
November 06 2023 09:15:52
0 / 0
0644
ieee802154.h
11.504 KB
November 06 2023 09:15:52
0 / 0
0644
if_arp.h
1.78 KB
November 06 2023 09:15:52
0 / 0
0644
if_bridge.h
2.617 KB
November 06 2023 09:15:52
0 / 0
0644
if_eql.h
1.074 KB
November 06 2023 09:15:52
0 / 0
0644
if_ether.h
1.315 KB
November 06 2023 09:15:52
0 / 0
0644
if_fddi.h
3.443 KB
November 06 2023 09:15:52
0 / 0
0644
if_frad.h
2.876 KB
November 06 2023 09:15:52
0 / 0
0644
if_link.h
0.629 KB
November 06 2023 09:15:52
0 / 0
0644
if_ltalk.h
0.146 KB
November 06 2023 09:15:52
0 / 0
0644
if_macvlan.h
3.593 KB
November 06 2023 09:15:52
0 / 0
0644
if_phonet.h
0.268 KB
November 06 2023 09:15:52
0 / 0
0644
if_pppol2tp.h
0.71 KB
November 06 2023 09:15:52
0 / 0
0644
if_pppox.h
2.963 KB
November 06 2023 09:15:52
0 / 0
0644
if_team.h
7.588 KB
November 06 2023 09:15:52
0 / 0
0644
if_tun.h
1.136 KB
November 06 2023 09:15:52
0 / 0
0644
if_tunnel.h
0.361 KB
November 06 2023 09:15:52
0 / 0
0644
if_vlan.h
16.53 KB
November 06 2023 09:15:52
0 / 0
0644
igmp.h
4.26 KB
November 06 2023 09:15:52
0 / 0
0644
ihex.h
1.916 KB
November 06 2023 09:15:52
0 / 0
0644
ima.h
1.764 KB
November 06 2023 09:15:52
0 / 0
0644
in.h
2.427 KB
November 06 2023 09:15:52
0 / 0
0644
in6.h
1.849 KB
November 06 2023 09:15:52
0 / 0
0644
inet.h
2.798 KB
November 06 2023 09:15:52
0 / 0
0644
inet_diag.h
1.662 KB
November 06 2023 09:15:52
0 / 0
0644
inet_lro.h
4.264 KB
November 06 2023 09:15:52
0 / 0
0644
inetdevice.h
9.515 KB
November 06 2023 09:15:52
0 / 0
0644
init.h
11.228 KB
November 06 2023 09:15:52
0 / 0
0644
init_ohci1394_dma.h
0.153 KB
November 06 2023 09:15:52
0 / 0
0644
init_task.h
6.884 KB
November 06 2023 09:15:52
0 / 0
0644
initrd.h
0.569 KB
November 06 2023 09:15:52
0 / 0
0644
inotify.h
0.642 KB
November 06 2023 09:15:52
0 / 0
0644
input-polldev.h
2.067 KB
November 06 2023 09:15:52
0 / 0
0644
input.h
18.353 KB
November 06 2023 09:15:52
0 / 0
0644
integrity.h
0.928 KB
November 06 2023 09:15:52
0 / 0
0644
intel-iommu.h
15.686 KB
November 06 2023 09:15:52
0 / 0
0644
intel_mid_dma.h
2.405 KB
November 06 2023 09:15:52
0 / 0
0644
intel_pmic_gpio.h
0.363 KB
November 06 2023 09:15:52
0 / 0
0644
interrupt.h
21.445 KB
November 06 2023 09:15:52
0 / 0
0644
interval_tree.h
0.739 KB
November 06 2023 09:15:52
0 / 0
0644
interval_tree_generic.h
7.032 KB
November 06 2023 09:15:52
0 / 0
0644
io-mapping.h
4.322 KB
November 06 2023 09:15:52
0 / 0
0644
io.h
4.692 KB
November 06 2023 09:15:52
0 / 0
0644
ioc3.h
3.139 KB
November 06 2023 09:15:52
0 / 0
0644
ioc4.h
5.781 KB
November 06 2023 09:15:52
0 / 0
0644
iocontext.h
4.7 KB
November 06 2023 09:15:52
0 / 0
0644
iomap.h
4.462 KB
November 06 2023 09:15:52
0 / 0
0644
iommu-helper.h
0.89 KB
November 06 2023 09:15:52
0 / 0
0644
iommu.h
17.304 KB
November 06 2023 09:15:52
0 / 0
0644
iopoll.h
5.523 KB
November 06 2023 09:15:52
0 / 0
0644
ioport.h
10.51 KB
November 06 2023 09:15:52
0 / 0
0644
ioprio.h
1.953 KB
November 06 2023 09:15:52
0 / 0
0644
iova.h
6.957 KB
November 06 2023 09:15:52
0 / 0
0644
ip.h
1.066 KB
November 06 2023 09:15:52
0 / 0
0644
ipack.h
8.264 KB
November 06 2023 09:15:52
0 / 0
0644
ipc.h
0.38 KB
November 06 2023 09:15:52
0 / 0
0644
ipc_namespace.h
4.439 KB
November 06 2023 09:15:52
0 / 0
0644
ipmi.h
10.452 KB
November 06 2023 09:15:52
0 / 0
0644
ipmi_smi.h
8.354 KB
November 06 2023 09:15:52
0 / 0
0644
ipv6.h
7.729 KB
November 06 2023 09:15:52
0 / 0
0644
ipv6_route.h
0.58 KB
November 06 2023 09:15:52
0 / 0
0644
irq.h
25.038 KB
November 06 2023 09:15:52
0 / 0
0644
irq_cpustat.h
0.889 KB
November 06 2023 09:15:52
0 / 0
0644
irq_poll.h
0.523 KB
November 06 2023 09:15:52
0 / 0
0644
irq_work.h
1.244 KB
November 06 2023 09:15:52
0 / 0
0644
irqbypass.h
3.595 KB
November 06 2023 09:15:52
0 / 0
0644
irqchip.h
0.374 KB
November 06 2023 09:15:52
0 / 0
0644
irqdesc.h
5.051 KB
November 06 2023 09:15:52
0 / 0
0644
irqdomain.h
7.817 KB
November 06 2023 09:15:52
0 / 0
0644
irqflags.h
4.65 KB
November 06 2023 09:15:52
0 / 0
0644
irqnr.h
1.335 KB
November 06 2023 09:15:52
0 / 0
0644
irqreturn.h
0.422 KB
November 06 2023 09:15:52
0 / 0
0644
isa.h
0.873 KB
November 06 2023 09:15:52
0 / 0
0644
isapnp.h
3.805 KB
November 06 2023 09:15:52
0 / 0
0644
iscsi_boot_sysfs.h
3.675 KB
November 06 2023 09:15:52
0 / 0
0644
iscsi_ibft.h
1.274 KB
November 06 2023 09:15:52
0 / 0
0644
isdn.h
22.961 KB
November 06 2023 09:15:52
0 / 0
0644
isdn_divertif.h
1.271 KB
November 06 2023 09:15:52
0 / 0
0644
isdn_ppp.h
6.674 KB
November 06 2023 09:15:52
0 / 0
0644
isdnif.h
19.259 KB
November 06 2023 09:15:52
0 / 0
0644
isicom.h
1.454 KB
November 06 2023 09:15:52
0 / 0
0644
jbd.h
31.973 KB
November 06 2023 09:15:52
0 / 0
0644
jbd2.h
43.505 KB
November 06 2023 09:15:52
0 / 0
0644
jbd_common.h
0.919 KB
November 06 2023 09:15:52
0 / 0
0644
jhash.h
4.276 KB
November 06 2023 09:15:52
0 / 0
0644
jiffies.h
11.294 KB
November 06 2023 09:15:52
0 / 0
0644
journal-head.h
2.827 KB
November 06 2023 09:15:52
0 / 0
0644
joystick.h
1.283 KB
November 06 2023 09:15:52
0 / 0
0644
jump_label.h
5.839 KB
November 06 2023 09:15:52
0 / 0
0644
jump_label_ratelimit.h
1.074 KB
November 06 2023 09:15:52
0 / 0
0644
jz4740-adc.h
0.961 KB
November 06 2023 09:15:52
0 / 0
0644
kaiser.h
0.696 KB
November 06 2023 09:15:52
0 / 0
0644
kallsyms.h
3.556 KB
November 06 2023 09:15:52
0 / 0
0644
kbd_diacr.h
0.155 KB
November 06 2023 09:15:52
0 / 0
0644
kbd_kern.h
3.89 KB
November 06 2023 09:15:52
0 / 0
0644
kbuild.h
0.302 KB
November 06 2023 09:15:52
0 / 0
0644
kcmp.h
0.209 KB
November 06 2023 09:15:52
0 / 0
0644
kconfig.h
1.886 KB
November 06 2023 09:15:52
0 / 0
0644
kcore.h
0.845 KB
November 06 2023 09:15:52
0 / 0
0644
kd.h
0.168 KB
November 06 2023 09:15:52
0 / 0
0644
kdb.h
5.467 KB
November 06 2023 09:15:52
0 / 0
0644
kdebug.h
0.438 KB
November 06 2023 09:15:52
0 / 0
0644
kdev_t.h
1.78 KB
November 06 2023 09:15:52
0 / 0
0644
kern_levels.h
1.534 KB
November 06 2023 09:15:52
0 / 0
0644
kernel-page-flags.h
0.455 KB
November 06 2023 09:15:52
0 / 0
0644
kernel.h
29.786 KB
November 06 2023 09:15:52
0 / 0
0644
kernel_stat.h
3.271 KB
November 06 2023 09:15:52
0 / 0
0644
kernelcapi.h
4.406 KB
November 06 2023 09:15:52
0 / 0
0644
kernfs.h
14.278 KB
November 06 2023 09:15:52
0 / 0
0644
kexec.h
7.631 KB
November 06 2023 09:15:52
0 / 0
0644
key-type.h
5.313 KB
November 06 2023 09:15:52
0 / 0
0644
key.h
11.405 KB
November 06 2023 09:15:52
0 / 0
0644
keyboard.h
0.611 KB
November 06 2023 09:15:52
0 / 0
0644
kfifo.h
25.281 KB
November 06 2023 09:15:52
0 / 0
0644
kgdb.h
10.709 KB
November 06 2023 09:15:52
0 / 0
0644
khugepaged.h
1.977 KB
November 06 2023 09:15:52
0 / 0
0644
klist.h
1.88 KB
November 06 2023 09:15:52
0 / 0
0644
kmemcheck.h
4.241 KB
November 06 2023 09:15:52
0 / 0
0644
kmemleak.h
3.119 KB
November 06 2023 09:15:52
0 / 0
0644
kmod.h
3.212 KB
November 06 2023 09:15:52
0 / 0
0644
kmsg_dump.h
2.854 KB
November 06 2023 09:15:52
0 / 0
0644
kobj_map.h
0.494 KB
November 06 2023 09:15:52
0 / 0
0644
kobject.h
6.756 KB
November 06 2023 09:15:52
0 / 0
0644
kobject_ns.h
1.938 KB
November 06 2023 09:15:52
0 / 0
0644
kprobes.h
13.345 KB
November 06 2023 09:15:52
0 / 0
0644
kref.h
5.46 KB
November 06 2023 09:15:52
0 / 0
0644
ks0108.h
1.569 KB
November 06 2023 09:15:52
0 / 0
0644
ks8842.h
1.194 KB
November 06 2023 09:15:52
0 / 0
0644
ks8851_mll.h
1.038 KB
November 06 2023 09:15:52
0 / 0
0644
ksm.h
2.84 KB
November 06 2023 09:15:52
0 / 0
0644
kthread.h
4.412 KB
November 06 2023 09:15:52
0 / 0
0644
ktime.h
11.761 KB
November 06 2023 09:15:52
0 / 0
0644
kvm_host.h
34.924 KB
November 06 2023 09:15:52
0 / 0
0644
kvm_irqfd.h
2.386 KB
November 06 2023 09:15:52
0 / 0
0644
kvm_para.h
0.254 KB
November 06 2023 09:15:52
0 / 0
0644
kvm_types.h
1.587 KB
November 06 2023 09:15:52
0 / 0
0644
l2tp.h
0.217 KB
November 06 2023 09:15:52
0 / 0
0644
lapb.h
1.673 KB
November 06 2023 09:15:52
0 / 0
0644
latencytop.h
1.141 KB
November 06 2023 09:15:52
0 / 0
0644
lcd.h
3.919 KB
November 06 2023 09:15:52
0 / 0
0644
lcm.h
0.15 KB
November 06 2023 09:15:52
0 / 0
0644
led-lm3530.h
3.704 KB
November 06 2023 09:15:52
0 / 0
0644
leds-bd2802.h
0.627 KB
November 06 2023 09:15:52
0 / 0
0644
leds-lp3944.h
1.073 KB
November 06 2023 09:15:52
0 / 0
0644
leds-pca9532.h
1.024 KB
November 06 2023 09:15:52
0 / 0
0644
leds-regulator.h
1.286 KB
November 06 2023 09:15:52
0 / 0
0644
leds-tca6507.h
1.018 KB
November 06 2023 09:15:52
0 / 0
0644
leds.h
8.801 KB
November 06 2023 09:15:52
0 / 0
0644
leds_pwm.h
0.359 KB
November 06 2023 09:15:52
0 / 0
0644
lglock.h
2.46 KB
November 06 2023 09:15:52
0 / 0
0644
lguest.h
2.242 KB
November 06 2023 09:15:52
0 / 0
0644
lguest_launcher.h
2.475 KB
November 06 2023 09:15:52
0 / 0
0644
libata.h
63.278 KB
November 06 2023 09:15:52
0 / 0
0644
libfdt.h
0.2 KB
November 06 2023 09:15:52
0 / 0
0644
libfdt_env.h
0.277 KB
November 06 2023 09:15:52
0 / 0
0644
libnvdimm.h
9.087 KB
November 06 2023 09:15:52
0 / 0
0644
libps2.h
2.028 KB
November 06 2023 09:15:52
0 / 0
0644
license.h
0.365 KB
November 06 2023 09:15:52
0 / 0
0644
linkage.h
2.463 KB
November 06 2023 09:15:52
0 / 0
0644
linux_logo.h
2.024 KB
November 06 2023 09:15:52
0 / 0
0644
lis3lv02d.h
4.967 KB
November 06 2023 09:15:52
0 / 0
0644
list.h
22.998 KB
November 06 2023 09:15:52
0 / 0
0644
list_bl.h
4.723 KB
November 06 2023 09:15:52
0 / 0
0644
list_lru.h
4.503 KB
November 06 2023 09:15:52
0 / 0
0644
list_nulls.h
3.364 KB
November 06 2023 09:15:52
0 / 0
0644
list_sort.h
0.232 KB
November 06 2023 09:15:52
0 / 0
0644
livepatch.h
8.393 KB
November 06 2023 09:15:52
0 / 0
0644
llc.h
0.731 KB
November 06 2023 09:15:52
0 / 0
0644
llist.h
7.138 KB
November 06 2023 09:15:52
0 / 0
0644
lockdep.h
16.72 KB
November 06 2023 09:15:52
0 / 0
0644
lockref.h
1.443 KB
November 06 2023 09:15:52
0 / 0
0644
log2.h
5.04 KB
November 06 2023 09:15:52
0 / 0
0644
loop.h
2.16 KB
November 06 2023 09:15:52
0 / 0
0644
lp.h
2.723 KB
November 06 2023 09:15:52
0 / 0
0644
lru_cache.h
12.426 KB
November 06 2023 09:15:52
0 / 0
0644
lsm_audit.h
2.689 KB
November 06 2023 09:15:52
0 / 0
0644
lzo.h
1.333 KB
November 06 2023 09:15:52
0 / 0
0644
m48t86.h
0.454 KB
November 06 2023 09:15:52
0 / 0
0644
mISDNdsp.h
1.15 KB
November 06 2023 09:15:52
0 / 0
0644
mISDNhw.h
5.782 KB
November 06 2023 09:15:52
0 / 0
0644
mISDNif.h
14.927 KB
November 06 2023 09:15:52
0 / 0
0644
mailbox.h
0.74 KB
November 06 2023 09:15:52
0 / 0
0644
mailbox_client.h
1.794 KB
November 06 2023 09:15:52
0 / 0
0644
mailbox_controller.h
5.373 KB
November 06 2023 09:15:52
0 / 0
0644
maple.h
2.672 KB
November 06 2023 09:15:52
0 / 0
0644
marvell_phy.h
0.696 KB
November 06 2023 09:15:52
0 / 0
0644
math64.h
5.467 KB
November 06 2023 09:15:52
0 / 0
0644
max17040_battery.h
0.463 KB
November 06 2023 09:15:52
0 / 0
0644
mbcache.h
1.456 KB
November 06 2023 09:15:52
0 / 0
0644
mbus.h
1.864 KB
November 06 2023 09:15:52
0 / 0
0644
mc146818rtc.h
4.216 KB
November 06 2023 09:15:52
0 / 0
0644
mc6821.h
1.143 KB
November 06 2023 09:15:52
0 / 0
0644
mdev.h
5.2 KB
November 06 2023 09:15:52
0 / 0
0644
mdio-bitbang.h
1.141 KB
November 06 2023 09:15:52
0 / 0
0644
mdio-gpio.h
0.64 KB
November 06 2023 09:15:52
0 / 0
0644
mdio-mux.h
0.538 KB
November 06 2023 09:15:52
0 / 0
0644
mdio.h
6.746 KB
November 06 2023 09:15:52
0 / 0
0644
media-bus-format.h
4.953 KB
November 06 2023 09:15:52
0 / 0
0644
mei_cl_bus.h
3.253 KB
November 06 2023 09:15:52
0 / 0
0644
mem_encrypt.h
1.21 KB
November 06 2023 09:15:52
0 / 0
0644
memblock.h
13.154 KB
November 06 2023 09:15:52
0 / 0
0644
memcontrol.h
16.781 KB
November 06 2023 09:15:52
0 / 0
0644
memory.h
4.874 KB
November 06 2023 09:15:52
0 / 0
0644
memory_hotplug.h
8.428 KB
November 06 2023 09:15:52
0 / 0
0644
mempolicy.h
8.067 KB
November 06 2023 09:15:52
0 / 0
0644
mempool.h
2.273 KB
November 06 2023 09:15:52
0 / 0
0644
memremap.h
5.234 KB
November 06 2023 09:15:52
0 / 0
0644
memstick.h
9.732 KB
November 06 2023 09:15:52
0 / 0
0644
mg_disk.h
1.027 KB
November 06 2023 09:15:52
0 / 0
0644
micrel_phy.h
1.034 KB
November 06 2023 09:15:52
0 / 0
0644
migrate.h
8.076 KB
November 06 2023 09:15:52
0 / 0
0644
migrate_mode.h
0.728 KB
November 06 2023 09:15:52
0 / 0
0644
mii.h
8.702 KB
November 06 2023 09:15:52
0 / 0
0644
miscdevice.h
2.2 KB
November 06 2023 09:15:52
0 / 0
0644
mm-arch-hooks.h
0.663 KB
November 06 2023 09:15:52
0 / 0
0644
mm.h
79.026 KB
November 06 2023 09:15:52
0 / 0
0644
mm_inline.h
2.684 KB
November 06 2023 09:15:52
0 / 0
0644
mm_types.h
18.602 KB
November 06 2023 09:15:52
0 / 0
0644
mman.h
3.096 KB
November 06 2023 09:15:52
0 / 0
0644
mmdebug.h
1.095 KB
November 06 2023 09:15:52
0 / 0
0644
mmiotrace.h
2.996 KB
November 06 2023 09:15:52
0 / 0
0644
mmu_context.h
0.331 KB
November 06 2023 09:15:52
0 / 0
0644
mmu_notifier.h
16.146 KB
November 06 2023 09:15:52
0 / 0
0644
mmzone.h
42.224 KB
November 06 2023 09:15:52
0 / 0
0644
mnt_namespace.h
0.496 KB
November 06 2023 09:15:52
0 / 0
0644
mod_devicetable.h
17.82 KB
November 06 2023 09:15:52
0 / 0
0644
module.h
20.108 KB
November 06 2023 09:15:52
0 / 0
0644
moduleloader.h
2.423 KB
November 06 2023 09:15:52
0 / 0
0644
moduleparam.h
16.402 KB
November 06 2023 09:15:52
0 / 0
0644
mount.h
3.301 KB
November 06 2023 09:15:52
0 / 0
0644
mpage.h
0.705 KB
November 06 2023 09:15:52
0 / 0
0644
mpi.h
5.32 KB
November 06 2023 09:15:52
0 / 0
0644
mpls.h
0.347 KB
November 06 2023 09:15:52
0 / 0
0644
mroute.h
4.673 KB
November 06 2023 09:15:52
0 / 0
0644
mroute6.h
3.246 KB
November 06 2023 09:15:52
0 / 0
0644
msdos_fs.h
0.229 KB
November 06 2023 09:15:52
0 / 0
0644
msg.h
1.256 KB
November 06 2023 09:15:52
0 / 0
0644
msi.h
2.948 KB
November 06 2023 09:15:52
0 / 0
0644
msm_mdp.h
2.087 KB
November 06 2023 09:15:52
0 / 0
0644
mutex-debug.h
0.462 KB
November 06 2023 09:15:52
0 / 0
0644
mutex.h
5.711 KB
November 06 2023 09:15:52
0 / 0
0644
mv643xx.h
52.399 KB
November 06 2023 09:15:52
0 / 0
0644
mv643xx_eth.h
1.832 KB
November 06 2023 09:15:52
0 / 0
0644
mv643xx_i2c.h
0.532 KB
November 06 2023 09:15:52
0 / 0
0644
mxm-wmi.h
1.053 KB
November 06 2023 09:15:52
0 / 0
0644
n_r3964.h
4.058 KB
November 06 2023 09:15:52
0 / 0
0644
namei.h
2.811 KB
November 06 2023 09:15:52
0 / 0
0644
namei_lookup.h
0.901 KB
November 06 2023 09:15:52
0 / 0
0644
nbd.h
1.342 KB
November 06 2023 09:15:52
0 / 0
0644
nd.h
5.912 KB
November 06 2023 09:15:52
0 / 0
0644
ndctl.h
0.658 KB
November 06 2023 09:15:52
0 / 0
0644
net.h
10.185 KB
November 06 2023 09:15:52
0 / 0
0644
net_dim.h
10.962 KB
November 06 2023 09:15:52
0 / 0
0644
netdev_features.h
9.441 KB
November 06 2023 09:15:52
0 / 0
0644
netdevice.h
147.077 KB
November 06 2023 09:15:52
0 / 0
0644
netfilter.h
11.763 KB
November 06 2023 09:15:52
0 / 0
0644
netfilter_bridge.h
1.766 KB
November 06 2023 09:15:52
0 / 0
0644
netfilter_defs.h
0.195 KB
November 06 2023 09:15:52
0 / 0
0644
netfilter_ipv4.h
0.397 KB
November 06 2023 09:15:52
0 / 0
0644
netfilter_ipv6.h
1.379 KB
November 06 2023 09:15:52
0 / 0
0644
netlink.h
6.215 KB
November 06 2023 09:15:52
0 / 0
0644
netpoll.h
2.938 KB
November 06 2023 09:15:52
0 / 0
0644
nfs.h
1.27 KB
November 06 2023 09:15:52
0 / 0
0644
nfs3.h
0.216 KB
November 06 2023 09:15:52
0 / 0
0644
nfs4.h
16.91 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_fs.h
16.607 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_fs_i.h
0.263 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_fs_sb.h
8.636 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_iostat.h
4.146 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_page.h
5.835 KB
November 06 2023 09:15:52
0 / 0
0644
nfs_xdr.h
38.689 KB
November 06 2023 09:15:52
0 / 0
0644
nfsacl.h
1.11 KB
November 06 2023 09:15:52
0 / 0
0644
nilfs2_fs.h
23.474 KB
November 06 2023 09:15:52
0 / 0
0644
nl802154.h
4.234 KB
November 06 2023 09:15:52
0 / 0
0644
nls.h
2.959 KB
November 06 2023 09:15:52
0 / 0
0644
nmi.h
2.453 KB
November 06 2023 09:15:52
0 / 0
0644
node.h
2.182 KB
November 06 2023 09:15:52
0 / 0
0644
nodemask.h
16.468 KB
November 06 2023 09:15:52
0 / 0
0644
nospec.h
2.158 KB
November 06 2023 09:15:52
0 / 0
0644
notifier.h
7.654 KB
November 06 2023 09:15:52
0 / 0
0644
nsc_gpio.h
1.387 KB
November 06 2023 09:15:52
0 / 0
0644
nsproxy.h
2.214 KB
November 06 2023 09:15:52
0 / 0
0644
ntb.h
30.499 KB
November 06 2023 09:15:52
0 / 0
0644
ntb_transport.h
3.801 KB
November 06 2023 09:15:52
0 / 0
0644
nubus.h
4.096 KB
November 06 2023 09:15:52
0 / 0
0644
numa.h
0.247 KB
November 06 2023 09:15:52
0 / 0
0644
nvme-fc-driver.h
38.029 KB
November 06 2023 09:15:52
0 / 0
0644
nvme-fc.h
8.394 KB
November 06 2023 09:15:52
0 / 0
0644
nvme-rdma.h
2.438 KB
November 06 2023 09:15:52
0 / 0
0644
nvme.h
25.372 KB
November 06 2023 09:15:52
0 / 0
0644
nvmem-consumer.h
2.111 KB
November 06 2023 09:15:52
0 / 0
0644
nvmem-provider.h
1.521 KB
November 06 2023 09:15:52
0 / 0
0644
nvram.h
0.445 KB
November 06 2023 09:15:52
0 / 0
0644
nwpserial.h
0.538 KB
November 06 2023 09:15:52
0 / 0
0644
of.h
24.801 KB
November 06 2023 09:15:52
0 / 0
0644
of_address.h
2.162 KB
November 06 2023 09:15:52
0 / 0
0644
of_device.h
1.993 KB
November 06 2023 09:15:52
0 / 0
0644
of_dma.h
1.733 KB
November 06 2023 09:15:52
0 / 0
0644
of_fdt.h
4.618 KB
November 06 2023 09:15:52
0 / 0
0644
of_gpio.h
5.174 KB
November 06 2023 09:15:52
0 / 0
0644
of_graph.h
3.556 KB
November 06 2023 09:15:52
0 / 0
0644
of_iommu.h
1.008 KB
November 06 2023 09:15:52
0 / 0
0644
of_irq.h
2.896 KB
November 06 2023 09:15:52
0 / 0
0644
of_mdio.h
1.55 KB
November 06 2023 09:15:52
0 / 0
0644
of_mtd.h
0.431 KB
November 06 2023 09:15:52
0 / 0
0644
of_net.h
0.507 KB
November 06 2023 09:15:52
0 / 0
0644
of_pci.h
0.954 KB
November 06 2023 09:15:52
0 / 0
0644
of_pdt.h
1.434 KB
November 06 2023 09:15:52
0 / 0
0644
of_platform.h
3.835 KB
November 06 2023 09:15:52
0 / 0
0644
oid_registry.h
3.646 KB
November 06 2023 09:15:52
0 / 0
0644
olpc-ec.h
1.008 KB
November 06 2023 09:15:52
0 / 0
0644
omap-dma.h
11.555 KB
November 06 2023 09:15:52
0 / 0
0644
omap-iommu.h
1.686 KB
November 06 2023 09:15:52
0 / 0
0644
omapfb.h
1.217 KB
November 06 2023 09:15:52
0 / 0
0644
oom.h
2.93 KB
November 06 2023 09:15:52
0 / 0
0644
openvswitch.h
0.824 KB
November 06 2023 09:15:52
0 / 0
0644
opp.h
2.931 KB
November 06 2023 09:15:52
0 / 0
0644
oprofile.h
6.292 KB
November 06 2023 09:15:52
0 / 0
0644
osq_lock.h
1.003 KB
November 06 2023 09:15:52
0 / 0
0644
overflow.h
9.235 KB
November 06 2023 09:15:52
0 / 0
0644
oxu210hp.h
0.154 KB
November 06 2023 09:15:52
0 / 0
0644
padata.h
6.386 KB
November 06 2023 09:15:52
0 / 0
0644
page-flags-layout.h
3.031 KB
November 06 2023 09:15:52
0 / 0
0644
page-flags.h
19.842 KB
November 06 2023 09:15:52
0 / 0
0644
page-isolation.h
1.781 KB
November 06 2023 09:15:52
0 / 0
0644
page_cgroup.h
3.527 KB
November 06 2023 09:15:52
0 / 0
0644
page_counter.h
1.403 KB
November 06 2023 09:15:52
0 / 0
0644
page_ext.h
1.65 KB
November 06 2023 09:15:52
0 / 0
0644
page_idle.h
2.119 KB
November 06 2023 09:15:52
0 / 0
0644
page_owner.h
1.248 KB
November 06 2023 09:15:52
0 / 0
0644
page_ref.h
2.2 KB
November 06 2023 09:15:52
0 / 0
0644
pageblock-flags.h
2.738 KB
November 06 2023 09:15:52
0 / 0
0644
pagemap.h
17.609 KB
November 06 2023 09:15:52
0 / 0
0644
pagevec.h
1.687 KB
November 06 2023 09:15:52
0 / 0
0644
parman.h
2.865 KB
November 06 2023 09:15:52
0 / 0
0644
parport.h
16.7 KB
November 06 2023 09:15:52
0 / 0
0644
parport_pc.h
6.518 KB
November 06 2023 09:15:52
0 / 0
0644
parser.h
1.001 KB
November 06 2023 09:15:52
0 / 0
0644
pata_arasan_cf_data.h
1.225 KB
November 06 2023 09:15:52
0 / 0
0644
patchkey.h
0.701 KB
November 06 2023 09:15:52
0 / 0
0644
path.h
0.502 KB
November 06 2023 09:15:52
0 / 0
0644
pch_dma.h
0.976 KB
November 06 2023 09:15:52
0 / 0
0644
pci-acpi.h
3.265 KB
November 06 2023 09:15:52
0 / 0
0644
pci-aspm.h
1.673 KB
November 06 2023 09:15:52
0 / 0
0644
pci-ats.h
1.448 KB
November 06 2023 09:15:52
0 / 0
0644
pci-dma-compat.h
4.503 KB
November 06 2023 09:15:52
0 / 0
0644
pci.h
76.525 KB
November 06 2023 09:15:52
0 / 0
0644
pci_hotplug.h
7.246 KB
November 06 2023 09:15:52
0 / 0
0644
pci_ids.h
118.847 KB
November 06 2023 09:15:52
0 / 0
0644
pcieport_if.h
2.299 KB
November 06 2023 09:15:52
0 / 0
0644
pda_power.h
1.124 KB
November 06 2023 09:15:52
0 / 0
0644
pe.h
15.476 KB
November 06 2023 09:15:52
0 / 0
0644
percpu-defs.h
7.488 KB
November 06 2023 09:15:52
0 / 0
0644
percpu-refcount.h
9.434 KB
November 06 2023 09:15:52
0 / 0
0644
percpu-rwsem.h
0.905 KB
November 06 2023 09:15:52
0 / 0
0644
percpu.h
25.955 KB
November 06 2023 09:15:52
0 / 0
0644
percpu_counter.h
4.206 KB
November 06 2023 09:15:52
0 / 0
0644
percpu_ida.h
2.279 KB
November 06 2023 09:15:52
0 / 0
0644
perf_event.h
37.155 KB
November 06 2023 09:15:52
0 / 0
0644
perf_regs.h
0.946 KB
November 06 2023 09:15:52
0 / 0
0644
personality.h
1.513 KB
November 06 2023 09:15:52
0 / 0
0644
pfn.h
0.612 KB
November 06 2023 09:15:52
0 / 0
0644
pfn_t.h
3.187 KB
November 06 2023 09:15:52
0 / 0
0644
phonedev.h
0.532 KB
November 06 2023 09:15:52
0 / 0
0644
phonet.h
1.119 KB
November 06 2023 09:15:52
0 / 0
0644
phy.h
30.428 KB
November 06 2023 09:15:52
0 / 0
0644
phy_fixed.h
1.606 KB
November 06 2023 09:15:52
0 / 0
0644
pid.h
5.779 KB
November 06 2023 09:15:52
0 / 0
0644
pid_namespace.h
2.393 KB
November 06 2023 09:15:52
0 / 0
0644
pim.h
0.626 KB
November 06 2023 09:15:52
0 / 0
0644
pipe_fs_i.h
6 KB
November 06 2023 09:15:52
0 / 0
0644
pkeys.h
0.856 KB
November 06 2023 09:15:52
0 / 0
0644
pktcdvd.h
5.871 KB
November 06 2023 09:15:52
0 / 0
0644
platform_device.h
10.544 KB
November 06 2023 09:15:52
0 / 0
0644
plist.h
8.695 KB
November 06 2023 09:15:52
0 / 0
0644
pm.h
29.698 KB
November 06 2023 09:15:52
0 / 0
0644
pm2301_charger.h
1.683 KB
November 06 2023 09:15:52
0 / 0
0644
pm_clock.h
1.665 KB
November 06 2023 09:15:52
0 / 0
0644
pm_domain.h
9.578 KB
November 06 2023 09:15:52
0 / 0
0644
pm_qos.h
8.11 KB
November 06 2023 09:15:52
0 / 0
0644
pm_runtime.h
8.157 KB
November 06 2023 09:15:52
0 / 0
0644
pm_wakeup.h
5.925 KB
November 06 2023 09:15:52
0 / 0
0644
pmu.h
2.298 KB
November 06 2023 09:15:52
0 / 0
0644
pnfs_osd_xdr.h
9.269 KB
November 06 2023 09:15:52
0 / 0
0644
pnp.h
14.823 KB
November 06 2023 09:15:52
0 / 0
0644
poison.h
2.535 KB
November 06 2023 09:15:52
0 / 0
0644
poll.h
4.471 KB
November 06 2023 09:15:52
0 / 0
0644
posix-clock.h
5.427 KB
November 06 2023 09:15:52
0 / 0
0644
posix-timers.h
4.124 KB
November 06 2023 09:15:52
0 / 0
0644
posix_acl.h
4.229 KB
November 06 2023 09:15:52
0 / 0
0644
posix_acl_xattr.h
1.783 KB
November 06 2023 09:15:52
0 / 0
0644
power_supply.h
10.628 KB
November 06 2023 09:15:52
0 / 0
0644
powercap.h
12.575 KB
November 06 2023 09:15:52
0 / 0
0644
ppp-comp.h
3.098 KB
November 06 2023 09:15:52
0 / 0
0644
ppp_channel.h
3.072 KB
November 06 2023 09:15:52
0 / 0
0644
ppp_defs.h
0.443 KB
November 06 2023 09:15:52
0 / 0
0644
pps-gpio.h
0.991 KB
November 06 2023 09:15:52
0 / 0
0644
pps_kernel.h
3.537 KB
November 06 2023 09:15:52
0 / 0
0644
pr.h
0.515 KB
November 06 2023 09:15:52
0 / 0
0644
preempt.h
4.633 KB
November 06 2023 09:15:52
0 / 0
0644
preempt_mask.h
4.405 KB
November 06 2023 09:15:52
0 / 0
0644
prefetch.h
1.5 KB
November 06 2023 09:15:52
0 / 0
0644
printk.h
11.78 KB
November 06 2023 09:15:52
0 / 0
0644
prio_heap.h
1.763 KB
November 06 2023 09:15:52
0 / 0
0644
proc_fs.h
2.984 KB
November 06 2023 09:15:52
0 / 0
0644
proc_ns.h
1.902 KB
November 06 2023 09:15:52
0 / 0
0644
profile.h
2.59 KB
November 06 2023 09:15:52
0 / 0
0644
projid.h
2.385 KB
November 06 2023 09:15:52
0 / 0
0644
property.h
7.698 KB
November 06 2023 09:15:52
0 / 0
0644
proportions.h
3.169 KB
November 06 2023 09:15:52
0 / 0
0644
pstore.h
2.624 KB
November 06 2023 09:15:52
0 / 0
0644
pstore_ram.h
2.316 KB
November 06 2023 09:15:52
0 / 0
0644
pti.h
1.525 KB
November 06 2023 09:15:52
0 / 0
0644
ptp_classify.h
5.47 KB
November 06 2023 09:15:52
0 / 0
0644
ptp_clock_kernel.h
8.615 KB
November 06 2023 09:15:52
0 / 0
0644
ptr_ring.h
16.481 KB
November 06 2023 09:15:52
0 / 0
0644
ptrace.h
15.064 KB
November 06 2023 09:15:52
0 / 0
0644
pvclock_gtod.h
0.497 KB
November 06 2023 09:15:52
0 / 0
0644
pwm.h
7.177 KB
November 06 2023 09:15:52
0 / 0
0644
pwm_backlight.h
0.606 KB
November 06 2023 09:15:52
0 / 0
0644
pxa168_eth.h
0.627 KB
November 06 2023 09:15:52
0 / 0
0644
pxa2xx_ssp.h
8.27 KB
November 06 2023 09:15:52
0 / 0
0644
qnx6_fs.h
3.232 KB
November 06 2023 09:15:52
0 / 0
0644
quicklist.h
2.101 KB
November 06 2023 09:15:52
0 / 0
0644
quota.h
14.106 KB
November 06 2023 09:15:52
0 / 0
0644
quotaops.h
9.797 KB
November 06 2023 09:15:52
0 / 0
0644
radix-tree.h
19.883 KB
November 06 2023 09:15:52
0 / 0
0644
raid_class.h
2.081 KB
November 06 2023 09:15:52
0 / 0
0644
ramfs.h
0.965 KB
November 06 2023 09:15:52
0 / 0
0644
random.h
3.286 KB
November 06 2023 09:15:52
0 / 0
0644
range.h
0.598 KB
November 06 2023 09:15:52
0 / 0
0644
ras.h
0.344 KB
November 06 2023 09:15:52
0 / 0
0644
ratelimit.h
2.323 KB
November 06 2023 09:15:52
0 / 0
0644
rational.h
0.586 KB
November 06 2023 09:15:52
0 / 0
0644
rbtree.h
3.943 KB
November 06 2023 09:15:52
0 / 0
0644
rbtree_augmented.h
7.072 KB
November 06 2023 09:15:52
0 / 0
0644
rbtree_latch.h
6.643 KB
November 06 2023 09:15:52
0 / 0
0644
rculist.h
21.448 KB
November 06 2023 09:15:52
0 / 0
0644
rculist_bl.h
4.321 KB
November 06 2023 09:15:52
0 / 0
0644
rculist_nulls.h
6.121 KB
November 06 2023 09:15:52
0 / 0
0644
rcupdate.h
38.397 KB
November 06 2023 09:15:52
0 / 0
0644
rcutiny.h
3.998 KB
November 06 2023 09:15:52
0 / 0
0644
rcutree.h
3.403 KB
November 06 2023 09:15:52
0 / 0
0644
reboot.h
1.313 KB
November 06 2023 09:15:52
0 / 0
0644
reciprocal_div.h
0.97 KB
November 06 2023 09:15:52
0 / 0
0644
refcount.h
2.452 KB
November 06 2023 09:15:52
0 / 0
0644
regmap.h
21.462 KB
November 06 2023 09:15:52
0 / 0
0644
regset.h
12.995 KB
November 06 2023 09:15:52
0 / 0
0644
relay.h
8.61 KB
November 06 2023 09:15:52
0 / 0
0644
remoteproc.h
17.213 KB
November 06 2023 09:15:52
0 / 0
0644
res_counter.h
5.678 KB
November 06 2023 09:15:52
0 / 0
0644
reservation.h
9.01 KB
November 06 2023 09:15:52
0 / 0
0644
reset-controller.h
1.706 KB
November 06 2023 09:15:52
0 / 0
0644
reset.h
0.497 KB
November 06 2023 09:15:52
0 / 0
0644
resource.h
0.299 KB
November 06 2023 09:15:52
0 / 0
0644
resource_ext.h
2.225 KB
November 06 2023 09:15:52
0 / 0
0644
resume-trace.h
0.684 KB
November 06 2023 09:15:52
0 / 0
0644
rfkill-gpio.h
1.64 KB
November 06 2023 09:15:52
0 / 0
0644
rfkill-regulator.h
1.377 KB
November 06 2023 09:15:52
0 / 0
0644
rfkill.h
9.493 KB
November 06 2023 09:15:52
0 / 0
0644
rh_kabi.h
6.42 KB
November 06 2023 09:15:52
0 / 0
0644
rhashtable.h
38.319 KB
November 06 2023 09:15:52
0 / 0
0644
ring_buffer.h
6.617 KB
November 06 2023 09:15:52
0 / 0
0644
rio.h
16.5 KB
November 06 2023 09:15:52
0 / 0
0644
rio_drv.h
13.752 KB
November 06 2023 09:15:52
0 / 0
0644
rio_ids.h
1.246 KB
November 06 2023 09:15:52
0 / 0
0644
rio_regs.h
14.726 KB
November 06 2023 09:15:52
0 / 0
0644
rmap.h
9.264 KB
November 06 2023 09:15:52
0 / 0
0644
rmi.h
9.693 KB
November 06 2023 09:15:52
0 / 0
0644
rndis.h
16.826 KB
November 06 2023 09:15:52
0 / 0
0644
root_dev.h
0.527 KB
November 06 2023 09:15:52
0 / 0
0644
rotary_encoder.h
0.32 KB
November 06 2023 09:15:52
0 / 0
0644
rpmsg.h
11.407 KB
November 06 2023 09:15:52
0 / 0
0644
rslib.h
2.993 KB
November 06 2023 09:15:52
0 / 0
0644
rtc-ds2404.h
0.456 KB
November 06 2023 09:15:52
0 / 0
0644
rtc-v3020.h
1.032 KB
November 06 2023 09:15:52
0 / 0
0644
rtc.h
6.424 KB
November 06 2023 09:15:52
0 / 0
0644
rtmutex.h
2.913 KB
November 06 2023 09:15:52
0 / 0
0644
rtnetlink.h
4.236 KB
November 06 2023 09:15:52
0 / 0
0644
rwlock.h
4.289 KB
November 06 2023 09:15:52
0 / 0
0644
rwlock_api_smp.h
7.632 KB
November 06 2023 09:15:52
0 / 0
0644
rwlock_types.h
1.179 KB
November 06 2023 09:15:52
0 / 0
0644
rwsem-spinlock.h
1.479 KB
November 06 2023 09:15:52
0 / 0
0644
rwsem.h
5.806 KB
November 06 2023 09:15:52
0 / 0
0644
rxrpc.h
2.331 KB
November 06 2023 09:15:52
0 / 0
0644
s3c_adc_battery.h
0.91 KB
November 06 2023 09:15:52
0 / 0
0644
sa11x0-dma.h
0.559 KB
November 06 2023 09:15:52
0 / 0
0644
sbitmap.h
14.015 KB
November 06 2023 09:15:52
0 / 0
0644
scatterlist.h
12.157 KB
November 06 2023 09:15:52
0 / 0
0644
scc.h
2.799 KB
November 06 2023 09:15:52
0 / 0
0644
sched.h
97.418 KB
November 06 2023 09:15:52
0 / 0
0644
screen_info.h
0.559 KB
November 06 2023 09:15:52
0 / 0
0644
sctp.h
22.086 KB
November 06 2023 09:15:52
0 / 0
0644
scx200.h
1.781 KB
November 06 2023 09:15:52
0 / 0
0644
scx200_gpio.h
2.343 KB
November 06 2023 09:15:52
0 / 0
0644
sdla.h
6.9 KB
November 06 2023 09:15:52
0 / 0
0644
seccomp.h
2.153 KB
November 06 2023 09:15:52
0 / 0
0644
securebits.h
0.195 KB
November 06 2023 09:15:52
0 / 0
0644
security.h
121.274 KB
November 06 2023 09:15:52
0 / 0
0644
selection.h
1.327 KB
November 06 2023 09:15:52
0 / 0
0644
selinux.h
0.889 KB
November 06 2023 09:15:52
0 / 0
0644
sem.h
1.251 KB
November 06 2023 09:15:52
0 / 0
0644
semaphore.h
1.359 KB
November 06 2023 09:15:52
0 / 0
0644
seq_buf.h
1.124 KB
November 06 2023 09:15:52
0 / 0
0644
seq_file.h
7.364 KB
November 06 2023 09:15:52
0 / 0
0644
seq_file_net.h
0.658 KB
November 06 2023 09:15:52
0 / 0
0644
seqlock.h
15.873 KB
November 06 2023 09:15:52
0 / 0
0644
seqno-fence.h
3.955 KB
November 06 2023 09:15:52
0 / 0
0644
serial.h
0.615 KB
November 06 2023 09:15:52
0 / 0
0644
serial_8250.h
4.233 KB
November 06 2023 09:15:52
0 / 0
0644
serial_core.h
11.733 KB
November 06 2023 09:15:52
0 / 0
0644
serial_max3100.h
1.39 KB
November 06 2023 09:15:52
0 / 0
0644
serial_mfd.h
1.254 KB
November 06 2023 09:15:52
0 / 0
0644
serial_pnx8xxx.h
2.607 KB
November 06 2023 09:15:52
0 / 0
0644
serial_s3c.h
7.954 KB
November 06 2023 09:15:52
0 / 0
0644
serial_sci.h
3.563 KB
November 06 2023 09:15:52
0 / 0
0644
serio.h
4.156 KB
November 06 2023 09:15:52
0 / 0
0644
sfi.h
5.677 KB
November 06 2023 09:15:52
0 / 0
0644
sfi_acpi.h
3.399 KB
November 06 2023 09:15:52
0 / 0
0644
sh_clk.h
5.907 KB
November 06 2023 09:15:52
0 / 0
0644
sh_dma.h
2.329 KB
November 06 2023 09:15:52
0 / 0
0644
sh_eth.h
0.48 KB
November 06 2023 09:15:52
0 / 0
0644
sh_intc.h
3.386 KB
November 06 2023 09:15:52
0 / 0
0644
sh_timer.h
0.219 KB
November 06 2023 09:15:52
0 / 0
0644
shdma-base.h
4.056 KB
November 06 2023 09:15:52
0 / 0
0644
shm.h
1.783 KB
November 06 2023 09:15:52
0 / 0
0644
shmem_fs.h
3.572 KB
November 06 2023 09:15:52
0 / 0
0644
shrinker.h
1.443 KB
November 06 2023 09:15:52
0 / 0
0644
signal.h
12.854 KB
November 06 2023 09:15:52
0 / 0
0644
signalfd.h
0.729 KB
November 06 2023 09:15:52
0 / 0
0644
siphash.h
2.765 KB
November 06 2023 09:15:52
0 / 0
0644
sirfsoc_dma.h
0.12 KB
November 06 2023 09:15:52
0 / 0
0644
sizes.h
1.194 KB
November 06 2023 09:15:52
0 / 0
0644
skb_array.h
5.166 KB
November 06 2023 09:15:52
0 / 0
0644
skbuff.h
114.936 KB
November 06 2023 09:15:52
0 / 0
0644
slab.h
18.757 KB
November 06 2023 09:15:52
0 / 0
0644
slab_def.h
4.614 KB
November 06 2023 09:15:52
0 / 0
0644
slob_def.h
0.946 KB
November 06 2023 09:15:52
0 / 0
0644
slub_def.h
6.104 KB
November 06 2023 09:15:52
0 / 0
0644
sm501-regs.h
11.764 KB
November 06 2023 09:15:52
0 / 0
0644
sm501.h
4.632 KB
November 06 2023 09:15:52
0 / 0
0644
smc911x.h
0.249 KB
November 06 2023 09:15:52
0 / 0
0644
smc91x.h
1.046 KB
November 06 2023 09:15:52
0 / 0
0644
smp.h
5.903 KB
November 06 2023 09:15:52
0 / 0
0644
smpboot.h
2.147 KB
November 06 2023 09:15:52
0 / 0
0644
smsc911x.h
2.251 KB
November 06 2023 09:15:52
0 / 0
0644
smscphy.h
1.215 KB
November 06 2023 09:15:52
0 / 0
0644
sock_diag.h
0.889 KB
November 06 2023 09:15:52
0 / 0
0644
socket.h
11.284 KB
November 06 2023 09:15:52
0 / 0
0644
sonet.h
0.42 KB
November 06 2023 09:15:52
0 / 0
0644
sony-laptop.h
1.244 KB
November 06 2023 09:15:52
0 / 0
0644
sonypi.h
2.354 KB
November 06 2023 09:15:52
0 / 0
0644
sort.h
0.203 KB
November 06 2023 09:15:52
0 / 0
0644
sound.h
0.75 KB
November 06 2023 09:15:52
0 / 0
0644
soundcard.h
1.593 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock.h
12.38 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock_api_smp.h
5.464 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock_api_up.h
3.375 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock_types.h
2.122 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock_types_up.h
0.709 KB
November 06 2023 09:15:52
0 / 0
0644
spinlock_up.h
2.468 KB
November 06 2023 09:15:52
0 / 0
0644
splice.h
3.247 KB
November 06 2023 09:15:52
0 / 0
0644
srcu.h
10.111 KB
November 06 2023 09:15:52
0 / 0
0644
ssbi.h
1.064 KB
November 06 2023 09:15:52
0 / 0
0644
stackprotector.h
0.278 KB
November 06 2023 09:15:52
0 / 0
0644
stacktrace.h
1.435 KB
November 06 2023 09:15:52
0 / 0
0644
start_kernel.h
0.288 KB
November 06 2023 09:15:52
0 / 0
0644
stat.h
0.728 KB
November 06 2023 09:15:52
0 / 0
0644
statfs.h
1.276 KB
November 06 2023 09:15:52
0 / 0
0644
static_key.h
0.029 KB
November 06 2023 09:15:52
0 / 0
0644
stddef.h
0.77 KB
November 06 2023 09:15:52
0 / 0
0644
ste_modem_shm.h
1.587 KB
November 06 2023 09:15:52
0 / 0
0644
stm.h
4.754 KB
November 06 2023 09:15:52
0 / 0
0644
stmmac.h
3.789 KB
November 06 2023 09:15:52
0 / 0
0644
stmp3xxx_rtc_wdt.h
0.324 KB
November 06 2023 09:15:52
0 / 0
0644
stmp_device.h
0.604 KB
November 06 2023 09:15:52
0 / 0
0644
stop_machine.h
4.542 KB
November 06 2023 09:15:52
0 / 0
0644
string.h
6.272 KB
November 06 2023 09:15:52
0 / 0
0644
string_helpers.h
2.104 KB
November 06 2023 09:15:52
0 / 0
0644
stringify.h
0.333 KB
November 06 2023 09:15:52
0 / 0
0644
sudmac.h
1.239 KB
November 06 2023 09:15:52
0 / 0
0644
sungem_phy.h
3.898 KB
November 06 2023 09:15:52
0 / 0
0644
sunserialcore.h
1.038 KB
November 06 2023 09:15:52
0 / 0
0644
superhyway.h
2.804 KB
November 06 2023 09:15:52
0 / 0
0644
suspend.h
16.145 KB
November 06 2023 09:15:52
0 / 0
0644
svga.h
3.709 KB
November 06 2023 09:15:52
0 / 0
0644
sw842.h
0.282 KB
November 06 2023 09:15:52
0 / 0
0644
swab.h
0.497 KB
November 06 2023 09:15:52
0 / 0
0644
swait.h
6.93 KB
November 06 2023 09:15:52
0 / 0
0644
swap.h
20.783 KB
November 06 2023 09:15:52
0 / 0
0644
swap_slots.h
0.782 KB
November 06 2023 09:15:52
0 / 0
0644
swapfile.h
0.505 KB
November 06 2023 09:15:52
0 / 0
0644
swapops.h
6.925 KB
November 06 2023 09:15:52
0 / 0
0644
swiotlb.h
3.742 KB
November 06 2023 09:15:52
0 / 0
0644
sync_core.h
0.566 KB
November 06 2023 09:15:52
0 / 0
0644
sync_file.h
1.568 KB
November 06 2023 09:15:52
0 / 0
0644
synclink.h
0.966 KB
November 06 2023 09:15:52
0 / 0
0644
sys.h
0.899 KB
November 06 2023 09:15:52
0 / 0
0644
sys_soc.h
0.93 KB
November 06 2023 09:15:52
0 / 0
0644
syscalls.h
38.072 KB
November 06 2023 09:15:52
0 / 0
0644
syscore_ops.h
0.62 KB
November 06 2023 09:15:52
0 / 0
0644
sysctl.h
7.046 KB
November 06 2023 09:15:52
0 / 0
0644
sysfs.h
13.691 KB
November 06 2023 09:15:52
0 / 0
0644
syslog.h
1.89 KB
November 06 2023 09:15:52
0 / 0
0644
sysrq.h
1.842 KB
November 06 2023 09:15:52
0 / 0
0644
sysv_fs.h
8.995 KB
November 06 2023 09:15:52
0 / 0
0644
task_io_accounting.h
1.094 KB
November 06 2023 09:15:52
0 / 0
0644
task_io_accounting_ops.h
2.511 KB
November 06 2023 09:15:52
0 / 0
0644
task_work.h
0.564 KB
November 06 2023 09:15:52
0 / 0
0644
taskstats_kern.h
0.89 KB
November 06 2023 09:15:52
0 / 0
0644
tboot.h
3.992 KB
November 06 2023 09:15:52
0 / 0
0644
tc.h
3.407 KB
November 06 2023 09:15:52
0 / 0
0644
tca6416_keypad.h
0.827 KB
November 06 2023 09:15:52
0 / 0
0644
tcp.h
13.024 KB
November 06 2023 09:15:52
0 / 0
0644
tegra-ahb.h
0.646 KB
November 06 2023 09:15:52
0 / 0
0644
tegra-powergate.h
1.46 KB
November 06 2023 09:15:52
0 / 0
0644
tegra-soc.h
0.773 KB
November 06 2023 09:15:52
0 / 0
0644
textsearch.h
4.69 KB
November 06 2023 09:15:52
0 / 0
0644
textsearch_fsm.h
1.147 KB
November 06 2023 09:15:52
0 / 0
0644
tfrc.h
1.888 KB
November 06 2023 09:15:52
0 / 0
0644
thermal.h
8.435 KB
November 06 2023 09:15:52
0 / 0
0644
thinkpad_acpi.h
0.274 KB
November 06 2023 09:15:52
0 / 0
0644
thread_info.h
4.943 KB
November 06 2023 09:15:52
0 / 0
0644
threads.h
1.24 KB
November 06 2023 09:15:52
0 / 0
0644
thunderbolt.h
18.877 KB
November 06 2023 09:15:52
0 / 0
0644
ti_wilink_st.h
14.051 KB
November 06 2023 09:15:52
0 / 0
0644
tick.h
6.989 KB
November 06 2023 09:15:52
0 / 0
0644
tifm.h
4.805 KB
November 06 2023 09:15:52
0 / 0
0644
timb_dma.h
1.742 KB
November 06 2023 09:15:52
0 / 0
0644
timb_gpio.h
1.277 KB
November 06 2023 09:15:52
0 / 0
0644
time-armada-370-xp.h
0.382 KB
November 06 2023 09:15:52
0 / 0
0644
time.h
6.872 KB
November 06 2023 09:15:52
0 / 0
0644
time64.h
4.856 KB
November 06 2023 09:15:52
0 / 0
0644
timecounter.h
4.613 KB
November 06 2023 09:15:52
0 / 0
0644
timekeeper_internal.h
4.741 KB
November 06 2023 09:15:52
0 / 0
0644
timekeeping.h
5.124 KB
November 06 2023 09:15:52
0 / 0
0644
timer.h
8.471 KB
November 06 2023 09:15:52
0 / 0
0644
timerfd.h
0.976 KB
November 06 2023 09:15:52
0 / 0
0644
timeriomem-rng.h
0.398 KB
November 06 2023 09:15:52
0 / 0
0644
timerqueue.h
1.075 KB
November 06 2023 09:15:52
0 / 0
0644
timex.h
6.344 KB
November 06 2023 09:15:52
0 / 0
0644
tnum.h
2.857 KB
November 06 2023 09:15:52
0 / 0
0644
topology.h
5.559 KB
November 06 2023 09:15:52
0 / 0
0644
toshiba.h
0.883 KB
November 06 2023 09:15:52
0 / 0
0644
tpm.h
3.171 KB
November 06 2023 09:15:52
0 / 0
0644
tpm_command.h
0.789 KB
November 06 2023 09:15:52
0 / 0
0644
tpm_eventlog.h
2.111 KB
November 06 2023 09:15:52
0 / 0
0644
trace.h
0.903 KB
November 06 2023 09:15:52
0 / 0
0644
trace_clock.h
0.613 KB
November 06 2023 09:15:52
0 / 0
0644
trace_seq.h
3.164 KB
November 06 2023 09:15:52
0 / 0
0644
tracehook.h
7.28 KB
November 06 2023 09:15:52
0 / 0
0644
tracepoint.h
12.933 KB
November 06 2023 09:15:52
0 / 0
0644
transport_class.h
2.505 KB
November 06 2023 09:15:52
0 / 0
0644
tsacct_kern.h
1.163 KB
November 06 2023 09:15:52
0 / 0
0644
tty.h
23.262 KB
November 06 2023 09:15:52
0 / 0
0644
tty_driver.h
15.094 KB
November 06 2023 09:15:52
0 / 0
0644
tty_flip.h
1.205 KB
November 06 2023 09:15:52
0 / 0
0644
tty_ldisc.h
7.908 KB
November 06 2023 09:15:52
0 / 0
0644
typecheck.h
0.571 KB
November 06 2023 09:15:52
0 / 0
0644
types.h
4.836 KB
November 06 2023 09:15:52
0 / 0
0644
u64_stats_sync.h
4.803 KB
November 06 2023 09:15:52
0 / 0
0644
uaccess.h
4.221 KB
November 06 2023 09:15:52
0 / 0
0644
ucb1400.h
4.265 KB
November 06 2023 09:15:52
0 / 0
0644
ucs2_string.h
0.608 KB
November 06 2023 09:15:52
0 / 0
0644
udp.h
3.504 KB
November 06 2023 09:15:52
0 / 0
0644
uidgid.h
4.182 KB
November 06 2023 09:15:52
0 / 0
0644
uinput.h
2.084 KB
November 06 2023 09:15:52
0 / 0
0644
uio.h
1.145 KB
November 06 2023 09:15:52
0 / 0
0644
uio_driver.h
3.936 KB
November 06 2023 09:15:52
0 / 0
0644
uprobes.h
5.971 KB
November 06 2023 09:15:52
0 / 0
0644
usb.h
76.122 KB
November 06 2023 09:15:52
0 / 0
0644
usb_usual.h
3.417 KB
November 06 2023 09:15:52
0 / 0
0644
usbdevice_fs.h
2.183 KB
November 06 2023 09:15:52
0 / 0
0644
user-return-notifier.h
1.139 KB
November 06 2023 09:15:52
0 / 0
0644
user.h
0.021 KB
November 06 2023 09:15:52
0 / 0
0644
user_namespace.h
3.928 KB
November 06 2023 09:15:52
0 / 0
0644
userfaultfd_k.h
3.6 KB
November 06 2023 09:15:52
0 / 0
0644
uts.h
0.341 KB
November 06 2023 09:15:52
0 / 0
0644
utsname.h
1.652 KB
November 06 2023 09:15:52
0 / 0
0644
uuid.h
2.998 KB
November 06 2023 09:15:52
0 / 0
0644
uwb.h
25.222 KB
November 06 2023 09:15:52
0 / 0
0644
verify_pefile.h
0.609 KB
November 06 2023 09:15:52
0 / 0
0644
vermagic.h
0.796 KB
November 06 2023 09:15:52
0 / 0
0644
vexpress.h
3.856 KB
November 06 2023 09:15:52
0 / 0
0644
vfio.h
5.582 KB
November 06 2023 09:15:52
0 / 0
0644
vfs.h
0.075 KB
November 06 2023 09:15:52
0 / 0
0644
vga_switcheroo.h
8.703 KB
November 06 2023 09:15:52
0 / 0
0644
vgaarb.h
9.052 KB
November 06 2023 09:15:52
0 / 0
0644
via-core.h
7.268 KB
November 06 2023 09:15:52
0 / 0
0644
via-gpio.h
0.326 KB
November 06 2023 09:15:52
0 / 0
0644
via.h
0.872 KB
November 06 2023 09:15:52
0 / 0
0644
via_i2c.h
1.48 KB
November 06 2023 09:15:52
0 / 0
0644
video_output.h
1.891 KB
November 06 2023 09:15:52
0 / 0
0644
videodev2.h
2.678 KB
November 06 2023 09:15:52
0 / 0
0644
virtio.h
5.959 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_byteorder.h
1.418 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_caif.h
0.48 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_config.h
12.748 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_console.h
1.928 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_mmio.h
4.479 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_ring.h
2.685 KB
November 06 2023 09:15:52
0 / 0
0644
virtio_vsock.h
4.904 KB
November 06 2023 09:15:52
0 / 0
0644
vlynq.h
3.876 KB
November 06 2023 09:15:52
0 / 0
0644
vm_event_item.h
2.195 KB
November 06 2023 09:15:52
0 / 0
0644
vm_sockets.h
0.687 KB
November 06 2023 09:15:52
0 / 0
0644
vmalloc.h
6.413 KB
November 06 2023 09:15:52
0 / 0
0644
vme.h
4.879 KB
November 06 2023 09:15:52
0 / 0
0644
vmpressure.h
1.648 KB
November 06 2023 09:15:52
0 / 0
0644
vmstat.h
7.231 KB
November 06 2023 09:15:52
0 / 0
0644
vmw_vmci_api.h
3.148 KB
November 06 2023 09:15:52
0 / 0
0644
vmw_vmci_defs.h
28.036 KB
November 06 2023 09:15:52
0 / 0
0644
vringh.h
7.764 KB
November 06 2023 09:15:52
0 / 0
0644
vt.h
0.559 KB
November 06 2023 09:15:52
0 / 0
0644
vt_buffer.h
1.251 KB
November 06 2023 09:15:52
0 / 0
0644
vt_kern.h
6.328 KB
November 06 2023 09:15:52
0 / 0
0644
vtime.h
3.658 KB
November 06 2023 09:15:52
0 / 0
0644
w1-gpio.h
0.682 KB
November 06 2023 09:15:52
0 / 0
0644
wait.h
41.651 KB
November 06 2023 09:15:52
0 / 0
0644
wanrouter.h
0.167 KB
November 06 2023 09:15:52
0 / 0
0644
watchdog.h
7.494 KB
November 06 2023 09:15:52
0 / 0
0644
wireless.h
1.362 KB
November 06 2023 09:15:52
0 / 0
0644
wl12xx.h
2.26 KB
November 06 2023 09:15:52
0 / 0
0644
wm97xx.h
10.567 KB
November 06 2023 09:15:52
0 / 0
0644
wmi.h
1.942 KB
November 06 2023 09:15:52
0 / 0
0644
workqueue.h
21.5 KB
November 06 2023 09:15:52
0 / 0
0644
writeback.h
5.92 KB
November 06 2023 09:15:52
0 / 0
0644
ww_mutex.h
12.801 KB
November 06 2023 09:15:52
0 / 0
0644
xattr.h
3.147 KB
November 06 2023 09:15:52
0 / 0
0644
xilinxfb.h
0.923 KB
November 06 2023 09:15:52
0 / 0
0644
xz.h
11.163 KB
November 06 2023 09:15:52
0 / 0
0644
yam.h
2.812 KB
November 06 2023 09:15:52
0 / 0
0644
z2_battery.h
0.272 KB
November 06 2023 09:15:52
0 / 0
0644
zbud.h
0.679 KB
November 06 2023 09:15:52
0 / 0
0644
zconf.h
1.729 KB
November 06 2023 09:15:52
0 / 0
0644
zlib.h
33.599 KB
November 06 2023 09:15:52
0 / 0
0644
zorro.h
6.508 KB
November 06 2023 09:15:52
0 / 0
0644
zorro_ids.h
29.199 KB
November 06 2023 09:15:52
0 / 0
0644
zpool.h
2.902 KB
November 06 2023 09:15:52
0 / 0
0644
zsmalloc.h
1.418 KB
November 06 2023 09:15:52
0 / 0
0644
zutil.h
2.718 KB
November 06 2023 09:15:52
0 / 0
0644