cregit-Linux how code gets into the kernel

Release 4.10 tools/arch/x86/include/asm/atomic.h

#ifndef _TOOLS_LINUX_ASM_X86_ATOMIC_H

#define _TOOLS_LINUX_ASM_X86_ATOMIC_H

#include <linux/compiler.h>
#include <linux/types.h>
#include "rmwcc.h"


#define LOCK_PREFIX "\n\tlock; "

/*
 * Atomic operations that C can't guarantee us.  Useful for
 * resource counting etc..
 */


#define ATOMIC_INIT(i)	{ (i) }

/**
 * atomic_read - read atomic variable
 * @v: pointer of type atomic_t
 *
 * Atomically reads the value of @v.
 */

static inline int atomic_read(const atomic_t *v) { return ACCESS_ONCE((v)->counter); }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo22100.00%1100.00%
Total22100.00%1100.00%

/** * atomic_set - set atomic variable * @v: pointer of type atomic_t * @i: required value * * Atomically sets the value of @v to @i. */
static inline void atomic_set(atomic_t *v, int i) { v->counter = i; }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo20100.00%1100.00%
Total20100.00%1100.00%

/** * atomic_inc - increment atomic variable * @v: pointer of type atomic_t * * Atomically increments @v by 1. */
static inline void atomic_inc(atomic_t *v) { asm volatile(LOCK_PREFIX "incl %0" : "+m" (v->counter)); }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo14100.00%1100.00%
Total14100.00%1100.00%

/** * atomic_dec_and_test - decrement and test * @v: pointer of type atomic_t * * Atomically decrements @v by 1 and * returns true if the result is 0, or false for all other * cases. */
static inline int atomic_dec_and_test(atomic_t *v) { GEN_UNARY_RMWcc(LOCK_PREFIX "decl", v->counter, "%0", "e"); }

Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo25100.00%1100.00%
Total25100.00%1100.00%

#endif /* _TOOLS_LINUX_ASM_X86_ATOMIC_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
arnaldo carvalho de meloarnaldo carvalho de melo115100.00%1100.00%
Total115100.00%1100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.