cregit-Linux how code gets into the kernel

Release 4.13 include/linux/errseq.h

Directory: include/linux
#ifndef _LINUX_ERRSEQ_H

#define _LINUX_ERRSEQ_H

/* See lib/errseq.c for more info */


typedef u32	errseq_t;

errseq_t __errseq_set(errseq_t *eseq, int err);

static inline void errseq_set(errseq_t *eseq, int err) { /* Optimize for the common case of no error */ if (unlikely(err)) __errseq_set(eseq, err); }

Contributors

PersonTokensPropCommitsCommitProp
Jeff Layton29100.00%1100.00%
Total29100.00%1100.00%

errseq_t errseq_sample(errseq_t *eseq); int errseq_check(errseq_t *eseq, errseq_t since); int errseq_check_and_advance(errseq_t *eseq, errseq_t *since); #endif

Overall Contributors

PersonTokensPropCommitsCommitProp
Jeff Layton84100.00%1100.00%
Total84100.00%1100.00%
Directory: include/linux
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.